﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body,
p,
span,
a,
li,
div,
button {
    font-family: 'Cormorant Garamond', serif;
}

body {
    color: #1C1C1C;
    background: #fff;
    overflow-x: hidden;
    text-align: left;
}

html {
    scroll-padding-top: 150px;
}
/* ═══════════════════════════════════════
   TOPBAR — DAMAC Style (28px)
═══════════════════════════════════════ */
.topbar {
    position: relative;
    z-index: 1002;
    background: #1a1a1a;
    height: 28px;
    display: flex;
    align-items: center;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 0 4rem;
    height: 100%;
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 0 0.6rem;
    height: 100%;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    cursor: default;
}
.topbar-item:last-child {
    border-right: none;
    padding-right: 0;
}
.topbar-link {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}
.topbar-link:hover {
    color: #C2A14D;
}
.topbar-icon-svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
    flex-shrink: 0;
    opacity: 0.6;
}
.topbar-caret {
    font-size: 0.4rem;
    margin-left: 2px;
    opacity: 0.5;
    display: inline-block;
    vertical-align: middle;
}
.topbar-cta {
    background: #C2A14D;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    cursor: pointer;
    letter-spacing: 0.4px;
    font-size: 0.58rem;
    font-family: 'Poppins', sans-serif;
    border-right: none;
    transition: background 0.2s;
    text-transform: uppercase;
    line-height: 1.3;
}
.topbar-cta:hover {
    background: #d4b05a;
    color: #1a1a1a;
}
.topbar-lang,
.topbar-prefs {
    cursor: pointer;
    font-weight: 400;
}
.topbar-lang strong,
.topbar-prefs strong {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.topbar-lang:hover,
.topbar-prefs:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════
   MAIN NAV — DAMAC Style (60px)
═══════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 4rem;
    width: min(1400px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1001;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

nav.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
}
.logo img {
    height: 48px;
    width: auto;
}

/* Nav Links - Centered */
.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #C2A14D;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    font-family: 'Poppins', sans-serif;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: #d4b05a;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

nav.scrolled .nav-links a {
    color: #0F3D2E;
}
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
    color: #C2A14D;
}
nav.scrolled .nav-links a::after {
    background: #C2A14D;
}

/* Mega Menu Trigger */
.mega-trigger {
    color: #C2A14D;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.2rem 0;
    font-family: 'Poppins', sans-serif;
    transition: color 0.25s ease;
}
.mega-trigger:hover {
    color: #d4b05a;
}
.mega-caret {
    font-size: 0.5rem;
    transition: transform 0.2s;
}
.mega-wrap.open .mega-caret {
    transform: rotate(180deg);
}
nav.scrolled .mega-trigger {
    color: #0F3D2E;
}
nav.scrolled .mega-trigger:hover {
    color: #C2A14D;
}

/* Nav Dropdown (Media submenu) */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 170px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15,61,46,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1002;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: flex;
}
.nav-submenu a {
    color: #0F3D2E !important;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover {
    background: rgba(15,61,46,0.06);
}

/* Nav Actions (right side: search + email) */
.nav-actions {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-search-icon,
.nav-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: #C2A14D;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-search-icon:hover,
.nav-contact-icon:hover {
    color: #d4b05a;
}
nav.scrolled .nav-search-icon,
nav.scrolled .nav-contact-icon {
    color: #0F3D2E;
}
nav.scrolled .nav-search-icon:hover,
nav.scrolled .nav-contact-icon:hover {
    color: #C2A14D;
}

/* ═══ SEARCH OVERLAY ═══ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.94);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.open {
    opacity: 1;
    visibility: visible;
}
.search-overlay-header {
    padding: 2rem 4rem 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.4);
}
.search-input-wrap svg {
    flex-shrink: 0;
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0;
}
.search-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.search-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.search-close-btn:hover {
    color: #fff;
}

/* Search Filter Tabs (All / Projects / Locations) */
.search-filter-tabs {
    display: flex;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0.8rem auto 0;
}
.search-filter-tab {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    transition: all 0.2s;
}
.search-filter-tab:hover {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}
.search-filter-tab.active {
    color: #C2A14D;
    border-color: #C2A14D;
}

.search-overlay-body {
    padding: 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    overflow-y: auto;
    flex: 1;
}

/* Section Titles */
.search-section-title {
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

/* Trending Tags */
.search-trending {
    margin-bottom: 2rem;
}
.search-trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.search-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    transition: all 0.2s;
}
.search-tag:hover {
    color: #C2A14D;
    border-color: #C2A14D;
}

/* Search Suggestions & Results */
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
}
.search-suggestion-item:hover {
    color: #C2A14D;
}
.search-item-icon {
    font-size: 1rem;
    flex-shrink: 0;
}
.search-suggestion-item strong {
    color: #C2A14D;
    font-weight: 600;
}

