:root {
    --forest: #121210;
    /* Ebony/Charcoal for dark blocks */
    --forest-mid: #1A1A18;
    --gold: #B89047;
    /* Brushed luxury warm bronze gold */
    --gold-light: #C8A86B;
    --ivory: #FAF9F5;
    /* Warm alabaster off-white */
    --ivory-soft: #F4F3EF;
    /* Soft warm gray/stone */
    --charcoal: #1C1C1A;
    /* Text primary */
    --stone: #5A5A55;
    /* Text secondary */
    --white: #FFFFFF;
    --overlay: rgba(18, 18, 16, 0.7);
    --border-light: rgba(20, 20, 18, 0.08);
    --shadow-premium: 0 20px 50px rgba(20, 20, 18, 0.04);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    width: 100%;
    letter-spacing: -0.01em;
}

/* ── TYPOGRAPHY ── */
.serif {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.gold {
    color: var(--gold);
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: inline-block;
}

/* ── NAV ── */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(18, 18, 16, 0.98);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.15;
    transition: color 0.3s;
}

.nav-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

#mainNav.scrolled .nav-logo {
    color: var(--white);
}

.nav-logo span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 4px;
    transition: color 0.3s;
}

#mainNav.scrolled .nav-logo span {
    color: var(--gold-light);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none;
}

#mainNav.scrolled .nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
}

#mainNav.scrolled .nav-link-custom:hover {
    color: var(--gold) !important;
}

.btn-nav {
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px !important;
    border: 1px solid var(--gold);
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background: transparent;
    color: var(--gold) !important;
}

#mainNav.scrolled .btn-nav {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white) !important;
}

#mainNav.scrolled .btn-nav:hover {
    background: transparent;
    color: var(--gold) !important;
}

/* ── HAMBURGER MENU ── */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

#mainNav.scrolled .hamburger-menu span {
    background-color: var(--white);
}

.hamburger-menu.active span {
    background-color: var(--white) !important;
}

/* Hamburger Active State (X Morph) */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY & DRAWER ── */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* Dimmed backdrop overlay */
    z-index: 1050;
    display: flex;
    justify-content: flex-end; /* Align drawer to the right */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    width: 65%; /* Half screen size width */
    max-width: 320px;
    height: 100%;
    background: #121210; /* Dark forest background */
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateX(100%); /* Hidden offscreen to the right */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay.active .mobile-nav-drawer {
    transform: translateX(0); /* Slide-in drawer */
}

/* Close Button inside Drawer */
.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    width: 38px;
    height: 28px; /* Rectangle style close wrapper */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.mobile-nav-close:hover {
    background: rgba(184, 144, 71, 0.1);
    color: var(--gold-light);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 80px;
    flex-grow: 1;
}

.mobile-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--white);
}

.btn-nav-mobile {
    background: transparent;
    color: var(--white) !important;
    border-radius: 30px; /* Pill-shaped button border */
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.btn-nav-mobile:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(184, 144, 71, 0.05);
}

body.nav-open {
    overflow: hidden;
}

/* ── HERO ── */
#hero {
    /* height: 100vh; */
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 150px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 16, 0.85) 0%, rgba(18, 18, 16, 0.5) 60%, rgba(18, 18, 16, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 144, 71, 0.12);
    border: 1px solid rgba(184, 144, 71, 0.3);
    border-radius: 4px;
    padding: 8px 18px;
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    backdrop-filter: blur(8px);
}

.hero-badge i {
    font-size: 0.6rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 550px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--white);
    backdrop-filter: blur(6px);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 144, 71, 0.25);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* hero bottom stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(18, 18, 16, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.hero-stat {
    text-align: center;
    padding: 0 24px;
}

.hero-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 4px 0;
}

/* ── EOI ALERT STRIP ── */
.eoi-strip {
    background: linear-gradient(90deg, #1a1a18 0%, #242422 50%, #1a1a18 100%);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 16px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eoi-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(184, 144, 71, 0.12), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.eoi-strip p {
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.08em;
    margin: 0;
    position: relative;
    z-index: 2;
}

.eoi-strip strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ── SECTION LAYOUT ── */
.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 70px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--stone);
    line-height: 1.8;
    max-width: 580px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    border-radius: 1px;
}

