/* ===========================================================
   EXPERION ELEMENTS — DESIGN SYSTEM
   Standardized to match ATS Knightsbridge template
   =========================================================== */
:root {
    --dark: #0b1e14;
    --dark-mid: #112a1c;
    --accent: #1b6b5a;
    --gold: #c9a84c;
    --gold-light: #e8cc7e;
    --cream: #faf6ed;
    --light-green: #f0f7f3;
    --text-dark: #1a2622;
    --text-muted: #5a6b65;
    --border: #e0ede9;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    margin: 0;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #0b1e14 0%, #112a1c 60%, #0d2117 100%);
    color: #fff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}
.hero-gradient-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 15px;
    color: #c8d4cb;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 580px;
}

/* KPI Boxes */
.kpi-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 10px;
    padding: 12px 14px;
    backdrop-filter: blur(8px);
}
.kpi-box strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 3px;
}
.kpi-box span {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 500;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
}
.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
    color: #0b1e14;
}
.cta-btn.outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.cta-btn.outline:hover {
    background: var(--gold);
    color: #0b1e14;
}
.cta-btn.wa {
    background: #25d366;
    color: #fff;
}
.cta-btn.wa:hover {
    background: #128c7e;
    color: #fff;
}
.btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(11, 30, 20, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-btn.outline .btn-icon {
    background: rgba(201, 168, 76, 0.18);
}
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.call-btn:hover {
    background: #145549;
    color: #fff;
    transform: translateY(-2px);
}
.icon-pill {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Lead Form Card */
.lead-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}
.lead-form-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.lead-form-card form input,
.lead-form-card form textarea,
.lead-form-card form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 11px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    transition: border 0.2s;
}
.lead-form-card form input:focus,
.lead-form-card form textarea:focus,
.lead-form-card form select:focus {
    outline: none;
    border-color: var(--gold);
}
.lead-form-card form button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.lead-form-card form button:hover {
    background: #145549;
}
.consent-text {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* CTA Strip */
.cta-strip {
    background: var(--cream);
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: 60px 0;
    background: #fff;
}
.page-section.bg-cream {
    background: var(--cream);
}
.page-section.bg-light-green {
    background: var(--light-green);
}

.section-label {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.25;
}
.section-title span {
    color: var(--gold);
}
.divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 22px;
}
.section-intro {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 760px;
}

/* Feature Items */
.feature-item {
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}
.feature-item h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}
.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* About image */
.about-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    width: 100%;
}
.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(11, 30, 20, 0.92);
    border-radius: 12px;
    padding: 12px 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* KPI Chips */
.kpi-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.kpi-chip {
    flex: 1;
    min-width: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.kpi-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}
.kpi-chip strong {
    font-size: 9.5px;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ===== PRICE TABLE ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    font-size: 13px;
}
.price-table thead {
    background: var(--dark);
    color: #fff;
}
.price-table thead th {
    padding: 14px 12px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: left;
}
.price-table tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.price-table tbody tr:last-child td {
    border-bottom: none;
}
.price-table tbody tr:hover {
    background: var(--cream);
}
.price-table tbody td strong {
    color: var(--accent);
    font-size: 13.5px;
}

.config-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 11.5px;
    padding: 4px 10px;
    border-radius: 6px;
}
.config-tag.resale {
    background: rgba(201, 84, 76, 0.12);
    color: #b8410f;
}
.price-note {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}
.price-note a {
    color: var(--accent);
    font-weight: 600;
}
.floor-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 7px 13px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.floor-btn:hover {
    background: #145549;
}

/* ===== APARTMENT/OFFICE CARDS ===== */
.apt-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.apt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.apt-card a {
    display: block;
}
.apt-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.apt-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.apt-card-body h3 {
    margin-bottom: 6px;
    font-weight: 600;
}
.apt-card-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.apt-spec {
    background: var(--light-green);
    color: var(--text-dark);
    font-size: 10.5px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}
.apt-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}
.apt-cta {
    margin-top: auto;
    padding: 9px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.apt-cta:hover {
    background: #145549;
}

/* Tag for Sale/Lease (matches ATS resale-tag pattern) */
.resale-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.resale-tag.fresh {
    background: #0d8a52;
    color: #fff;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--dark);
    color: #fff;
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    border-top: 3px solid var(--gold);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 30, 20, 0.35);
}
.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 11px;
    color: #c8d4cb;
    line-height: 1.45;
}

/* ===== NEARBY CARDS ===== */
.nearby-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}
.nearby-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}
.nearby-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nearby-card ul li {
    font-size: 12.5px;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.nearby-card ul li:last-child {
    border-bottom: none;
}

/* ===== AMENITIES ===== */
.amen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.amen-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 12.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.2s;
}
.amen-item:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-2px);
}
.amen-item i {
    color: var(--gold);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
}
.gal-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gal-item:hover img {
    transform: scale(1.06);
}
.gal-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.25s;
}
.gal-item:hover .gal-overlay {
    opacity: 1;
}
.gal-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 12.5px;
}
.gal-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #0b1e14;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Lightbox */
#lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
#lightbox-overlay.active {
    display: flex;
}
#lightbox-overlay img {
    max-width: 92%;
    max-height: 90%;
    border-radius: 8px;
}
#lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    font-weight: 300;
}

/* ===== FLOOR CARDS ===== */
.floor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.floor-card:hover {
    transform: translateY(-4px);
}
.floor-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--cream);
}
.floor-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.floor-card-body h3 {
    font-size: 13.5px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}