/* No Results */
.search-no-results {
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 3rem 0;
}
.search-no-results strong {
    color: rgba(255,255,255,0.8);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.05) contrast(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 61, 46, 0.4);
    z-index: 1;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #C2A14D;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.hero .hero-scroll-tag {
    transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, backdrop-filter 0.28s ease;
    will-change: opacity, transform, background-color, border-color, color;
}

.hero.hero-tags-hidden .hero-scroll-tag {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.hero.hero-tags-white .hero-scroll-tag {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(15, 61, 46, 0.2) !important;
    color: #0F3D2E !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Intro Text Section */
.intro-text-section {
    background: #fff;
    padding: 6rem 4rem;
    text-align: left;
}

.intro-text {
    color: #0F3D2E;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 1450px;
    margin: 0 auto;
    font-weight: 400;
    text-align: left;
}

/* Page Header */
.page-header {
    background: #fff;
    padding: 10rem 4rem 4rem;
    text-align: center;
    color: #1C1C1C;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0F3D2E;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-top-cards {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.25rem;
}

.about-card {
    width: calc(50% - 0.75rem);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.35rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 61, 46, 0.14);
}

.about-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #0F3D2E;
    margin-bottom: 0.65rem;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #0F3D2E;
    margin: 0.9rem 0 0.45rem;
}

.about-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #1C1C1C;
    margin-bottom: 0.7rem;
}

.about-leadership-section {
    background: #fff;
    padding: 1rem 4rem 4rem;
}

.about-leadership-stack {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.about-leader-card {
    display: grid;
    grid-template-columns: 1.55fr 0.7fr;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.2rem;
}

.about-leader-text h3 {
    font-family: 'Cinzel', serif;
    color: #0F3D2E;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.about-leader-text h3 span {
    font-size: 0.9rem;
    color: #4A5A55;
    font-family: 'Poppins', sans-serif;
    margin-left: 0.35rem;
}

.about-leader-text h2 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.about-leader-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1C1C1C;
    margin-bottom: 0.75rem;
}

.about-leader-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.about-leader-image img {
    width: 100%;
    max-width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
}

.leader-image-ceo {
    object-position: center top;
}

.leader-image-md {
    object-position: center top;
}

/* Interior Gallery */
.interior-gallery {
    background: #fff;
    padding: 3rem 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 1rem;
    animation: loopScroll 16s linear infinite;
}

@keyframes loopScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    min-width: 320px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 2px solid #0F3D2E;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.live-slideshow .gallery-item {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 312px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    transition: transform 0.5s;
}

.live-slideshow:hover {
    animation-play-state: paused;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-corner-name {
    position: static;
    z-index: 1;
    width: 100%;
    background: #0F3D2E;
    color: #fff;
    padding: 0.7rem 0.8rem;
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
    padding: 2rem 1.5rem 1rem;
    color: #1C1C1C;
}

.gallery-caption h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F3D2E;
}

/* Static Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid .gallery-item {
    min-width: auto;
    animation: none;
}

/* Projects Section */
.projects-section {
    background: #fff;
    padding: 8rem 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    color: #0F3D2E;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.project-card {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: center;
    margin-bottom: 2.2rem;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.15rem;
}

.project-card[id] {
    scroll-margin-top: 130px;
}

.project-details {
    padding: 0.65rem;
    text-align: left;
}

.project-details h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.project-meta {
    font-size: 0.95rem;
    color: #6A6A6A;
    margin: -1rem 0 1rem;
    font-weight: 500;
}

.project-copy {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.9rem;
    color: #1C1C1C;
}

.project-points {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
    color: #1C1C1C;
}