/* ── ABOUT ── */
#about {
    background: var(--ivory);
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 16, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.about-img-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 500;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.78rem;
    color: var(--charcoal);
    font-weight: 500;
    margin: 6px 6px 6px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.tag-pill:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── CONTACT FORM (about section right) ── */
.hero-form-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    padding: 44px 40px;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gold);
}

.hero-form-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-form-card p {
    font-size: 0.88rem;
    color: var(--stone);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-control-custom {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--ivory-soft);
    margin-bottom: 16px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 144, 71, 0.1);
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A5A55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-disclaimer {
    font-size: 0.72rem;
    color: var(--stone);
    margin-top: 16px;
    line-height: 1.6;
}

/* ── APARTMENTS ── */
#apartments {
    background: var(--ivory-soft);
}

.unit-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(20, 20, 18, 0.08);
    border-color: var(--gold);
}

.unit-card-img-wrap {
    overflow: hidden;
    position: relative;
    height: 240px;
}

.unit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.unit-card:hover .unit-card-img {
    transform: scale(1.05);
}

.unit-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-bhk {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 4px 0;
}

.unit-size {
    font-size: 0.8rem;
    color: var(--stone);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.unit-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-top: 12px;
}

.unit-divider {
    border-top: 1px solid var(--border-light);
    margin: 20px 0;
}

.unit-features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: auto;
}

.unit-feat {
    font-size: 0.78rem;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.unit-feat i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* Dark Card Version for Featured Apartments */
.unit-card.dark-version {
    background: var(--forest) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.unit-card.dark-version .unit-bhk {
    color: var(--white) !important;
}

.unit-card.dark-version .unit-size {
    color: rgba(255, 255, 255, 0.5) !important;
}

.unit-card.dark-version .unit-price {
    color: var(--gold-light) !important;
}

.unit-card.dark-version .unit-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.unit-card.dark-version .unit-feat {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ── VILLAS ── */
#villas {
    background: var(--forest);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

#villas::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 144, 71, 0.08) 0%, transparent 70%);
}

.villa-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.villa-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.villa-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 144, 71, 0.35);
    transform: translateY(-5px);
}

.villa-card:hover::after {
    transform: scaleX(1);
}

.villa-bhk {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.villa-bhk span {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-top: 4px;
}

.villa-stat {
    margin-top: 24px;
}

.villa-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.villa-stat-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 4px;
}

.villa-stat-units {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.villa-price-banner {
    background: linear-gradient(135deg, rgba(184, 144, 71, 0.12), rgba(184, 144, 71, 0.04));
    border: 1px solid rgba(184, 144, 71, 0.25);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.villa-price-banner .range {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 8px 0;
}

.villa-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 6px;
}

/* ── AMENITIES SECTION ── */
#amenities {
    background: var(--white);
}

.amenities-tabs-container {
    /* border-bottom: 1.5px solid #E6E4DD; */
    margin-bottom: 50px;
}

.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.amenities-tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.amenity-tab-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    background: transparent;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.amenity-tab-btn:hover {
    color: var(--charcoal);
}

.amenity-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.amenity-tab-btn.active {
    color: var(--charcoal);
}

.amenity-tab-btn.active::after {
    transform: scaleX(1);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #E6E4DD;
    /* Grid line color */
    border: 1px solid #E6E4DD;
    border-radius: 4px;
    overflow: hidden;
}

