/* ==========================================================================
   CSS VARIABLE TOKENS (Unified System)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-light: #F8F5EE;
    --color-bg-deep: #f9f5ef;
    --color-bg-dark: #1B1814;
    --color-bg-darker: #0D0B08;

    /* Primary / Accent Colors */
    --color-primary: #A9822F;
    --color-primary-dark: #7C5D22;
    --color-primary-tint: #F1E6CC;
    --color-text-dark: #161310;
    --color-text-muted: #0a0a0a;
    --color-text-light: #FFFFFF;
    --color-text-light-muted: #E4DAC0;

    /* Typography */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --size-eyebrow: 0.7rem;
    --size-xs: 1.1rem;
    --size-sm: 0.9rem;
    --size-base: 1rem;
    --size-md: 1.1rem;
    --size-lg: 2rem;
    --size-xl: 2.4rem;

    /* Elevation & Shape */
    --shadow-sm: 0 1px 3px rgba(13, 11, 8, 0.08);
    --shadow-md: 0 10px 28px -10px rgba(13, 11, 8, 0.22);
    --shadow-lg: 0 30px 60px -20px rgba(13, 11, 8, 0.32);
    --radius-sm: 4px;
    --radius-md: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    
    color: var(--color-text-dark);
    line-height: 1.6;
    font-size: var(--size-base);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography Hierarchy */
h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.08;
}

h3,
h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.7rem, 1.3rem + 2vw, 2.6rem);
}

h3 {
    font-size: var(--size-sm);
}

p {
    color: var(--color-text-dark);
}

/* Global Components */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: var(--size-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-primary-dark);
    font-weight: 800;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1.5px;
    background: var(--color-primary);
    flex-shrink: 0;
}

.section-head {
    max-width: 620px;
    margin-bottom: 36px;
}

.section-head p {
    margin-top: 10px;
    color: var(--color-text-muted);
    font-size: var(--size-base);
}

.section-head h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 4px;
}

.section-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-primary);
}

.enquiry .section-head h2::after {
    background: var(--color-primary);
}

/* Buttons & Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 26px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: 0.25s var(--ease);
    border: 1px solid transparent;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    touch-action: manipulation;
    margin: auto;
    box-shadow: var(--shadow-sm);
}

.btn-fill {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.btn-fill:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-fill.on-dark {
    background: var(--color-primary);
}

.btn-fill.on-dark:hover {
    background: var(--color-text-light);
    color: var(--color-text-dark);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-primary-dark);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    font-size: 0.9rem;
    touch-action: manipulation;
    transition: 0.25s var(--ease);
}

.link-arrow:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* Utilities */
.tone-deep {
    background: var(--color-bg-deep);
}

.text-center {
    text-align: center;
}

.rail,
.sprite {
    display: none;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 10px 18px;
    z-index: 1200;
    font-size: var(--size-sm);
    font-weight: 700;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 238, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22, 19, 16, 0.07);
    transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

header.scrolled {
    background: rgba(248, 245, 238, 0.97);
    box-shadow: var(--shadow-md);
    border-color: rgba(169, 130, 47, 0.18);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    line-height: 1.15;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.logo-text em {
    font-style: normal;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--color-primary-dark);
    margin-top: 2px;
}

/* Nav links */
nav.primary-nav ul {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav.primary-nav a {
    position: relative;
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text-dark);
    padding: 6px 1px;
    transition: color 0.2s var(--ease);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

nav.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

nav.primary-nav a:hover,
nav.primary-nav a:focus-visible {
    color: var(--color-primary-dark);
}

nav.primary-nav a:hover::after,
nav.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta-mobile {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn-fill {
    background: var(--color-text-dark);
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-light);
    padding: 10px 20px;
    font-size: 0.82rem;
    width: auto;
    max-width: none;
    box-shadow: none;
}

.header-actions .btn-fill:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Hamburger */
.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(22, 19, 16, 0.16);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;

}