.project-points li {
    margin-bottom: 0.55rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.project-specs {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0F3D2E;
}

.spec-label {
    font-weight: 700;
    color: #0F3D2E;
}

.spec-value {
    text-align: right;
    color: #1C1C1C;
}

.project-images {
    display: grid;
    gap: 1rem;
    line-height: 0;
    overflow: hidden;
    align-items: center;
}

.project-images img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: none;
}

.project-images img.project-image-fixed {
    object-fit: contain;
    object-position: center;
    background: #fff;
}

/* Home Showcase Slider */
.home-showcase-section {
    background: #fff;
    padding: 0 4rem 6rem;
}

.home-showcase-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.home-showcase-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #eef1f0;
    box-shadow: 0 12px 34px rgba(15, 61, 46, 0.16);
}

.home-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.home-showcase-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Feature Section */
.feature-section {
    background: #fff;
    color: #1C1C1C;
    padding: 8rem 4rem;
}

.feature-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.feature-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #1C1C1C;
    margin-bottom: 2rem;
    font-weight: 600;
}

.feature-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
    text-align: left;
}

.feature-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid #0F3D2E;
}

/* Content Section */
.content-section {
    background: #fff;
    padding: 8rem 4rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #1C1C1C;
}

.content-wrapper h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0F3D2E;
}

.content-wrapper h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #0F3D2E;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 8rem 4rem;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border: 2px solid #0F3D2E;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0F3D2E;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
}

.team-member p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member .role {
    color: #0F3D2E;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    padding: 8rem 4rem;
}

.testimonial-card {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid #0F3D2E;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1C1C1C;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0F3D2E;
}

.author-info h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #0F3D2E;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Homepage About Showcase */
.about-showcase-section {
    padding: 6rem 2rem;
    background: #052a27;
    background-image: radial-gradient(circle at 20% 15%, rgba(194, 161, 77, 0.18), transparent 50%), radial-gradient(circle at 80% 0%, rgba(8, 53, 49, 0.35), transparent 45%);
}

.about-showcase-wrap {
    max-width: 1400px;
    margin: 0 auto;
    border: 2px solid rgba(194, 161, 77, 0.45);
}

.about-showcase-card {
    padding: 3.2rem 3rem;
    color: #f0f2ef;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.about-showcase-card h2 {
    color: #C2A14D;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    margin-bottom: 1.7rem;
    letter-spacing: 1px;
}

.about-showcase-card p {
    line-height: 1.7;
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    text-align: left;
}

.leadership-card {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 2.2rem 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.leadership-card:last-child {
    border-bottom: none;
}

.leader-copy h3 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
}

.leader-copy h3 span {
    color: #e7e7e7;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    font-weight: 400;
}

.leader-copy p {
    color: #f2f2f2;
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: left;
}

.leadership-card img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Download Section */
.download-section {
    background: #fff;
    padding: 8rem 4rem;
}

.download-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.download-item {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #0F3D2E;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.15);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #0F3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-btn {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 61, 46, 0.3);
}

/* Blog Posts */
.blog-section {
    background: #fff;
    color: #1C1C1C;
    padding: 8rem 4rem;
}

.blog-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid #0F3D2E;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
}