.amenity-card {
    background-color: #FCFAF6;
    padding: 48px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.amenity-card:hover,
.amenity-card.active {
    background-color: var(--forest);
    /* Black background */
}

.amenity-card:hover .amenity-icon-wrap,
.amenity-card.active .amenity-icon-wrap {
    color: var(--gold);
    /* Gold icon */
    transform: translateY(-3px);
}

.amenity-card:hover .amenity-cardName,
.amenity-card.active .amenity-cardName {
    color: var(--gold);
    /* Gold text */
}

.amenity-card-empty {
    background-color: #FCFAF6;
    cursor: default;
    pointer-events: none;
}

.amenity-icon-wrap {
    font-size: 2.2rem;
    color: #2D332A;
    /* Dark forest/charcoal */
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-cardName {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2D332A;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.amenity-pane {
    display: none;
    opacity: 0;
}

.amenity-pane.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-tabs {
        gap: 30px;
        justify-content: flex-start;
    }

    .amenity-card-empty {
        display: none;
    }
}

@media (max-width: 576px) {
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-card {
        padding: 24px 12px;
    }

    .amenity-icon-wrap {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .amenity-cardName {
        font-size: 0.82rem;
    }

    .nav-logo {
        font-size: 1.1rem;
        gap: 8px;
    }

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

    .nav-logo span {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-form-card {
        padding: 30px 20px;
    }

    .visit-form-card {
        padding: 30px 20px !important;
    }

    .eoi-strip p {
        font-size: 0.78rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    .float-contact {
        right: 16px;
        bottom: 16px;
    }
}

/* ── HIGHLIGHTS ── */
#highlights {
    background: var(--ivory);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20, 20, 18, 0.08);
}

.highlight-item:hover .hi-title {
    color: var(--white);
}

.highlight-item:hover .hi-sub {
    color: rgba(255, 255, 255, 0.65);
}

.highlight-item:hover .hi-icon {
    background: rgba(184, 144, 71, 0.15);
    color: var(--gold);
}

.hi-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(184, 144, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.hi-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.hi-sub {
    font-size: 0.8rem;
    color: var(--stone);
    line-height: 1.6;
    transition: color 0.3s;
}

/* ── CONNECTIVITY ── */
#connectivity {
    background-image: url('../images/Embassy Springs.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#connectivity::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 16, 0.9);
}

.conn-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
}

.conn-item:hover {
    border-color: rgba(184, 144, 71, 0.4);
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(6px);
}

.conn-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(184, 144, 71, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.conn-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.conn-val {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 2px;
}

/* ── SITE VISIT CTA ── */
#sitevisit {
    background: var(--ivory);
    position: relative;
}

.visit-form-card {
    background: var(--white);
    border-radius: 8px;
    padding: 48px 44px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--charcoal);
}

.visit-form-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 700;
}

.visit-form-card p {
    font-size: 0.9rem;
    color: var(--stone);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-forest {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
}

.btn-forest:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(184, 144, 71, 0.25);
}

/* ── FOOTER ── */
footer {
    background: #000000;
    color: #b5b5b5;
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: center;
    padding: 48px 0;
    border-top: 1px solid rgba(184, 144, 71, 0.2);
}

.footer-domain-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-domain-link:hover {
    color: var(--gold);
}

.footer-disclaimer-text {
    color: #a0a0a0;
    max-width: 1000px;
    margin: 0 auto 24px;
    text-align: justify;
    text-align-last: center;
}

.footer-partner-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.footer-thankyou-text {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-thankyou-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-thankyou-text a:hover {
    color: #ffffff;
}

/* ── STICKY SIDE BUTTON ── */
.sticky-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-side.visible {
    transform: translateY(-50%) translateX(0);
}

.sticky-btn {
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.sticky-btn:first-child {
    background: var(--gold);
    color: var(--white);
}

.sticky-btn:first-child:hover {
    background: var(--gold-light);
}

.sticky-btn:hover {
    background: var(--forest-mid);
}

/* ── FLOATING CONTACT ── */
.float-contact {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s;
}

.float-contact.visible {
    opacity: 1;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-wa {
    background: #25D366;
    color: var(--white);
}

.float-phone {
    background: var(--gold);
    color: var(--white);
}

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #121210;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    display: flex;
    align-items: stretch;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-smooth);
}

.btn-wa {
    background: #25D366;
}

.btn-wa:hover {
    background: #20ba5a;
    color: var(--white);
}

.btn-call {
    background: var(--gold);
}

.btn-call:hover {
    background: var(--gold-light);
    color: var(--white);
}

/* ── MODALS ── */
.modal-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.modal-header {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: 24px 32px;
    border-bottom: 2px solid var(--gold);
}

.modal-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 32px;
    background: var(--white);
}

.btn-close {
    filter: invert(1);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}

/* ── GALLERY ── */
#gallery {
    background: var(--forest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 6px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item:first-child {
    grid-row: 1 / 3;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: auto;
    }

    .hero-stats {
        display: none !important;
    }

  

    .float-contact {
        display: none !important;
    }

    body {
        padding-bottom: 60px !important;
    }
}