.menu-toggle span {
    width: 15px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

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

/* Mobile backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 8, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
    z-index: 90;
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 860px) {
    nav.primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        margin-top: 60px;
        width: min(320px, 84vw);
        background: var(--color-bg-light);
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        padding: 30px 30px;
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(13, 11, 8, 0.2);
        z-index: 95;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    nav.primary-nav.open {
        transform: translateX(0);
    }

    nav.primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav.primary-nav a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(22, 19, 16, 0.08);
        color: var(--color-text-dark);
        font-size: var(--size-base);
        white-space: normal;
    }

    nav.primary-nav a::after {
        display: none;
    }

    .nav-cta-mobile {
        display: flex;
        margin-top: 24px;
        width: 100%;
        max-width: none;
    }

    .header-actions .btn-fill {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.66rem;
    }

    .nav-wrap {
        padding: 10px 0;
    }
}

/* ==========================================================================
   SPLIT HERO SECTION
   ========================================================================== */
.hero-layout {
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 70vh;
    /* height: 70vh; */
    background-color: var(--color-bg-dark);
    overflow: hidden;
    position: relative;
    font-family: var(--font-sans);
    padding: 0;
    padding-top: 65px;
}

/* Column 1: Info Card */
.hero-info-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    color: var(--color-text-dark);
    order: 1;
}

.hero-info-card .coming-soon-ribbon {
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-text-light);
    text-align: center;
    padding: 11px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 50px;
}