.blog-badge {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.blog-date {
    color: #A8894A;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1C1C1C;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 8rem 4rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #0F3D2E;
    padding: 2rem 0;
    text-align: left;
}

.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.faq-answer {
    color: #1C1C1C;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Careers Section */
.careers-section {
    background: #fff;
    padding: 8rem 4rem;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}

.careers-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1C1C1C;
    margin-bottom: 2rem;
}

.careers-content .email {
    font-size: 1.1rem;
    color: #0F3D2E;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 4rem;
    background: url('https://res.cloudinary.com/dqv6swyul/image/upload/c_fill,w_3840,g_center/f_auto/q_auto:good/v1/Booking3_uieo5a_1_hkkeu9?_a=BAVAZGID0') center/cover;
    color: #fff;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #C2A14D;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    padding: 3rem;
    border-radius: 0;
    margin-top: 3rem;
    border: 2px solid #0F3D2E;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #0F3D2E;
    background: #fff;
    color: #1C1C1C;
    border-radius: 0;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #0F3D2E;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 8rem 4rem;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    padding: 2rem;
    text-align: left;
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0F3D2E;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #0F3D2E;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
}

.contact-item p {
    color: #1C1C1C;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-item a {
    color: #0F3D2E;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #C2A14D;
}

.map-container {
    width: 100%;
    height: 600px;
    border: 3px solid #0F3D2E;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    border: 2px solid #0F3D2E;
    color: #0F3D2E;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #8B6F47;
    color: #fff;
    border-color: #8B6F47;
}

/* ═══ TOPBAR DROPDOWNS — DAMAC-style near topbar ═══ */
.topbar-dropdown-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.topbar-dropdown-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.topbar-dropdown {
    position: fixed;
    z-index: 10000;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    min-width: 320px;
    max-width: 380px;
    border: 1px solid rgba(15,61,46,0.12);
}
.topbar-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.topbar-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.topbar-dropdown-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #0F3D2E;
    margin: 0;
}
.topbar-dropdown-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.topbar-dropdown-close:hover {
    color: #333;
}
.topbar-dropdown-body {
    padding: 1.2rem;
}
.topbar-dropdown-body p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Call Dropdown */
.call-number-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0F3D2E;
    color: #fff;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1rem;
}
.call-modal-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.call-number-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
.call-dial-btn {
    display: block;
    background: #C2A14D;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0.7rem;
    transition: background 0.2s;
}
.call-dial-btn:hover {
    background: #d4b05a;
}
.call-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bbb;
    font-size: 0.75rem;
    margin: 0.7rem 0;
}
.call-divider::before,
.call-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}
.call-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.call-whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Touch Dropdown */
.touch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}
.touch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0.85rem 0.5rem;
    border: 1px solid #eee;
    text-decoration: none;
    color: #1C1C1C;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}
.touch-card:hover {
    border-color: #C2A14D;
    background: #fff;
}
.touch-card svg {
    color: #0F3D2E;
}
.touch-card-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #0F3D2E;
}
.touch-card-sub {
    font-size: 0.7rem;
    color: #999;
}

/* Schedule Dropdown */
.schedule-form {
    text-align: left;
}
.schedule-form .schedule-row {
    display: flex;
    gap: 6px;
    margin-bottom: 0.7rem;
}
.schedule-title-option {
    flex: 1;
    text-align: center;
    padding: 0.45rem;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
    color: #888;
    background: #f9f9f9;
}
.schedule-title-option.active,
.schedule-title-option:hover {
    border-color: #C2A14D;
    background: #C2A14D;
    color: #fff;
}
.schedule-input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    color: #1C1C1C;
    background: #fafafa;
    transition: border-color 0.2s;
}
.schedule-input:focus {
    outline: none;
    border-color: #C2A14D;
    background: #fff;
}
.schedule-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.8rem;
    cursor: pointer;
}
.schedule-checkbox input {
    width: 14px;
    height: 14px;
    accent-color: #C2A14D;
}
.schedule-submit {
    width: 100%;
    background: #0F3D2E;
    color: #fff;
    border: none;
    padding: 0.7rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}
.schedule-submit:hover {
    background: #1a5a45;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #0F3D2E;
}

.popup-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #0F3D2E;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #1C1C1C;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.popup-btn {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.popup-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
}

.nav-popup-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.popup-btn-secondary {
    background: #fff;
    color: #0F3D2E;
    border: 1px solid #0F3D2E;
    cursor: pointer;
    font-family: inherit;
}

.popup-btn-secondary:hover {
    background: #0F3D2E;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #0E2A21;
    color: #E8E8E8;
    border-top: 1px solid rgba(194, 161, 77, 0.3);
    margin-top: 0;
}

.site-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4.5rem 4rem 2rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.8rem;
}

.footer-block h3,
.footer-block h4 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    margin-bottom: 1.1rem;
}

.footer-block h3 {
    font-size: 1.35rem;
}

.footer-block h4 {
    font-size: 1.05rem;
}

.footer-block p {
    color: #D5D5D5;
    line-height: 1.75;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    text-align: left;
}

.footer-block a {
    display: block;
    color: #D5D5D5;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    text-align: left;
}

.footer-block a:hover {
    color: #C2A14D;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    border: 1px solid rgba(194, 161, 77, 0.45);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.8rem;
}

