@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
	--color-primary: #0f5b46;
	--color-primary-dark: #0d4f3c;
	--color-primary-light: #e5efea;
	--color-accent: #c5a880;
	--color-accent-hover: #b3966e;
	--color-white: #ffffff;
	--color-text: #4a5450;
	--color-text-dark: #1a2320;
	--color-bg-light: #faf6f0;
	--color-bg-alt: #f3ece2;
	--color-bg-green: #0f5b46;
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Outfit', sans-serif;
	--container-max: 1280px;
	--radius: 16px;
	--radius-lg: 24px;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--shadow-sm: 0 4px 20px rgba(15, 91, 70, 0.06);
	--shadow-md: 0 20px 50px rgba(15, 91, 70, 0.1);
	--shadow-lg: 0 30px 80px rgba(10, 63, 49, 0.15);
	--font-size-body: 1rem;
	--font-size-body-lg: 1.0625rem;
	--font-size-small: 0.9375rem;
	--font-size-label: 0.8125rem;
	--font-size-eyebrow: 0.75rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-bg-light);
	-webkit-font-smoothing: antialiased;
}

body.home-page-active {
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	color: var(--color-text-dark);
	line-height: 1.15;
	margin: 0 0 1rem;
	font-weight: 500;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

p {
	margin: 0 0 1rem;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s var(--ease-out);
}

.container {
	width: min(100% - 2.5rem, var(--container-max));
	margin-inline: auto;
}

.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
	position: relative;
}

.section--alt {
	background: var(--color-bg-alt);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--font-size-eyebrow);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 1rem;
}

.eyebrow--light {
	color: var(--color-accent);
}

.section-head {
	max-width: 640px;
	margin-bottom: 3rem;
}

.section-head--light h2,
.section-head--light p {
	color: var(--color-white);
}

.section-head p {
	color: var(--color-text);
	font-size: var(--font-size-body-lg);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.95rem 1.85rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: var(--font-size-small);
	letter-spacing: 0.03em;
	border: none;
	cursor: pointer;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
}

.btn--primary {
	background: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 8px 24px rgba(15, 91, 70, 0.35);
}

.btn--primary:hover {
	background: var(--color-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(15, 91, 70, 0.4);
	color: var(--color-white);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.22);
	color: var(--color-white);
	transform: translateY(-2px);
}