.hero-info-card .card-body {
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.hero-info-card h1 {
    font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.hero-info-card .location-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-info-card .spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background-color: var(--color-bg-deep);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    text-align: left;
    padding: 16px 6px;
}

.hero-info-card .spec-grid div {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    border-left: 1px solid rgba(124, 93, 34, 0.2);
}

.hero-info-card .spec-grid div:first-child {
    border-left: none;
}

.hero-info-card .spec-grid span {
    font-size: 0.66rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-info-card .spec-grid strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.25;
}

.hero-info-card .benefit-strip {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-info-card .promo-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 6px;
}

.hero-info-card .promo-text .accent-word {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-info-card .promo-text strong {
    color: var(--color-text-dark);
    font-weight: 800;
}

.hero-info-card .price-section {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed rgba(124, 93, 34, 0.3);
}

.hero-info-card .price-section p {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.hero-info-card .price-amount {
    font-family: var(--font-display);
    font-size: var(--size-xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 18px;
}

/* Column 2: Billboard */
.hero-billboard {
    position: relative;
    order: 2;
    background-color: var(--color-bg-dark);
    background-image:
        linear-gradient(180deg, rgba(13, 11, 8, 0.25) 0%, rgba(13, 11, 8, 0.65) 100%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: cover, 26px 26px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.hero-billboard-mark {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.08);
    user-select: none;
}

.hero-billboard .billboard-text {
    position: relative;
    z-index: 2;
    background-color: rgba(13, 11, 8, 0.85);
    backdrop-filter: blur(8px);
    width: 100%;
    padding: 32px 20px;
    text-align: center;
    color: var(--color-text-light);
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.hero-billboard .billboard-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin: 0;
    color: var(--color-text-light);
}

.hero-billboard .billboard-text p {
    font-size: var(--size-base);
    color: var(--color-text-light-muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-billboard .billboard-text p svg {
    fill: var(--color-primary);
    width: 16px;
    height: 16px;
}

/* Column 3: Lead Form */
.hero-form-panel {
    background-color: var(--color-bg-deep);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-text-light);
    order: 3;
}

.hero-form-panel h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6px;
    color: black;
}

.hero-form-panel .sub-tag {
    font-size: 0.82rem;
      color: black;
    text-align: center;
    margin-bottom: 26px;
    line-height: 1.5;
}

.hero-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-panel label {
      color: black;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.hero-form-panel input,
.hero-form-panel select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.05);
      color: black;
    outline: none;
    transition: 0.2s var(--ease);
}

.hero-form-panel input::placeholder {
      color: black;
}

.hero-form-panel input:focus,
.hero-form-panel select:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(169, 130, 47, 0.25);
}

.hero-form-panel select option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.hero-form-panel .captcha-notice {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
    line-height: 1.4;
}

.hero-form-panel .btn-submit {
    background: var(--color-primary);
    border: none;
    color: var(--color-text-light);
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: 0.25s var(--ease);
}

.hero-form-panel .btn-submit:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-form-panel .help-bubble {
    background-color: var(--color-bg-deep);
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    align-self: center;
    margin-top: 22px;
    border-left: 3px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        margin-top: 0px;
        padding-top: 50px;
    }

    .hero-billboard {
        min-height: 250px;
        order: 1;
    }

    .hero-info-card {
        order: 2;
    }

    .hero-form-panel {
        order: 3;
    }
}

/* ==========================================================================
   INTERIOR LAYOUT SECTIONS
   ========================================================================== */
section {
    padding: 72px 0;
    border-bottom: 1px solid rgba(22, 19, 16, 0.06);
}

section:last-of-type {
    border-bottom: none;
}

@media (max-width: 480px) {
    section {
        padding: 48px 0;
    }
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.lede-line {
    font-family: var(--font-display);
    font-size: var(--size-md);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.overview-grid>div>p {
    margin-bottom: 14px;
    color: var(--color-text-muted);
}

.overview-grid>div>p.lede-line {
    color: var(--color-primary-dark);
}

.spec-panel {
    border-left: none;
    border-top: 2px solid var(--color-primary);
    padding-left: 0;
    padding-top: 26px;
    background: var(--color-bg-deep);
    border-radius: var(--radius-md);
    padding: 26px 24px;
}

.spec-panel h3 {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.spec-rows li {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(22, 19, 16, 0.08);
    font-size: var(--size-base);
    flex-wrap: wrap;
    transition: padding-left 0.2s var(--ease);
}

.spec-rows li:hover {
    padding-left: 4px;
}

.spec-rows li span {
    color: var(--color-text-muted);
}

.spec-rows li strong {
    font-weight: 700;
    color: var(--color-text-dark);
}

.spec-panel .btn {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1.4fr 1fr;
    }

    .spec-panel {
        border-top: none;
        border-left: 3px solid var(--color-primary);
        padding-top: 26px;
    }
}

/* Features Component */
.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.feature-row {
    display: flex;
    gap: 16px;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(22, 19, 16, 0.06);
    align-items: flex-start;
    border-radius: var(--radius-md);
    transition: background-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-row:hover {
    background: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-row img {
    width: 20px;
    height: 20px;
}

.feature-row h3 {
    font-size: var(--size-base);
    margin-bottom: 3px;
    color: var(--color-text-dark);
}

.feature-row p {
    font-size: 0.86rem;
    color: var(--color-text-muted);
}

@media (min-width: 600px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
        gap: 4px 20px;
    }
}

/* Pricing */
.pricing-table-wrapper {
    margin-top: 2.5rem;
    overflow-x: auto;
    background: var(--color-bg-light);
    border-radius: 14px;
    border: 1px solid rgba(169, 130, 47, 0.22);
    box-shadow: var(--shadow-sm);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-family: var(--font-sans);
}

.pricing-table thead {
    background: linear-gradient(90deg, var(--color-bg-dark), #2A241C);
    color: var(--color-text-light);
}

.pricing-table th {
    padding: 18px 22px;
    text-align: left;
    font-size: var(--size-sm);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.pricing-table td {
    padding: 20px 22px;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(169, 130, 47, 0.15);
    font-size: var(--size-base);
}

.pricing-table tbody tr {
    transition: 0.3s var(--ease);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--color-bg-deep);
}

.pricing-table td:first-child {
    font-family: var(--font-display);
    font-size: var(--size-md);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
    color: var(--color-text-muted);
    font-weight: 500;
}

.price-note {
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: var(--size-sm);
}

@media (max-width: 768px) {

    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
    }

    .pricing-table {
        min-width: auto;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tr {
        background: var(--color-bg-light);
        margin: 16px;
        border-radius: 12px;
        border: 1px solid rgba(169, 130, 47, .25);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .pricing-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(169, 130, 47, .15);
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--color-primary-dark);
        font-family: var(--font-sans);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

/* Amenities System */
.amenities-layout {
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border: 1px solid rgba(169, 130, 47, 0.35);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.25s var(--ease);
    background: var(--color-bg-light);
    touch-action: manipulation;
    color: var(--color-text-dark);
}

.chip img {
    width: 16px;
    height: 16px;
}

.chip:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.chip:hover img {
    filter: brightness(0) invert(1);
}

.amenities-img {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    border: 1px solid rgba(169, 130, 47, 0.25);
    background: linear-gradient(135deg, var(--color-bg-deep), var(--color-bg-light));
    background-image: repeating-linear-gradient(45deg, rgba(169, 130, 47, 0.07) 0 2px, transparent 2px 16px);
    color: var(--color-primary-dark);
}

.img-placeholder svg {
    width: 30px;
    height: 30px;
    opacity: 0.65;
}

.img-placeholder span {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (min-width: 640px) {
    .amenities-img {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .amenity-chips {
        justify-content: flex-start;
    }
}

/* Media Grid Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    grid-auto-rows: 200px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(22, 19, 16, 0.08);
    background: var(--color-bg-deep);
    border-radius: var(--radius-md);
}

.gallery-tile .img-placeholder {
    border: none;
    border-radius: 0;
    aspect-ratio: auto;
    min-height: 0;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.gallery-tile:hover img,
.gallery-tile:hover .img-placeholder {
    transform: scale(1.04);
}

.gallery-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    background: linear-gradient(0deg, rgba(13, 11, 8, 0.75), transparent);
    color: var(--color-text-light);
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 120px;
        gap: 16px;
    }

    .gallery-grid .g-1 {
        grid-column: span 4;
        grid-row: span 3;
    }

    .gallery-grid .g-2 {
        grid-column: span 2;
        grid-row: span 3;
    }

    .gallery-grid .g-3 {
        grid-column: span 6;
        grid-row: span 2;
    }
}

/* Location Matrix Component */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.location-grid>div:first-child>p {
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.loc-rows {
    margin-top: 12px;
}

.loc-rows li {
    padding: 14px 0 14px 24px;
    border-bottom: 1px solid rgba(22, 19, 16, 0.08);
    font-size: var(--size-base);
    position: relative;
    color: var(--color-text-dark);
}

.loc-rows li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.map-frame {
    border: 1px solid rgba(22, 19, 16, 0.1);
    height: 260px;
    background: var(--color-bg-deep);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.25) sepia(0.08);
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .map-frame {
        height: 340px;
    }
}

/* FAQ System */
.faq-list {
    max-width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(22, 19, 16, 0.08);
    transition: background-color 0.2s var(--ease);
    border-radius: var(--radius-sm);
}

.faq-item:first-child {
    border-top: 1px solid rgba(22, 19, 16, 0.12);
}

.faq-item:hover {
    background: rgba(169, 130, 47, 0.04);
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 14px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--size-base);
    background: none;
    border: none;
    cursor: pointer;
    gap: 16px;
    color: var(--color-text-dark);
    min-height: 48px;
}

.faq-q .plus {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    position: relative;
    border-radius: 50%;
    border: 1px solid rgba(169, 130, 47, 0.4);
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--color-primary-dark);
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.faq-q .plus::before {
    left: 50%;
    top: 50%;
    width: 11px;
    height: 1.6px;
    transform: translate(-50%, -50%);
}

.faq-q .plus::after {
    left: 50%;
    top: 50%;
    width: 1.6px;
    height: 11px;
    transform: translate(-50%, -50%);
}

.faq-item.open .plus {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.faq-item.open .plus::before,
.faq-item.open .plus::after {
    background: var(--color-text-light);
}

.faq-item.open .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}

.faq-a p {
    padding: 0 14px 22px;
    font-size: var(--size-base);
    max-width: 680px;
    color: var(--color-text-muted);
}

/* Brand Trust Row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--size-base);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--color-bg-light);
    border: 1px solid rgba(169, 130, 47, 0.25);
    box-shadow: var(--shadow-sm);
}

.trust-item img {
    width: 20px;
    height: 20px;
}

/* Global Conversion / Enquiry Form Section */
.enquiry {
    background: linear-gradient(160deg, var(--color-bg-dark) 0%, #241F18 100%);
    color: var(--color-text-light);
}

.enquiry .section-head h2 {
    color: var(--color-text-light);
}

.enquiry .section-head p {
    color: var(--color-text-light-muted);
}

.enquiry .eyebrow {
    color: var(--color-primary);
}

.enquiry .eyebrow::before {
    background: var(--color-primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
}

.enquiry label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.enquiry input,
.enquiry select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    font-size: var(--size-base);
}

.enquiry input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.enquiry input:focus,
.enquiry select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(169, 130, 47, 0.25);
}

.enquiry select option {
    color: var(--color-text-dark);
}

#formStatus {
    margin-top: 16px;
    color: var(--color-primary);
    font-weight: 700;
    display: none;
}

.enquiry .btn {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 28px;
    }

    .enquiry .btn {
        max-width: 280px;
        width: auto;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--color-bg-darker);
    color: var(--color-text-light);
    padding: 48px 0 22px;
    border-top: 3px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3 {
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: var(--size-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-grid>div:first-child p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--size-sm);
    line-height: 1.6;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--size-sm);
    transition: color 0.2s var(--ease);
}

.footer-grid a:hover {
    color: var(--color-primary);
}

.disclaimer {
    padding-top: 18px;
    font-size: 0.65rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: var(--size-eyebrow);
    color: rgba(255, 255, 255, 0.55);
    align-items: center;
    text-align: center;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    align-items: end;
    max-width: 1000px;
    margin: auto;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.select-group {
    display: flex;
    flex-direction: column;
}

.select-group label {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
    }

}














.invest-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fcf9f3 0%, #f5f0e8 100%);
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.invest-card {
    background: #ffffff;
    padding: 2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid #a9822f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a9822f, #d4b56a);
}

.invest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(169, 130, 47, 0.12);
}

.invest-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.invest-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e2a3a;
    margin-bottom: 0.6rem;
}

.invest-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5668;
    margin: 0;
}

/* 2. Growth Corridor Section */
.corridor-section {
    padding: 5rem 0;
    background: #ffffff;
}

.corridor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.corridor-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2b3648;
    margin-bottom: 1.8rem;
}

.corridor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-box {
    background: #f8f5ef;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 3px solid #a9822f;
}

.stat-box .number {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #a9822f;
    display: block;
}

.stat-box .label {
    font-size: 0.85rem;
    color: #5f6b7a;
    margin-top: 0.2rem;
}



/* 3. Jewar Airport Section */
.airport-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f4f0ea 0%, #ece6dc 100%);
}

.airport-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.airport-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.airport-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: #1e2a3a;
    margin-bottom: 1.2rem;
}