.floor-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    flex: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 22px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--gold);
    margin: 0;
    height: 100%;
}
.testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 14px;
}
.testimonial-author {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
}
.testimonial-sub {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== COMPARE TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-size: 12.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.compare-table thead {
    background: var(--dark);
    color: #fff;
}
.compare-table thead th {
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 11.5px;
}
.compare-table thead th.best {
    background: linear-gradient(135deg, #1a3528, #145549);
    position: relative;
}
.compare-table tbody td {
    padding: 11px 10px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    transition: background 0.2s ease;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    background: var(--cream);
}
.compare-table tbody td.best-col {
    background: rgba(201, 168, 76, 0.07);
}
.compare-table tbody tr:hover td {
    background: var(--cream) !important;
}
.best-badge {
    display: inline-block;
    background: var(--gold);
    color: #0b1e14;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 4px;
}
.badge-yes {
    color: #0d8a52;
    font-weight: 600;
}
.badge-no {
    color: #c0392b;
    font-weight: 600;
}
.badge-part {
    color: #b8810f;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.faq-accordion .accordion-button {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 20px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--accent);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 10px 20px 18px;
    font-family: "DM Sans", sans-serif;
}

/* ===== PROJECT CARDS ===== */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.project-card-img {
    position: relative;
}
.project-card-img img {
    width: 100%;
    aspect-ratio: 380/170;
    object-fit: cover;
}
.project-status {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-status.ready {
    background: #0d8a52;
    color: #fff;
}
.project-status.upcoming {
    background: var(--gold);
    color: #0b1e14;
}
.project-card-body {
    padding: 14px;
}
.project-card-body h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-weight: 600;
}
.project-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.project-meta {
    font-size: 10.5px;
    color: var(--accent);
    font-weight: 600;
}
.project-rera {
    display: inline-block;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 9px 12px;
    display: none;
    align-items: center;
    justify-content: space-around;
    gap: 6px;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    font-size: 11.5px;
}
.sticky-cta a {
    color: #fff;
    background: var(--accent);
    padding: 7px 11px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sticky-cta a.wa-sticky {
    background: #25d366;
}
.sticky-cta span {
    font-weight: 600;
    font-size: 11px;
    flex: 1;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 997;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}
#backToTop.visible {
    display: flex;
}
#backToTop:hover {
    background: #145549;
    transform: translateY(-3px);
}

/* ===== ENQUIRY MODAL ===== */
.enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.enquiry-modal.active {
    display: flex;
}
.enquiry-modal-inner {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.enquiry-modal-inner h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-right: 30px;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}
.enquiry-modal-inner form input,
.enquiry-modal-inner form textarea,
.enquiry-modal-inner form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 11px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
}
.enquiry-modal-inner form input:focus,
.enquiry-modal-inner form textarea:focus,
.enquiry-modal-inner form select:focus {
    outline: none;
    border-color: var(--gold);
}
.enquiry-modal-inner form button {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section {
        padding: 40px 0 50px;
    }
    .lead-form-card {
        margin-top: 28px;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .gal-item.featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 42px 0;
    }
    .price-table {
        font-size: 11.5px;
    }
    .price-table thead th,
    .price-table tbody td {
        padding: 10px 8px;
    }
    .amen-grid {
        grid-template-columns: 1fr;
    }
    .sticky-cta {
        display: flex;
    }
    body {
        padding-bottom: 54px;
    }
    .hero-h1 {
        font-size: 1.7rem;
    }
    .compare-table {
        font-size: 11px;
    }
    .compare-table thead th,
    .compare-table tbody td {
        padding: 8px 6px;
    }
    .stat-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .kpi-chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .kpi-chip {
        font-size: 11px;
        padding: 8px 11px;
    }
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 110px;
    }
    .lead-form-card {
        padding: 20px 18px;
    }
    .enquiry-modal-inner {
        padding: 22px 18px;
    }
}

/* ═══════════════════════════════════════════
   IMMERSIVE FALLBACK LAYER — Supernova Astralis
   Matches ATS Knightsbridge exactly
═══════════════════════════════════════════ */
#nlPageProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 10001;
    transition: width 0.1s linear;
    pointer-events: none;
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.visible > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
}
.stagger-children.visible > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 80ms;
}
.stagger-children.visible > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 160ms;
}
.stagger-children.visible > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 240ms;
}
.stagger-children.visible > *:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 320ms;
}
.stagger-children.visible > *:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 400ms;
}
.section-label {
    position: relative;
    display: inline-block;
}
.section-label::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s ease 0.3s;
}
.section-in-view .section-label::after {
    width: 100%;
}
.page-section.section-in-view .divider {
    animation: drawDivider 0.5s ease 0.2s both;
}
@keyframes drawDivider {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 50px;
        opacity: 1;
    }
}
.cta-strip {
    position: relative;
    overflow: hidden;
}
.cta-strip::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.06),
        transparent
    );
    animation: shimmer 4s infinite 2s;
}
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}
.gal-item {
    opacity: 0;
    transform: scale(0.96);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.gal-item.gal-visible {
    opacity: 1;
    transform: scale(1);
}
.apt-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.25s;
}
.apt-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.floor-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.25s;
}
.floor-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.nearby-card {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}
.nearby-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-item {
    opacity: 0;
    transform: translateX(-16px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}
.feature-item.feat-visible {
    opacity: 1;
    transform: translateX(0);
}
.amen-item {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        border-color 0.2s,
        background 0.2s;
}
.amen-item.amen-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.testimonial-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.project-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.25s;
}
.project-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
.about-img-wrap {
    overflow: hidden;
}
.about-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-img-wrap:hover img {
    transform: scale(1.04);
}
.price-table tbody tr {
    transition: background 0.15s ease;
}
.hero-section {
    overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger-children > *,
    .gal-item,
    .apt-card,
    .floor-card,
    .nearby-card,
    .feature-item,
    .amen-item,
    .testimonial-card,
    .project-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
