@charset "utf-8";

:root {
	--bg: #f3efe6;
	--surface: rgba(255, 255, 255, 0.9);
	--surface-strong: #ffffff;
	--text: #17324a;
	--text-soft: #587086;
	--heading: #0d2238;
	--navy: #0f2742;
	--navy-deep: #081827;
	--teal: #1e7d82;
	--gold: #c98b2b;
	--sand: #f8ead0;
	--line: rgba(15, 39, 66, 0.12);
	--shadow: 0 24px 60px rgba(7, 20, 33, 0.14);
	--shadow-soft: 0 18px 36px rgba(7, 20, 33, 0.1);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--container: 1140px;
	--nav-height: 92px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
	margin: 0;
	color: var(--text);
	font-family: "Trebuchet MS", "Lucida Grande", "Segoe UI", sans-serif;
	line-height: 1.65;
	background:
		radial-gradient(circle at top left, rgba(201, 139, 43, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(30, 125, 130, 0.16), transparent 28%),
		linear-gradient(180deg, #f8f4eb 0%, #f3efe6 48%, #f8f3e8 100%);
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

button,
summary {
	font: inherit;
}

.container {
	width: min(var(--container), calc(100% - 2rem));
	margin-inline: auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 2000;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	text-decoration: none;
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-nav {
	border-bottom: 1px solid rgba(255, 255, 255, 0.38);
	background: rgba(248, 244, 235, 0.86);
	backdrop-filter: blur(18px);
	box-shadow: 0 6px 28px rgba(7, 20, 33, 0.06);
}

.nav-shell {
	min-height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.brand {
	display: inline-flex;
	align-items: center;	gap: 0.85rem;
	text-decoration: none;
	font-weight: 700;
	color: var(--heading);
	letter-spacing: 0.02em;
}

.brand img {
	width: 170px;
	height: auto;
}

.brand span {
	position: relative;
	font-size: 1rem;
	white-space: nowrap;
}

.nav-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-left: auto;
}

.language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.language-switcher::after {
	content: "▾";
	position: absolute;
	right: 0.95rem;
	color: var(--navy);
	pointer-events: none;
	font-size: 0.8rem;
}

.language-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--navy);
	font-weight: 700;
	padding: 0.72rem 2.2rem 0.72rem 1rem;
	box-shadow: var(--shadow-soft);
	cursor: pointer;
	min-height: 48px;
}

.language-select:focus {
	outline: 2px solid rgba(30, 125, 130, 0.45);
	outline-offset: 2px;
}

.nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	text-decoration: none;
	color: var(--text);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link[aria-current="true"] {
	background: rgba(15, 39, 66, 0.08);
	color: var(--navy);
}

.menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.68);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
}

.menu-toggle span {
	width: 20px;
	height: 2px;
	border-radius: 99px;
	background: var(--navy);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

main {
	display: block;
}

.section-anchor {
	scroll-margin-top: calc(var(--nav-height) + 18px);
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100vh - var(--nav-height));
	display: grid;
	align-items: center;
	padding: 5rem 0 4.5rem;
	color: #fff;
	background:
		linear-gradient(135deg, rgba(9, 24, 39, 0.82) 0%, rgba(15, 39, 66, 0.78) 46%, rgba(12, 81, 86, 0.65) 100%),
		url("../images/about-image-01.jpg") center/cover no-repeat;
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
		radial-gradient(circle at 78% 18%, rgba(255, 214, 164, 0.12), transparent 24%),
		radial-gradient(circle at 72% 82%, rgba(30, 125, 130, 0.18), transparent 28%);
}

.hero-shell {
	display: grid;
	align-items: center;
}

.hero-copy {
	max-width: 760px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(7, 18, 33, 0.52), rgba(7, 18, 33, 0.36));
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 30px 70px rgba(5, 12, 18, 0.28);
	backdrop-filter: blur(18px);
}