.airport-card h4 span {
    font-size: 1.8rem;
}

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

.airport-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0ece6;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.98rem;
    color: #2b3648;
}

.airport-list li:last-child {
    border-bottom: none;
}

.airport-list li::before {
    content: "\f5b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    color: #a9822f;
    margin-right: 8px;
}
.airport-time-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.airport-time-box .big-number {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #a9822f;
    line-height: 1;
}

.airport-time-box .big-number small {
    font-size: 1.2rem;
}

.airport-time-box .label {
    color: #4b5668;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* 4. Commercial Benefits Section */
.commercial-section {
    padding: 5rem 0;
    background: #ffffff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: #f8f5ef;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: #a9822f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(169, 130, 47, 0.08);
}

.benefit-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.benefit-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2a3a;
    margin-bottom: 0.4rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #4b5668;
    margin: 0;
}

/* 5. Rental Yield Section */
.yield-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fcf9f3 0%, #f5f0e8 100%);
}

.yield-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.yield-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2b3648;
    margin-bottom: 1.8rem;
}

.yield-figures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.yield-item {
    background: #ffffff;
    padding: 1.2rem 1.2rem;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    text-align: center;
    border-top: 3px solid #a9822f;
}

.yield-item .value {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #a9822f;
    display: block;
}

.yield-item .desc {
    font-size: 0.85rem;
    color: #5f6b7a;
    margin-top: 0.2rem;
}