.btn--light {
	background: var(--color-white);
	color: var(--color-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
	white-space: nowrap;
}

.btn--light:hover {
	transform: translateY(-2px);
	color: var(--color-primary);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.btn--glow {
	position: relative;
	overflow: hidden;
}

.btn--full {
	width: 100%;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	font-size: var(--font-size-small);
	color: var(--color-primary);
	margin-top: auto;
	transition: gap 0.3s var(--ease-out);
}

.link-arrow:hover {
	gap: 0.65rem;
	color: var(--color-accent);
}

/* Inner page heroes — shared typography (About Us reference) */
.about-hero,
.why-dubai-hero,
.contact-hero,
.blog-hero,
.blog-single-hero {
	min-height: 78vh;
	padding: 9rem 0 5rem;
}

.about-hero__content,
.why-dubai-hero__content,
.contact-hero__content,
.blog-hero__content,
.blog-single-hero__content {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.about-hero__content::before,
.why-dubai-hero__content::before,
.contact-hero__content::before,
.blog-hero__content::before,
.blog-single-hero__content::before {
	content: '';
	position: absolute;
	inset: -2.5rem -3rem -1.85rem;
	z-index: -1;
	background: radial-gradient(ellipse at left center, rgba(4, 31, 24, 0.5) 0%, rgba(4, 31, 24, 0.26) 48%, transparent 76%);
	filter: blur(10px);
	pointer-events: none;
}

.about-hero .about-eyebrow,
.about-hero .page-eyebrow,
.why-dubai-hero .page-eyebrow,
.contact-hero .page-eyebrow,
.blog-hero .page-eyebrow,
.blog-single-hero .page-eyebrow,
.blog-single-hero__back {
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.46);
}

.about-hero h1,
.why-dubai-hero h1,
.contact-hero h1,
.blog-hero h1,
.blog-single-hero h1 {
	max-width: 820px;
	font-size: clamp(2.65rem, 5.6vw, 4.65rem);
	line-height: 1.04;
	font-weight: 400;
	color: var(--color-white);
	text-transform: uppercase;
	text-shadow: 0 8px 34px rgba(0, 0, 0, 0.58), 0 1px 1px rgba(6, 38, 30, 0.46);
	margin-bottom: 1rem;
}

.about-hero p,
.why-dubai-hero p,
.contact-hero p,
.blog-hero p,
.blog-single-hero__excerpt {
	max-width: 610px;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 2rem;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.blog-single-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
	transition: color 0.25s;
}

.blog-single-hero__back:hover {
	color: var(--color-white);
}

/* Compact inner heroes */
.why-dubai-hero--compact {
	min-height: clamp(380px, 58vh, 520px);
	padding: 8.25rem 0 clamp(5.5rem, 10vh, 7.5rem);
	align-items: flex-end;
}

.why-dubai-hero--compact h1 {
	margin-bottom: clamp(2.75rem, 5.5vh, 4.25rem);
	max-width: 18ch;
}

.blog-single-hero--compact {
	min-height: clamp(380px, 58vh, 520px);
	padding: 8.25rem 0 clamp(5.5rem, 10vh, 7.5rem);
	align-items: flex-end;
	overflow: visible;
}

.blog-single-hero--compact .blog-single-hero__content {
	max-width: 920px;
}

.blog-single-hero--compact h1 {
	max-width: 16em;
	margin-bottom: clamp(2.75rem, 5.5vh, 4.25rem);
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.14;
	text-transform: none;
	letter-spacing: -0.02em;
}

.blog-single-hero--compact .blog-single-hero__back {
	margin-bottom: 1.25rem;
}

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, padding 0.4s;
}

.site-header--overlay:not(.is-scrolled) {
	background: linear-gradient(180deg, rgba(7, 41, 32, 0.42) 0%, rgba(7, 41, 32, 0.18) 58%, transparent 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
}

.site-header--overlay:not(.is-scrolled) .primary-menu a {
	color: rgba(255, 255, 255, 0.98);
	font-weight: 600;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.site-header--overlay:not(.is-scrolled) .primary-menu .current-menu-item>a,
.site-header--overlay:not(.is-scrolled) .primary-menu .current_page_item>a,
.site-header--overlay:not(.is-scrolled) .primary-menu a[aria-current="page"] {
	color: var(--color-accent);
}

.site-header--overlay:not(.is-scrolled) .primary-menu .current-menu-item>a::after,
.site-header--overlay:not(.is-scrolled) .primary-menu .current_page_item>a::after,
.site-header--overlay:not(.is-scrolled) .primary-menu a[aria-current="page"]::after {
	width: 100%;
	background: var(--color-accent);
}

.site-header--overlay:not(.is-scrolled) .nav-toggle span {
	background: #fff;
}

.site-header.is-scrolled,
.site-header:not(.site-header--overlay) {
	background: rgba(250, 246, 240, 0.85);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 1.5rem;
}

.site-logo img {
	height: 52px;
	width: auto;
	transition: transform 0.3s var(--ease-out);
}

.site-logo:hover img {
	transform: scale(1.03);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	font-weight: 500;
	font-size: var(--font-size-small);
	letter-spacing: 0.02em;
	color: var(--color-text-dark);
	position: relative;
}

.primary-menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.3s var(--ease-out);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item>a::after,
.primary-menu .current_page_item>a::after,
.primary-menu a[aria-current="page"]::after {
	width: 100%;
}

.primary-menu .current-menu-item>a,
.primary-menu .current_page_item>a,
.primary-menu a[aria-current="page"] {
	color: var(--color-primary);
	font-weight: 700;
}

.header-cta {
	padding: 0.65rem 1.25rem !important;
	font-size: 13px !important;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	margin: 6px 0;
	background: var(--color-primary);
	transition: transform 0.3s, opacity 0.3s;
}

/* Footer */
.site-footer {
	position: relative;
	background: #06553d;
	color: rgba(255, 255, 255, 0.75);
	padding: 2.5rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.footer-widget p {
	font-size: 18px;
}

.footer-widget h3 {
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	position: relative;
	display: inline-block;
	padding-bottom: 0.45rem;
}

.footer-widget h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 38px;
	height: 1px;
	background: var(--color-accent);
	box-shadow: 0 0 10px rgba(197, 168, 128, 0.42);
}

.footer-logo {
	height: 44px;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.6rem;
	font-size: 16px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
	color: var(--color-accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.5rem;
	text-align: center;
	font-size: 13px;
}

.footer-bottom p {
	margin-bottom: 0.35rem;
}

.footer-bottom p:last-child {
	margin-bottom: 0;
}

.footer-credit {
	color: rgba(255, 255, 255, 0.62);
}

.footer-credit a {
	color: var(--color-accent);
	font-weight: 600;
}

.footer-credit a:hover {
	color: var(--color-white);
}

.whatsapp-float {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: transform 0.35s var(--ease-spring);
}

.whatsapp-float:hover {
	color: #fff;
	transform: scale(1.1);
}

@media (max-width: 992px) {
	.site-header__inner {
		min-height: 78px;
	}

	.site-logo img {
		height: 46px;
	}

	.site-nav {
		gap: 1.25rem;
	}

	.primary-menu {
		gap: 1.1rem;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.5rem;
	}
}

@media (max-width: 768px) {
	.container {
		width: min(100% - 2.25rem, var(--container-max));
	}

	.about-hero,
	.why-dubai-hero,
	.contact-hero,
	.blog-hero,
	.blog-single-hero {
		min-height: auto;
		padding: 6.8rem 0 3.5rem;
	}

	.about-hero h1,
	.why-dubai-hero h1,
	.contact-hero h1,
	.blog-hero h1,
	.blog-single-hero h1 {
		font-size: clamp(2.2rem, 11vw, 3.25rem);
	}

	.about-hero p,
	.why-dubai-hero p,
	.contact-hero p,
	.blog-hero p,
	.blog-single-hero__excerpt {
		font-size: 0.98rem;
	}

	.blog-single-hero--compact,
	.why-dubai-hero--compact {
		padding: 6.5rem 0 2.25rem;
	}

	.blog-single-hero--compact {
		min-height: clamp(360px, 56vh, 480px);
		padding: 6.5rem 0 clamp(4.5rem, 14vh, 6rem);
	}

	.blog-single-hero--compact h1 {
		font-size: clamp(1.75rem, 7.5vw, 2.35rem);
		max-width: none;
		margin-bottom: 2.25rem;
	}

	.why-dubai-hero--compact {
		padding-bottom: clamp(4.5rem, 14vh, 6rem);
		align-items: flex-end;
	}

	.why-dubai-hero--compact h1 {
		margin-bottom: 2.25rem;
	}

	.nav-toggle {
		display: block;
	}

	.site-header__inner {
		min-height: 76px;
	}

	.site-logo img {
		height: 42px;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(250, 246, 240, 0.98);
		backdrop-filter: blur(20px);
		padding: 1.35rem 1.5rem 1.5rem;
		flex-direction: column;
		align-items: stretch;
		transform: translateY(-14px) scale(0.98);
		transform-origin: top center;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: transform 0.34s var(--ease-out), opacity 0.28s var(--ease-out), visibility 0.28s;
		box-shadow: var(--shadow-md);
		border-bottom: 1px solid rgba(197, 168, 128, 0.2);
	}

	.site-nav.is-open {
		transform: translateY(0) scale(1);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.site-header.is-menu-open,
	.site-header:has(.site-nav.is-open) {
		background: rgba(250, 246, 240, 0.98);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid rgba(197, 168, 128, 0.2);
	}

	.site-header.is-menu-open .nav-toggle span,
	.site-header:has(.site-nav.is-open) .nav-toggle span {
		background: var(--color-primary);
	}

	.primary-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		width: 100%;
	}

	.primary-menu a {
		color: var(--color-text-dark) !important;
		text-shadow: none !important;
		font-weight: 600;
	}

	.primary-menu .current-menu-item>a,
	.primary-menu .current_page_item>a,
	.primary-menu a[aria-current="page"] {
		color: var(--color-primary) !important;
		font-weight: 700;
	}

	.header-cta {
		width: 100%;
	}

	.site-footer {
		padding: 2rem 0 1.25rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.8rem;
		margin-bottom: 2rem;
	}

	.footer-logo {
		height: 40px;
	}

	.footer-bottom {
		text-align: left;
	}

	.whatsapp-float {
		right: 1rem;
		bottom: 1rem;
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 768px) {
	:root {
		--font-size-body-lg: 1rem;
		--font-size-small: 0.9375rem;
	}

	body {
		font-size: 16px;
	}

	.footer-links li {
		font-size: 15px;
		line-height: 1.65;
	}

	.footer-bottom {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (max-width: 520px) {
	.container {
		width: min(100% - 2rem, var(--container-max));
	}

	.btn {
		width: 100%;
		padding: 0.85rem 1.25rem;
		font-size: var(--font-size-small);
	}

	.site-logo img {
		height: 38px;
	}

	.site-nav {
		padding: 1.25rem;
	}

	.footer-widget h3 {
		margin-bottom: 1rem;
	}

	.footer-links li {
		font-size: 15px;
		line-height: 1.65;
	}

	.footer-bottom {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}