.hero h1 {
	margin: 0;
	font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size: clamp(2.9rem, 7vw, 5.7rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.hero p {
	max-width: 36rem;
	margin: 1.35rem 0 0;
	font-size: clamp(1.06rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.92);
}

.hero-cta,
.tour-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin-top: 1.8rem;
	padding: 0.98rem 1.4rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-cta {
	background: linear-gradient(135deg, #f7d29c 0%, #dca345 100%);
	color: var(--navy-deep);
	box-shadow: 0 18px 34px rgba(220, 163, 69, 0.28);
}

.hero-cta:hover,
.tour-cta:hover {
	transform: translateY(-2px);
}

.section {
	padding: clamp(4.2rem, 7vw, 6.6rem) 0;
}

.section-heading {
	text-align: center;
	margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2 {
	margin: 0;
	color: var(--heading);
	font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
	font-size: clamp(2rem, 4.1vw, 3.15rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.page-intro p {
	margin: 0;
	color: var(--text);
}

.history-card,
.visit-card,
.faq-item,
.tour-panel,
.attraction-card {
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.history-card {
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	padding: clamp(1.4rem, 3vw, 2.35rem);
	background:
		radial-gradient(circle at top right, rgba(201, 139, 43, 0.16), transparent 28%),
		radial-gradient(circle at bottom left, rgba(30, 125, 130, 0.1), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.94));
	backdrop-filter: blur(12px);
	box-shadow: 0 22px 52px rgba(7, 20, 33, 0.09);
}

.history-list {
	counter-reset: history-step;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.history-list li {
	counter-increment: history-step;
	min-height: 100%;
	position: relative;
	padding: 1.25rem 1.25rem 1.25rem 4.1rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(15, 39, 66, 0.08);
	box-shadow: 0 14px 30px rgba(7, 20, 33, 0.06);
	color: var(--text);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.history-list li::before {
	content: counter(history-step, decimal-leading-zero);
	position: absolute;
	left: 1.05rem;
	top: 1.1rem;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	box-shadow: 0 10px 18px rgba(15, 39, 66, 0.18);
}

.history-list li::after {
	content: "";
	position: absolute;
	left: 1.05rem;
	right: 1.05rem;
	bottom: 0;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(201, 139, 43, 0.75), rgba(30, 125, 130, 0.25));
	opacity: 0.55;
	transform: scaleX(0.4);
	transform-origin: left center;
}

.history-list li:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 42px rgba(7, 20, 33, 0.1);
	border-color: rgba(15, 39, 66, 0.14);
}

.history-list li:hover::after {
	opacity: 0.95;
	transform: scaleX(1);
}

.attractions-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
}

.attraction-card {
	border-radius: var(--radius-xl);
	padding: 1.4rem;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.attraction-card:hover,
.attraction-card:focus-within,
.faq-item:hover,
.faq-item:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 26px 56px rgba(7, 20, 33, 0.12);
}

.attraction-card summary {
	list-style: none;
	cursor: pointer;
}

.attraction-card summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
	display: none;
}

.card-kicker {
	display: inline-flex;
	width: 2.35rem;
	height: 2.35rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.95rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(30, 125, 130, 0.12), rgba(201, 139, 43, 0.18));
	color: var(--navy);
	font-weight: 700;
	font-size: 0.88rem;
}

.attraction-card h3 {
	margin: 0;
	color: var(--heading);
	font-size: 1.3rem;
	line-height: 1.25;
}

.attraction-card p {
	margin: 0.55rem 0 0;
	color: var(--text-soft);
}

.card-detail {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(-0.25rem);
	transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
}

.card-detail p {
	margin: 0;
	padding-top: 1rem;
	color: var(--text);
}

.attraction-card[open] .card-detail {
	max-height: 260px;
	opacity: 1;
	transform: translateY(0);
	margin-top: 0.75rem;
}

.visit-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.visit-card {
	border-radius: var(--radius-lg);
	padding: 1.35rem 1.4rem;
}

.visit-card p {
	margin: 0;
	color: var(--text);
}

.tour-panel {
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(1.6rem, 3.5vw, 2.4rem);
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, rgba(15, 39, 66, 0.97), rgba(14, 88, 92, 0.94));
	color: #fff;
}

.tour-panel > p {
	margin: 0;
	font-size: 1.08rem;
}

.tour-notes {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.25rem;
}

.tour-notes p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
}

.tour-cta {
	background: linear-gradient(135deg, #ffffff 0%, #f6d8a9 100%);
	color: var(--navy-deep);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.faq-list {
	display: grid;
	gap: 0.9rem;
	max-width: 940px;
	margin-inline: auto;
}

.faq-item {
	border-radius: 22px;
	overflow: hidden;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.35rem;
	color: var(--heading);
	cursor: pointer;
	font-weight: 700;
}

.faq-item summary::after {
	content: "+";
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(15, 39, 66, 0.08);
	color: var(--navy);
	font-size: 1.2rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: "–";
}

.faq-answer {
	padding: 0 1.35rem 1.25rem;
}

.faq-answer p {
	margin: 0;
	color: var(--text);
}

.site-footer {
	padding: 1rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
	gap: 1rem 1.25rem;
	align-items: start;
	padding: 1.1rem 0 1rem;
	border-top: 1px solid rgba(15, 39, 66, 0.08);
	border-bottom: 1px solid rgba(15, 39, 66, 0.08);
}

.footer-info {
	display: grid;
	gap: 0.7rem;
	min-width: 0;
}

.footer-info .logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	width: fit-content;
}

.footer-info .logo-img {
	display: block;
	width: 160px;
	height: auto;
}

.footer-info p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-soft);
}

.social-icons {
	display: flex;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.45rem;
	height: 2.45rem;
	border-radius: 50%;
	background: rgba(15, 39, 66, 0.08);
	color: var(--navy);
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
	transform: translateY(-2px);
	background: var(--navy);
	color: #fff;
}