.yield-big-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eae3d7;
    /* margin-top: 116px; */
}

.yield-big-box .big-percent {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #a9822f;
    line-height: 1;
}

.yield-big-box .label {
    font-size: 1rem;
    color: #2b3648;
    margin-top: 0.5rem;
    font-weight: 500;
}

.yield-big-box .note {
    font-size: 0.8rem;
    color: #7a8598;
    margin-top: 0.8rem;
}

/* 6. Future Infrastructure Section */
/* .infrastructure-section {
    padding: 5rem 0;
    background: #ffffff;
} */

/* .infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.infra-item {
    background: linear-gradient(135deg, #f8f5ef 0%, #f0ece6 100%);
    padding: 1.5rem 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e2a3a;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.infra-item:hover {
    border-color: #a9822f;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(169, 130, 47, 0.08);
}

.infra-item .emoji {
    font-size: 1.3rem;
} */

/* 7. Why Godrej Properties Section */
.godrej-why-section {
    padding: 5rem 0;
 
}

.godrej-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.godrej-why-card {
    background: var(--color-bg-deep);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0ece6;
}

.godrej-why-card:hover {
    border-color: #a9822f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(169, 130, 47, 0.08);
}

.godrej-why-card .icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.6rem;

}

.godrej-why-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e2a3a;
    margin-bottom: 0.3rem;
}