.footer-subscribe input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #EDEDED;
    padding: 0.8rem 1rem;
}

.footer-subscribe input::placeholder {
    color: rgba(237, 237, 237, 0.65);
}

.footer-subscribe button {
    border: none;
    background: #C2A14D;
    color: #0F3D2E;
    font-weight: 700;
    padding: 0.8rem 1rem;
    cursor: pointer;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-bottom p {
    margin: 0;
    color: #CFCFCF;
    font-size: 0.9rem;
}

.site-footer-meta {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.site-footer-meta a {
    color: #D5D5D5;
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer-meta a:hover {
    color: #C2A14D;
}

.site-footer-meta .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(194, 161, 77, 0.55);
    border-radius: 50%;
    color: #D5D5D5;
    transition: all 0.25s ease;
}

.site-footer-meta .social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer-meta .social-link:hover {
    background: #C2A14D;
    color: #0F3D2E;
    border-color: #C2A14D;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    background: #C2A14D;
    color: #0F3D2E;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.5px;
    border-radius: 999px;
    padding: 0.82rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: contactPulse 2.4s ease-in-out infinite;
}

.floating-contact:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

@keyframes contactPulse {
    0%,
    100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(194, 161, 77, 0.32);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(194, 161, 77, 0);
    }
}

/* Section and card motion enhancements */
.page-header,
.intro-text-section,
.interior-gallery,
.projects-section,
.testimonials-section,
.content-section,
.feature-section,
.team-section,
.blog-section,
.download-section,
.site-footer {
    animation: fadeUpIn 0.85s ease both;
}

.projects-section,
.team-section,
.blog-section,
.download-section {
    animation-delay: 0.08s;
}

.project-card,
.testimonial-card,
.team-member,
.blog-card,
.download-item,
.gallery-item {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover,
.testimonial-card:hover,
.team-member:hover,
.blog-card:hover,
.download-item:hover,
.gallery-item:hover {
    transform: translateY(-4px);
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-contact,
    .page-header,
    .intro-text-section,
    .interior-gallery,
    .projects-section,
    .testimonials-section,
    .content-section,
    .feature-section,
    .team-section,
    .blog-section,
    .download-section,
    .site-footer {
        animation: none;
    }
}

/* Responsive Topbar */
@media (max-width: 768px) {
    .topbar { height: 26px; }
    .topbar-inner { padding: 0 0.8rem; }
    .topbar-item { font-size: 0.55rem; padding: 0 0.4rem; }
    .topbar-icon-svg { width: 10px; height: 10px; }
    .topbar-cta { font-size: 0.5rem; padding: 0.1rem 0.5rem; }
    .topbar-lang,
    .topbar-prefs { display: none; }
}
@media (max-width: 480px) {
    .topbar { height: 24px; }
    .topbar-inner { padding: 0 0.4rem; }
    .topbar-item { font-size: 0.48rem; padding: 0 0.3rem; }
    .topbar-icon-svg { width: 8px; height: 8px; }
    .topbar-cta { font-size: 0.45rem; padding: 0.1rem 0.35rem; letter-spacing: 0.2px; }
    .topbar-right .topbar-link:nth-child(3) { display: none; }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #C2A14D;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links.mobile-open {
    display: flex !important;
}

@media (max-width: 768px) {
    nav {
        padding: 0.6rem 1.5rem;
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        min-height: 54px;
        width: 100%;
    }

    nav.scrolled {
        padding: 0.6rem 1.5rem;
        height: auto;
        min-height: 54px;
    }

    .logo img {
        height: 40px;
    }
    .logo {
        position: static;
        transform: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
        color: #C2A14D;
    }
    nav.scrolled .mobile-menu-btn {
        color: #0F3D2E;
    }

    .nav-actions {
        position: static;
        transform: none;
        order: 1;
        margin-left: auto;
    }
    .nav-search-icon,
    .nav-contact-icon {
        color: #C2A14D;
    }
    nav.scrolled .nav-search-icon,
    nav.scrolled .nav-contact-icon {
        color: #0F3D2E;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        transform: none;
        gap: 0;
        margin-top: 0;
        background: rgba(15,61,46,0.98);
        padding: 0.5rem 0;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links a,
    .mega-trigger {
        color: rgba(255,255,255,0.85);
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid rgba(194,161,77,0.12);
        display: block;
        font-size: 0.8rem;
    }
    .mega-trigger {
        width: 100%;
    }
    .nav-links a::after { display: none; }
    .mega-trigger:hover { color: #C2A14D; }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-submenu {
        position: static;
        display: flex;
        min-width: 100%;
        background: rgba(255,255,255,0.05);
        border-top: 1px solid rgba(194,161,77,0.1);
        box-shadow: none;
    }
    .nav-submenu a {
        color: rgba(255,255,255,0.7) !important;
        padding: 0.75rem 1.5rem 0.75rem 2rem;
        font-size: 0.75rem;
        border-bottom: 1px solid rgba(194,161,77,0.08);
    }
    .nav-submenu a:hover {
        background: rgba(194,161,77,0.08);
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .floating-contact {
        right: 1rem;
        bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.75rem 1.05rem;
    }

    .nav-popup-actions {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-top-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-card {
        width: 100%;
    }

    .about-leadership-section {
        padding: 1rem 2rem 3rem;
    }

    .about-leader-card {
        grid-template-columns: 1fr;
    }

    .about-leader-image img {
        height: 320px;
    }

    .gallery-item {
        min-width: 260px;
        height: auto;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .projects-section,
    .feature-section,
    .testimonials-section,
    .blog-section,
    .faq-section,
    .cta-section,
    .careers-section,
    .contact-info-section,
    .content-section,
    .team-section {
        padding: 4rem 2rem;
    }

    .home-showcase-section {
        padding: 0 2rem 4rem;
    }

    .home-showcase-slider {
        min-height: 240px;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }

    .project-card,
    .feature-content,
    .testimonial-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-showcase-card {
        padding: 2.2rem 1.4rem;
    }

    .about-showcase-card h2 {
        font-size: 1.65rem;
    }

    .about-showcase-card p {
        font-size: 1rem;
    }

    .leadership-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.4rem;
    }

    .leader-copy h3 {
        font-size: 1.55rem;
    }

    .leader-copy h3 span {
        display: block;
        margin-bottom: 0.35rem;
    }

    .site-footer-inner {
        padding: 3rem 2rem 1.5rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .project-details h2,
    .feature-text h2 {
        font-size: 1.8rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .project-images img,
    .feature-image img,
    .testimonial-image img {
        height: 400px;
    }

    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .spec-value {
        text-align: left;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-item {
        min-width: 220px;
        height: auto;
    }

    .gallery-item img {
        height: 210px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        margin-bottom: 1rem;
    }

    .home-showcase-slider {
        min-height: 210px;
        border-radius: 12px;
    }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div,
button,
input,
textarea,
select,
label,
small,
strong {
    font-family: 'Cormorant Garamond', serif !important;
}

/* ── PROPERTIES MEGA DROPDOWN ── */
.nav-properties-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-properties-label {
    color: #C2A14D;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s, transform 0.25s ease;
    position: relative;
    user-select: none;
}
.nav-properties-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: calc(100% - 14px);
    height: 2px;
    background: #C2A14D;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-properties-label:hover::after,
.nav-properties-dropdown.open .nav-properties-label::after {
    transform: scaleX(1);
}
.nav-properties-label .caret {
    font-size: 0.55rem;
    transition: transform 0.25s ease;
    margin-left: 2px;
    display: inline-block;
}
.nav-properties-dropdown.open .caret {
    transform: rotate(180deg);
}

nav.scrolled .nav-properties-label {
    color: #0F3D2E;
}
nav.scrolled .nav-properties-label::after {
    background: #0F3D2E;
}

.nav-properties-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 260px;
    background: #0F3D2E;
    border: 1px solid rgba(194, 161, 77, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    transform-origin: top center;
}
.nav-properties-dropdown.open .nav-properties-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-panel-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: rgba(194, 161, 77, 0.65);
    padding: 1rem 1.2rem 0.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(194, 161, 77, 0.2);
    margin-bottom: 0.3rem;
}

.nav-panel-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    border-left: 3px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.nav-panel-item:hover {
    background: rgba(194, 161, 77, 0.12);
    border-left-color: #C2A14D;
    color: #C2A14D;
}
.nav-panel-item-badge {
    font-size: 0.55rem;
    padding: 1px 6px;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    border-radius: 0;
    flex-shrink: 0;
}
.badge-delivered { background: #C2A14D; color: #fff; }
.badge-ongoing   { background: #0a5c3e; color: #C2A14D; border: 1px solid #C2A14D; }
.badge-upcoming  { background: #7a1515; color: #fff; }

.nav-panel-divider {
    height: 1px;
    background: rgba(194, 161, 77, 0.18);
    margin: 0.3rem 0;
}

.nav-panel-viewall {
    display: block;
    text-align: center;
    padding: 0.75rem 1.2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: #C2A14D;
    text-decoration: none;
    border-top: 1px solid rgba(194, 161, 77, 0.2);
    transition: background 0.18s;
    margin-top: 0.3rem;
}
.nav-panel-viewall:hover { background: rgba(194, 161, 77, 0.12); }

/* scrolled state overrides */
nav.scrolled .nav-properties-panel {
    background: #fff;
    border-color: rgba(15, 61, 46, 0.18);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
nav.scrolled .nav-panel-heading { color: rgba(15,61,46,0.5); border-color: rgba(15,61,46,0.15); }
nav.scrolled .nav-panel-item { color: #222; }
nav.scrolled .nav-panel-item:hover { background: rgba(15,61,46,0.06); border-left-color: #0F3D2E; color: #0F3D2E; }
nav.scrolled .nav-panel-divider { background: rgba(15,61,46,0.12); }
nav.scrolled .nav-panel-viewall { color: #0F3D2E; border-top-color: rgba(15,61,46,0.15); }
nav.scrolled .nav-panel-viewall:hover { background: rgba(15,61,46,0.06); }
nav.scrolled .badge-ongoing { background: #e8f5ef; color: #0F3D2E; border-color: #0F3D2E; }

/* mobile */
@media (max-width: 900px) {
    .nav-properties-panel {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(194,161,77,0.2);
        display: none;
        width: 100%;
        background: rgba(10,42,30,0.98);
    }
    .nav-properties-dropdown.open .nav-properties-panel { display: block; }
    .nav-properties-label { padding: 1rem; width: 100%; border-bottom: 1px solid rgba(194,161,77,0.2); }
    .nav-properties-label::after { display: none; }
    .nav-properties-dropdown { width: 100%; flex-direction: column; align-items: stretch; }
}


/* ═══════════════════════════════════════
   PROPERTIES MEGA DROPDOWN — DAMAC Style
═══════════════════════════════════════ */
.mega-wrap {
    position: static;
    display: flex;
    align-items: center;
}
.mega-trigger {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #C2A14D;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s, transform 0.25s ease;
    position: relative;
}
.mega-trigger::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: #C2A14D;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}
.mega-trigger:hover::after,
.mega-wrap.open .mega-trigger::after { transform: scaleX(1); }
.mega-caret {
    font-size: 0.5rem;
    display: inline-block;
    transition: transform 0.25s;
    color: #C2A14D;
}
.mega-wrap.open .mega-caret { transform: rotate(180deg); }

/* the panel itself */
.mega-panel {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    border-top: 3px solid #C2A14D;
    padding: 0;
}
.mega-wrap.open .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* close button top-right */
.mega-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none; border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.18s;
}
.mega-close:hover { color: #0F3D2E; }

/* inner grid of columns */
.mega-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1.1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
}
.mega-col {
    padding: 0 2rem 1rem 0;
    border-right: 1px solid #f0ece3;
}
.mega-col:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.mega-col:first-child { padding-left: 0; }

.mega-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f0ece3;
}
.mega-link {
    display: block;
    font-size: 0.9rem;
    color: #222;
    text-decoration: none;
    padding: 0.45rem 0;
    transition: color 0.18s, padding-left 0.18s;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
    border-bottom: 1px solid transparent;
}
.mega-link:hover {
    color: #0F3D2E;
    padding-left: 6px;
    border-bottom-color: #C2A14D;
}
.mega-link.view-all {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #C2A14D;
    margin-top: 0.6rem;
    padding: 0.3rem 0;
    border-bottom: none;
}
.mega-link.view-all:hover { color: #0F3D2E; padding-left: 0; }

/* offer cards in last column */
.mega-offer {
    display: block;
    background: #f8f6f0;
    border-left: 3px solid #C2A14D;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
    font-size: 0.82rem;
    color: #333;
    transition: background 0.18s;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.4;
}
.mega-offer:hover { background: #eee9df; color: #0F3D2E; }

/* status dots */
.mega-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}
.dot-delivered { background: #C2A14D; }
.dot-ongoing   { background: #0F3D2E; }
.dot-upcoming  { background: #8B1A1A; }

/* overlay backdrop */
.mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1400;
    display: none;
}
.mega-backdrop.visible { display: block; }

/* scrolled nav — adjust trigger color */
/* match other nav links exactly */
.mega-trigger { color: #C2A14D !important; }
nav.scrolled .mega-trigger { color: #0F3D2E !important; }

/* mobile */
@media (max-width: 900px) {
    .mega-panel { position: fixed; top: 0; overflow-y: auto; max-height: 100vh; }
    .mega-inner { grid-template-columns: 1fr; gap: 0; padding: 3.5rem 1.5rem 2rem; }
    .mega-col { border-right: none; border-bottom: 1px solid #f0ece3; padding: 1.2rem 0; }
    .mega-col:last-child { padding-left: 0; }
}

/* ═══════════════════════════════════════
   TOPBAR DROPDOWNS / MODALS — DAMAC Style
═══════════════════════════════════════ */
.topbar-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 11000;
    display: none;
}
.topbar-modal-overlay.visible { display: block; }

.topbar-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    background: #fff;
    z-index: 11001;
    width: min(480px, 92vw);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.topbar-modal.open {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.topbar-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem 0.8rem;
    border-bottom: 1px solid #f0ece3;
}
.topbar-modal-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
}
.topbar-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem;
    transition: color 0.18s;
}
.topbar-modal-close:hover { color: #1a1a1a; }

.topbar-modal-body {
    padding: 1.2rem 1.5rem 1.8rem;
}

/* Language options */
.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.8rem;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.15s;
    font-size: 0.92rem;
    color: #222;
    font-family: 'Cormorant Garamond', serif;
    border-bottom: 1px solid #f5f5f5;
}
.lang-option:hover { background: #f9f8f5; }
.lang-option.active { background: #f5f2ea; color: #C2A14D; font-weight: 600; }
.lang-option:last-child { border-bottom: none; }
.lang-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.lang-option.active .lang-radio { border-color: #C2A14D; }
.lang-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C2A14D;
    display: none;
}
.lang-option.active .lang-radio::after { display: block; }

/* Preferences modal */
.prefs-section {
    margin-bottom: 1.5rem;
}
.prefs-section:last-child { margin-bottom: 0; }
.prefs-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0ece3;
}
.prefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.prefs-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.7rem;
    cursor: pointer;
    border: 1px solid #e8e4dc;
    transition: all 0.15s;
    font-size: 0.85rem;
    color: #222;
    font-family: 'Cormorant Garamond', serif;
}
.prefs-option:hover { border-color: #C2A14D; background: #faf8f4; }
.prefs-option.active { border-color: #C2A14D; background: #f5f2ea; }
.prefs-radio {
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.prefs-option.active .prefs-radio { border-color: #C2A14D; }
.prefs-radio::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C2A14D;
    display: none;
}
.prefs-option.active .prefs-radio::after { display: block; }
.prefs-apply {
    display: block;
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.8rem;
    background: #C2A14D;
    color: #fff;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}
.prefs-apply:hover { background: #b08e3c; }

/* Topbar item as clickable trigger */
.topbar-trigger {
    cursor: pointer;
}

@media (max-width: 768px) {
    .topbar-modal {
        width: 94vw;
        max-height: 90vh;
    }
    .topbar-modal-body { padding: 1rem 1.2rem 1.5rem; }
    .prefs-grid { grid-template-columns: 1fr; }
    .search-overlay-header { padding: 1.2rem 1.5rem 0.6rem; }
    .search-overlay-body { padding: 1.5rem; }
    .search-input { font-size: 1.1rem; }
    .search-close-btn { font-size: 2rem; }
    .search-filter-tabs { margin-top: 0.6rem; }
    .search-filter-tab { font-size: 0.7rem; padding: 0.2rem 0.6rem; }
}