.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.1rem;
}

.footer-group {
	display: grid;
	gap: 0.45rem;
}

.footer-group h4 {
	margin: 0 0 0.2rem;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--heading);
}

.footer-group a,
.footer-group p {
	margin: 0;
	text-decoration: none;
	font-size: 0.94rem;
	line-height: 1.55;
	color: var(--text-soft);
}

.footer-group a:hover {
	color: var(--navy);
}

.contact-group {
	justify-items: start;
}

.contact-group p {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.footer-bottom {
	padding-top: 0.9rem;
}

.bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	flex-wrap: wrap;
	font-size: 0.92rem;
	color: var(--text-soft);
}

.bottom-inner p {
	margin: 0;
}

.tursab-license {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(15, 39, 66, 0.06);
	font-weight: 600;
}

.whatsapp-fixed-left {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 16px 28px rgba(15, 39, 66, 0.22);
	z-index: 25;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fixed-left:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 34px rgba(15, 39, 66, 0.26);
}

.footer-panel {
	margin-top: 1.25rem;
	padding: clamp(1.15rem, 2.5vw, 1.75rem);
	border: 1px solid rgba(15, 39, 66, 0.12);
	border-radius: 28px;
	background:
		radial-gradient(circle at top left, rgba(30, 125, 130, 0.12), transparent 26%),
		radial-gradient(circle at top right, rgba(201, 139, 43, 0.16), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 239, 230, 0.94));
	box-shadow: var(--shadow);
	color: var(--text-soft);
}

.footer-brand-block {
	display: grid;
	gap: 0.6rem;
	min-width: 0;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--heading);
	font-weight: 700;
	font-size: 1rem;
}

.footer-brand img {
	width: 160px;
	height: auto;
}

.footer-description {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.footer-label {
	display: inline-flex;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(15, 39, 66, 0.08);
	color: var(--navy);
	font-weight: 700;
	font-size: 0.84rem;
}

.footer-compact {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
	gap: 1rem 1.15rem;
	align-items: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.85rem;
	justify-content: center;
	align-items: center;
	padding: 0.1rem 0;
}

.footer-links a {
	color: var(--text-soft);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: var(--navy);
}

.footer-action-block {
	display: grid;
	justify-items: end;
	gap: 0.55rem;
	text-align: right;
}

.footer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 16px 30px rgba(15, 39, 66, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 36px rgba(15, 39, 66, 0.22);
}

.footer-contactline,
.footer-meta p,
.footer-note {
	margin: 0;
	color: var(--text-soft);
}


.footer-contactline {
	font-size: 0.92rem;
	text-align: right;
}

.footer-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(15, 39, 66, 0.08);
	font-size: 0.92rem;
	flex-wrap: wrap;
}

.footer-note {
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(15, 39, 66, 0.06);
	font-weight: 600;
}

@media (max-width: 1080px) {
	.attractions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.history-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 840px) {
	:root {
		--nav-height: 78px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.nav-shell {
		position: relative;
		align-items: flex-start;
	}

	.nav-actions {
		order: 2;
		margin-left: 0;
		margin-top: 0.25rem;
	}

	.nav-links {
		position: absolute;
		top: calc(100% + 0.75rem);
		right: 0;
		left: 0;
		display: grid;
		gap: 0.25rem;
		padding: 0.75rem;
		margin: 0;
		border: 1px solid rgba(15, 39, 66, 0.12);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--shadow);
		transform-origin: top center;
		transform: scaleY(0.92);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.18s ease, transform 0.18s ease;
	}

	.nav-links.is-open {
		opacity: 1;
		transform: scaleY(1);
		pointer-events: auto;
	}

	.nav-link {
		justify-content: flex-start;
		width: 100%;
	}

	.hero {
		min-height: auto;
		padding: 4.5rem 0 4rem;
	}

	.hero-copy {
		max-width: 100%;
	}

	.visit-grid,
	.attractions-grid {
		grid-template-columns: 1fr;
	}

	.footer-compact {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-links,
	.footer-action-block {
		justify-items: start;
		justify-content: flex-start;
		text-align: left;
	}

	.footer-links-grid {
		grid-template-columns: 1fr;
	}

	.bottom-inner {
		justify-content: flex-start;
	}

	.footer-info .logo-img {
		width: 148px;
	}

	.footer-contactline,
	.footer-meta {
		text-align: left;
	}

	.whatsapp-fixed-left {
		left: 0.85rem;
		bottom: 0.85rem;
	}
}

@media (max-width: 560px) {
	.brand img {
		width: 146px;
	}

	.brand span {
		display: none;
	}

	.hero h1 {
		letter-spacing: -0.04em;
	}

	.hero-copy {
		border-radius: 28px;
	}

	.history-card,
	.tour-panel,
	.faq-item,
	.attraction-card {
		border-radius: 24px;
	}
}