.godrej-why-card p {
    font-size: 0.88rem;
    color: #4b5668;
    margin: 0;
}

/* ============================================================
           RESPONSIVE DESIGN
           ============================================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
    }

    .hero-form-panel {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {

    .corridor-grid,
    .yield-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .airport-wrap {
        grid-template-columns: 1fr;
    }

   

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .primary-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: #fff;
        padding: 80px 2rem 2rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.06);
        z-index: 100;
    }

    .primary-nav.open {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-layout {
        grid-template-columns: 1fr;

    }

    .hero-form-panel {
        grid-column: span 1;
    }

    .hero-billboard {
        min-height: 250px;
    }

    .invest-grid,
    .benefit-grid,
    .godrej-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corridor-stats {
        grid-template-columns: 1fr 1fr;
    }

    .yield-figures {
        grid-template-columns: 1fr 1fr;
    }

    .infra-grid {
        grid-template-columns: 1fr 1fr;
    }

    .airport-card {
        padding: 1.5rem;
    }

    .yield-big-box .big-percent {
        font-size: 3rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 1.8rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .amenities-img {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .invest-grid,
    .benefit-grid,
    .godrej-why-grid {
        grid-template-columns: 1fr;
    }

    .corridor-stats {
        grid-template-columns: 1fr;
    }

    .yield-figures {
        grid-template-columns: 1fr;
    }

    .infra-grid {
        grid-template-columns: 1fr 1fr;
    }

    .airport-wrap {
        grid-template-columns: 1fr;
    }

    .airport-time-box .big-number {
        font-size: 2.5rem;
    }

    .yield-big-box {
        padding: 1.5rem;
    }

    .yield-big-box .big-percent {
        font-size: 2.5rem;
    }

    .invest-card {
        padding: 1.5rem;
    }

    .godrej-why-card {
        padding: 1.5rem;
    }

    .hero-info-card {
        padding: 1.5rem;
    }

    .hero-form-panel {
        padding: 1.5rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-table td,
    .pricing-table th {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}