/* ================================================================
   TRUMP TOWER NOIDA — COMPLETE RESPONSIVE CSS
   Mobile First Approach (320px to 2560px+)
   Zero Duplication | Production Ready
   NEW: Responsive Price Table (Mobile Cards + Desktop Table)
   ================================================================ */

/* ===== CSS VARIABLES ===== */
: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;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    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;
    color: inherit;
}

/* ===== CONTAINERS & LAYOUT ===== */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ===== GRID & FLEX UTILITIES ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.row > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 576px) {
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .col-lg-5 {
        flex: 0 0 41.67%;
        max-width: 41.67%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.33%;
        max-width: 58.33%;
    }
}

.g-2 {
    margin-right: -8px;
    margin-left: -8px;
}
.g-2 > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
}

.g-3 {
    margin-right: -12px;
    margin-left: -12px;
}
.g-3 > [class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}

.g-4 {
    margin-right: -16px;
    margin-left: -16px;
}
.g-4 > [class*="col-"] {
    padding-right: 16px;
    padding-left: 16px;
}

.g-5 {
    margin-right: -20px;
    margin-left: -20px;
}
.g-5 > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-center {
    align-items: center;
}
.align-items-stretch {
    align-items: stretch;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.text-center {
    text-align: center;
}
.h-100 {
    height: 100%;
}
.w-100 {
    width: 100%;
}
.mt-1 {
    margin-top: 8px;
}
.mt-3 {
    margin-top: 16px;
}
.mt-4 {
    margin-top: 24px;
}
.mb-4 {
    margin-bottom: 24px;
}
.me-1 {
    margin-right: 8px;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: #fff;
}

.page-section.bg-cream {
    background: var(--cream);
}

.page-section.bg-light-green {
    background: var(--light-green);
}

.page-section.bg-dark {
    background: linear-gradient(135deg, #0b1e14 0%, #112a1c 60%, #0d2117 100%);
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #0b1e14 0%, #112a1c 60%, #0d2117 100%);
    color: #fff;
    padding: clamp(40px, 8vw, 70px) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: clamp(-50px, -10vw, -100px);
    right: clamp(-50px, -10vw, -100px);
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-h1 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: clamp(12px, 2vw, 18px);
    color: #fff;
    word-break: break-word;
}

.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: clamp(13px, 2.5vw, 16px);
    color: #c8d4cb;
    line-height: 1.7;
    margin-bottom: clamp(16px, 3vw, 24px);
    max-width: 600px;
}

/* ===== KPI BOXES ===== */
.kpi-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 8px;
    padding: clamp(8px, 2vw, 12px) clamp(10px, 2vw, 14px);
    backdrop-filter: blur(8px);
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kpi-box strong {
    display: block;
    font-size: clamp(8px, 1.2vw, 10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 3px;
}

.kpi-box span {
    display: block;
    font-size: clamp(11px, 1.5vw, 12.5px);
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 1vw, 8px);
    padding: clamp(8px, 1.5vw, 11px) clamp(14px, 3vw, 20px);
    border-radius: 8px;
    background: var(--gold);
    color: #0b1e14;
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
}

.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;
}

.cta-btn.sm {
    padding: clamp(7px, 1.5vw, 8px) clamp(12px, 2vw, 16px);
    font-size: clamp(11px, 1.8vw, 12px);
    border-radius: 6px;
}

.cta-btn.sm:hover {
    transform: translateY(-1px);
}

.btn-icon {
    width: clamp(18px, 3vw, 22px);
    height: clamp(18px, 3vw, 22px);
    border-radius: 50%;
    background: rgba(11, 30, 20, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-btn.outline .btn-icon {
    background: rgba(201, 168, 76, 0.18);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 1vw, 8px);
    padding: clamp(8px, 1.5vw, 11px) clamp(12px, 2vw, 18px);
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.call-btn:hover {
    background: #145549;
    transform: translateY(-2px);
}

.icon-pill {
    width: clamp(18px, 3vw, 22px);
    height: clamp(18px, 3vw, 22px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== LEAD FORM CARD ===== */
.lead-form-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(18px, 4vw, 26px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin-top: clamp(20px, 4vw, 28px);
}

@media (min-width: 992px) {
    .lead-form-card {
        margin-top: 0;
    }
}

.lead-form-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: clamp(12px, 2vw, 18px);
}

.lead-form-card form input,
.lead-form-card form textarea {
    width: 100%;
    padding: clamp(9px, 1.5vw, 11px) clamp(10px, 2vw, 14px);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: clamp(8px, 1.5vw, 11px);
    font-size: 13px;
    font-family: inherit;
    transition: border 0.2s;
}

.lead-form-card form input:focus,
.lead-form-card form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.lead-form-card form button {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.lead-form-card form button:hover {
    background: #145549;
}

.consent-text {
    font-size: clamp(9px, 1.5vw, 10.5px);
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ===== CTA STRIP - FULLY RESPONSIVE ===== */
.cta-strip {
    background: var(--cream);
    padding: clamp(10px, 2vw, 14px) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 16px);
}

@media (max-width: 575px) {
    .cta-strip .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 16px);
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
}

.cta-strip-text {
    margin: 0;
    font-size: clamp(11px, 2vw, 13.5px);
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.5vw, 8px);
    flex-wrap: wrap;
    line-height: 1.4;
}

@media (max-width: 575px) {
    .cta-strip-text {
        width: 100%;
        gap: 4px;
    }
}

@media (min-width: 576px) {
    .cta-strip-text {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

.cta-strip-text i {
    color: var(--accent);
    font-size: clamp(11px, 2vw, 14px);
    flex-shrink: 0;
}

.cta-strip-contact,
.cta-strip-rera {
    display: flex;
    align-items: center;
    gap: clamp(3px, 1vw, 6px);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .cta-strip-contact,
    .cta-strip-rera {
        flex-shrink: 1;
    }
}

.cta-strip-divider {
    color: var(--text-muted);
    opacity: 0.5;
    margin: 0 clamp(3px, 1vw, 6px);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .cta-strip-divider {
        opacity: 0.2;
        margin: 0 clamp(2px, 0.5vw, 4px);
        font-size: clamp(8px, 1vw, 10px);
    }
}

.cta-strip-text a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.cta-strip-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cta-strip-text a:active {
    opacity: 0.6;
}

.cta-strip-text strong {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.cta-strip-buttons {
    display: flex;
    gap: clamp(6px, 1.5vw, 10px);
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .cta-strip-buttons {
        width: 100%;
        flex-shrink: 1;
        gap: 6px;
    }

    .cta-strip-buttons .cta-btn {
        flex: 1;
        min-width: 130px;
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .cta-strip-buttons {
        gap: 8px;
    }

    .cta-strip-buttons .cta-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }
}

@media (min-width: 992px) {
    .cta-strip-buttons {
        gap: 10px;
    }

    .cta-strip-buttons .cta-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
    display: inline-block;
    font-size: clamp(8px, 1.2vw, 10px);
    text-transform: uppercase;
    letter-spacing: clamp(1.5px, 0.3vw, 2.5px);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: clamp(6px, 1vw, 8px);
    position: relative;
}

.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%;
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: clamp(6px, 1vw, 8px);
    line-height: 1.2;
}

.section-title span {
    color: var(--gold);
}

.section-title.light {
    color: #fff;
}

.section-title.light span {
    color: var(--gold-light);
}

.divider {
    width: clamp(30px, 6vw, 50px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: clamp(16px, 3vw, 22px);
}

.page-section.section-in-view .divider {
    animation: drawDivider 0.5s ease 0.2s both;
}

@keyframes drawDivider {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: clamp(30px, 6vw, 50px);
        opacity: 1;
    }
}

.section-intro {
    font-size: clamp(12px, 2vw, 14.5px);
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: clamp(16px, 3vw, 24px);
    max-width: 760px;
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
    margin-bottom: clamp(12px, 2vw, 18px);
    padding-left: clamp(12px, 2vw, 16px);
    border-left: 3px solid var(--gold);
    opacity: 0;
    transform: translateX(-16px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.feature-item.feat-visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item h3 {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: clamp(3px, 0.5vw, 5px);
}

.feature-item p {
    font-size: clamp(11px, 1.8vw, 13px);
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===== ABOUT IMAGE ===== */
.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    width: 100%;
    margin-bottom: clamp(12px, 2vw, 16px);
}

@media (min-width: 992px) {
    .about-img-wrap {
        margin-bottom: 0;
    }
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: clamp(8px, 2vw, 16px);
    left: clamp(8px, 2vw, 16px);
    background: rgba(11, 30, 20, 0.92);
    border-radius: 10px;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 20px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    font-size: clamp(9px, 1.5vw, 11px);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 14px);
}

.badge-left,
.badge-right {
    flex: 1;
}

.badge-floors {
    font-size: clamp(12px, 3vw, 16px);
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.badge-luxury {
    font-size: clamp(8px, 1.2vw, 10px);
    color: #c8d4cb;
    margin-top: clamp(1px, 0.5vw, 2px);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-divider {
    width: 1px;
    height: clamp(28px, 5vw, 36px);
    background: rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .badge-divider {
        width: 1px;
        height: clamp(20px, 4vw, 28px);
        opacity: 0.3;
    }
}

.badge-title {
    font-size: clamp(10px, 2vw, 13px);
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.badge-location {
    font-size: clamp(8px, 1.5vw, 11px);
    color: #a0b8a8;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .badge-title,
    .badge-location {
        white-space: normal;
    }
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.08),
        rgba(201, 168, 76, 0.04)
    );
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: clamp(12px, 2vw, 20px);
    font-size: clamp(12px, 1.8vw, 13.5px);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===== PRICE TABLE WRAPPER ===== */
.price-table-wrapper {
    margin: clamp(20px, 4vw, 40px) 0;
}

/* ===== DESKTOP TABLE VIEW ===== */
.desktop-view {
    display: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
    .desktop-view {
        display: block;
    }

    .mobile-view {
        display: none !important;
    }
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-size: 14px;
}

.price-table thead {
    background: linear-gradient(135deg, #0b1e14 0%, #112a1c 100%);
    color: #fff;
}

.price-table thead th {
    padding: 16px 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table thead th:last-child {
    border-right: none;
    text-align: center;
}

.price-table tbody tr {
    border-bottom: 1px solid #e0ede9;
    transition: all 0.2s ease;
}

.price-table tbody tr:hover {
    background: #f9f9f9;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody td {
    padding: 18px 18px;
    vertical-align: middle;
    font-size: 14px;
    color: #1a2622;
}

/* Config Column */
.price-table .col-config {
    width: 180px;
    text-align: left;
}

.price-table .config-name {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.config-badge {
    display: inline-block;
    background: #f0f7f3;
    color: #1b6b5a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.config-badge.penthouse {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
}

.config-subtitle {
    font-size: 12px;
    color: #5a6b65;
    font-weight: 500;
}

/* Size Column */
.price-table .col-size {
    width: 120px;
    text-align: center;
}

.price-table .size-value {
    color: #1a2622;
    font-weight: 600;
}

/* Rate Column */
.price-table .col-rate {
    width: 120px;
    text-align: center;
}

.price-table .rate-value {
    color: #1a2622;
    font-weight: 600;
}

/* Price Column */
.price-table .col-price {
    width: 140px;
    text-align: center;
}

.price-table .price-value {
    color: #1b6b5a;
    font-weight: 700;
    font-size: 15px;
}

/* Action Column */
.price-table .col-action {
    width: 130px;
    text-align: center;
}

.price-table .action-cell {
    text-align: center;
}

/* ===== MOBILE CARD VIEW ===== */
.mobile-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 16px);
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .mobile-view {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .mobile-view {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .mobile-view {
        display: none !important;
    }
}

.price-card {
    background: #fff;
    border: 1px solid #e0ede9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.card-header {
    background: linear-gradient(135deg, #f0f7f3 0%, #faf6ed 100%);
    padding: clamp(12px, 2vw, 16px);
    border-bottom: 1px solid #e0ede9;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-header .config-badge {
    width: fit-content;
}

.card-header .config-subtitle {
    font-size: 12px;
    color: #5a6b65;
    font-weight: 500;
    margin-top: 2px;
}

.card-body {
    padding: clamp(14px, 2vw, 18px);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 14px);
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: clamp(8px, 1.5vw, 12px);
    border-bottom: 1px dashed #e0ede9;
}

.card-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.price-row {
    padding-top: clamp(8px, 1.5vw, 12px);
    border-top: 1px dashed #e0ede9;
    border-bottom: none !important;
}

.card-label {
    font-size: clamp(11px, 1.8vw, 12px);
    color: #5a6b65;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: clamp(13px, 2vw, 14px);
    color: #1a2622;
    font-weight: 600;
    text-align: right;
}

.card-value.price-highlight {
    color: #1b6b5a;
    font-weight: 700;
    font-size: clamp(14px, 2.2vw, 16px);
}

.card-footer {
    padding: clamp(12px, 2vw, 16px);
    background: #f9f9f9;
    border-top: 1px solid #e0ede9;
    display: flex;
    gap: 8px;
}

/* ===== ENQUIRE BUTTON ===== */
.btn-enquire {
    background: #1b6b5a;
    color: #fff;
    border: none;
    padding: clamp(8px, 1.5vw, 11px) clamp(16px, 3vw, 20px);
    border-radius: 6px;
    font-size: clamp(11px, 1.8vw, 13px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-enquire:hover {
    background: #145549;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 107, 90, 0.25);
}

.btn-enquire:active {
    transform: translateY(0);
}

.btn-enquire.full-width {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    font-size: clamp(12px, 1.8vw, 13px);
}

/* ===== PRICE DISCLAIMER ===== */
.price-disclaimer {
    margin-top: clamp(16px, 3vw, 24px);
    padding: clamp(12px, 2vw, 16px);
    background: rgba(242, 247, 243, 0.5);
    border-left: 3px solid #1b6b5a;
    border-radius: 4px;
    font-size: clamp(10px, 1.5vw, 12px);
    color: #5a6b65;
    line-height: 1.6;
}

.price-disclaimer p {
    margin: 0;
}

.price-disclaimer strong {
    color: #1b6b5a;
    font-weight: 700;
}

/* ===== PRICE PAYMENT ROW ===== */
.price-payment-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: start;
    margin-top: clamp(20px, 4vw, 28px);
}

@media (min-width: 992px) {
    .price-payment-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== FLOOR BUTTON ===== */
.floor-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: clamp(6px, 1vw, 8px) clamp(10px, 1.5vw, 14px);
    font-size: clamp(10px, 1.3vw, 11px);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.floor-btn:hover {
    background: #145549;
    transform: translateY(-1px);
}

/* ===== PAYMENT PLAN BOX ===== */
.payment-plan-box {
    background: linear-gradient(135deg, #0b1e14 0%, #1b3528 100%);
    border-radius: 12px;
    padding: clamp(18px, 4vw, 32px);
    color: #fff;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.payment-plan-box h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold);
    margin-bottom: clamp(10px, 2vw, 18px);
    line-height: 1.2;
}

.plan-step {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2vw, 14px);
    margin-bottom: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
}

.plan-step:last-child {
    margin-bottom: 0;
}

.plan-circle {
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    min-width: clamp(36px, 8vw, 44px);
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.18);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.plan-step-text {
    flex: 1;
    min-width: 150px;
}

.plan-step-text strong {
    display: block;
    color: #fff;
    font-size: clamp(11px, 1.8vw, 13px);
    font-weight: 600;
    margin-bottom: clamp(2px, 0.5vw, 4px);
}

.plan-step-text span {
    font-size: clamp(10px, 1.5vw, 12px);
    color: #a0b8a8;
    line-height: 1.6;
}

.payment-plan-box .cta-btn {
    width: 100%;
    margin-top: clamp(16px, 3vw, 24px);
    padding: clamp(10px, 2vw, 13px) !important;
    text-align: center;
    justify-content: center;
    font-size: 13px !important;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    padding: clamp(14px, 3vw, 22px);
    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-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: clamp(4px, 1vw, 6px);
}

.stat-label {
    font-size: clamp(9px, 1.3vw, 11px);
    color: #c8d4cb;
    line-height: 1.4;
}

/* ===== APARTMENT CARDS ===== */
.apt-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        opacity 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.apt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.apt-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.apt-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.apt-card-body {
    padding: clamp(10px, 2vw, 14px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.apt-card-body h3 {
    margin-bottom: clamp(4px, 1vw, 6px);
    font-weight: 600;
    font-size: clamp(12px, 2vw, 14px);
}

.apt-card-specs {
    display: flex;
    gap: clamp(4px, 1vw, 6px);
    flex-wrap: wrap;
    margin-bottom: clamp(6px, 1vw, 8px);
}

.apt-spec {
    background: var(--light-green);
    color: var(--text-dark);
    font-size: clamp(9px, 1.3vw, 10.5px);
    padding: clamp(2px, 0.5vw, 3px) clamp(6px, 1vw, 8px);
    border-radius: 3px;
    font-weight: 500;
    white-space: nowrap;
}

.apt-price {
    color: var(--gold);
    font-weight: 700;
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: clamp(6px, 1vw, 10px);
}

.apt-cta {
    margin-top: auto;
    padding: clamp(7px, 1.5vw, 9px);
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.apt-cta:hover {
    background: #145549;
}

.resale-tag {
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    left: clamp(8px, 1.5vw, 12px);
    background: var(--gold);
    color: #0b1e14;
    font-size: clamp(8px, 1.2vw, 10px);
    font-weight: 700;
    padding: clamp(2px, 0.5vw, 4px) clamp(6px, 1vw, 10px);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
    white-space: nowrap;
}

.resale-tag.fresh {
    background: #0d8a52;
    color: #fff;
}

.resale-tag.branded {
    background: #1a3528;
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* ===== INVESTMENT CARDS GRID ===== */
.invest-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 18px);
    margin-top: clamp(20px, 4vw, 28px);
}

@media (min-width: 576px) {
    .invest-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .invest-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== INVEST CARDS ===== */
.invest-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: clamp(14px, 3vw, 22px) clamp(14px, 2vw, 20px);
    border-top: 3px solid var(--gold);
    background: #fff;
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.invest-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.invest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.invest-card i {
    color: var(--gold);
    font-size: clamp(18px, 4vw, 28px);
    margin-bottom: clamp(10px, 2vw, 14px);
    display: block;
}

.invest-card h3 {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    line-height: 1.3;
}

.invest-card p {
    font-size: clamp(11px, 1.8vw, 13px);
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* ===== NEARBY CARDS ===== */
.nearby-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: clamp(10px, 2vw, 16px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.nearby-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.nearby-card h4 {
    font-size: clamp(10px, 1.5vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    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: clamp(11px, 1.8vw, 12.5px);
    color: var(--text-muted);
    padding: clamp(3px, 0.5vw, 4px) 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    line-height: 1.5;
}

.nearby-card ul li:last-child {
    border-bottom: none;
}

/* ===== AMENITIES GRID ===== */
.amen-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(6px, 1.5vw, 10px);
    margin-bottom: clamp(16px, 3vw, 20px);
}

@media (min-width: 576px) {
    .amen-inline-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .amen-inline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amen-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: clamp(8px, 1.5vw, 14px);
    font-size: clamp(10px, 1.8vw, 12.5px);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-weight: 500;
    transition: all 0.2s;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
}

.amen-item.amen-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.amen-item:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-2px);
}

.amen-item i {
    color: var(--gold);
    font-size: clamp(12px, 2vw, 16px);
    width: clamp(14px, 2vw, 18px);
    text-align: center;
    flex-shrink: 0;
}

/* ===== SPECS STRIP ===== */
.specs-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(6px, 1.5vw, 10px);
    margin-top: clamp(18px, 3vw, 28px);
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .specs-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        overflow-x: visible;
    }
}

.spec-card,
.spec-item {
    flex: 1;
    min-width: clamp(100px, 20vw, 140px);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(10px, 2vw, 14px) clamp(12px, 2vw, 16px);
}

@media (min-width: 768px) {
    .spec-card,
    .spec-item {
        min-width: auto;
    }
}

.spec-label {
    font-size: clamp(7px, 1.2vw, 9.5px);
    text-transform: uppercase;
    letter-spacing: clamp(0.8px, 0.1vw, 1.5px);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: clamp(4px, 0.8vw, 8px);
    line-height: 1.3;
    white-space: nowrap;
}

.spec-value {
    font-size: clamp(11px, 1.8vw, 14px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ===== FLOOR CARDS ===== */
.floor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        opacity 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.floor-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.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: clamp(10px, 2vw, 16px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.floor-card-body h3 {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: clamp(4px, 1vw, 6px);
}

.floor-card-body p {
    font-size: clamp(11px, 1.8vw, 12px);
    color: var(--text-muted);
    margin-bottom: clamp(8px, 1.5vw, 10px);
    flex: 1;
    line-height: 1.6;
}

/* ===== COMPARE TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: clamp(9px, 1.3vw, 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: clamp(10px, 2vw, 14px);
    text-align: center;
    font-weight: 600;
    font-size: clamp(8px, 1.2vw, 11px);
    white-space: normal;
}

.compare-table thead th.best {
    background: linear-gradient(135deg, #1a3528, #145549);
}

.compare-table tbody td {
    padding: clamp(8px, 1.5vw, 11px);
    text-align: center;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    word-break: break-word;
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    background: var(--cream);
    white-space: normal;
}

.compare-table tbody td.best-col {
    background: rgba(201, 168, 76, 0.07);
}

.best-badge {
    display: inline-block;
    background: var(--gold);
    color: #0b1e14;
    font-size: clamp(7px, 1vw, 8px);
    font-weight: 700;
    padding: clamp(1px, 0.3vw, 2px) clamp(4px, 0.8vw, 6px);
    border-radius: 2px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.badge-yes {
    color: #0d8a52;
    font-weight: 600;
}
.badge-no {
    color: #c0392b;
    font-weight: 600;
}
.badge-part {
    color: #b8810f;
    font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: clamp(12px, 3vw, 22px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--gold);
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.testimonial-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card p {
    font-size: clamp(11px, 1.8vw, 13px);
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: clamp(10px, 2vw, 12px);
}

.testimonial-author {
    font-weight: 600;
    font-size: clamp(12px, 2vw, 13px);
    color: var(--text-dark);
}

.testimonial-sub {
    font-size: clamp(10px, 1.5vw, 11px);
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px !important;
    margin-bottom: clamp(6px, 1vw, 10px);
    overflow: hidden;
    background: #fff;
}

.faq-accordion .accordion-button {
    font-size: clamp(12px, 2vw, 14.5px);
    font-weight: 600;
    color: var(--text-dark);
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2vw, 20px);
    background: #fff;
    font-family: inherit;
}

.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: clamp(11px, 1.8vw, 14px);
    color: var(--text-muted);
    line-height: 1.75;
    padding: clamp(10px, 2vw, 18px) clamp(14px, 2vw, 20px);
    font-family: inherit;
}

/* ===== PROJECT CARDS ===== */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        opacity 0.5s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.project-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.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: clamp(8px, 1.5vw, 10px);
    left: clamp(8px, 1.5vw, 10px);
    font-size: clamp(7px, 1vw, 9.5px);
    font-weight: 700;
    padding: clamp(2px, 0.5vw, 3px) clamp(6px, 1vw, 8px);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.project-status.ready {
    background: #0d8a52;
    color: #fff;
}

.project-status.upcoming {
    background: var(--gold);
    color: #0b1e14;
}

.project-card-body {
    padding: clamp(10px, 2vw, 16px);
}

.project-card-body h3 {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: clamp(3px, 0.5vw, 4px);
    color: var(--text-dark);
    font-weight: 600;
}

.project-card-body p {
    font-size: clamp(11px, 1.8vw, 12px);
    color: var(--text-muted);
    margin-bottom: clamp(6px, 1vw, 8px);
    line-height: 1.5;
}

.project-meta {
    font-size: clamp(9px, 1.3vw, 10.5px);
    color: var(--accent);
    font-weight: 600;
}

/* ===== MODALS ===== */
.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: clamp(12px, 2vw, 16px);
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-modal-inner {
    background: #fff;
    border-radius: 12px;
    padding: clamp(18px, 4vw, 26px);
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.enquiry-modal-inner h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-dark);
    margin-bottom: clamp(12px, 2vw, 16px);
    padding-right: 30px;
}

.modal-close {
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    right: clamp(10px, 2vw, 14px);
    background: none;
    border: none;
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}

.enquiry-modal-inner form input,
.enquiry-modal-inner form textarea {
    width: 100%;
    padding: clamp(9px, 1.5vw, 11px) clamp(10px, 2vw, 14px);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: clamp(8px, 1.5vw, 11px);
    font-size: 13px;
    font-family: inherit;
    transition: border 0.2s;
}

.enquiry-modal-inner form input:focus,
.enquiry-modal-inner form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.enquiry-modal-inner form button {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.enquiry-modal-inner form button:hover {
    background: #145549;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: clamp(6px, 1.5vw, 9px) clamp(10px, 2vw, 12px);
    display: none;
    align-items: center;
    justify-content: space-around;
    gap: clamp(4px, 1vw, 6px);
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    font-size: clamp(9px, 1.5vw, 11.5px);
}

.sticky-cta {
    display: flex;
}

body {
    padding-bottom: clamp(40px, 8vw, 54px);
}

@media (min-width: 1200px) {
    body {
        padding-bottom: 0;
    }

    .sticky-cta {
        display: none;
    }
}

.sticky-cta a {
    color: #fff;
    background: var(--accent);
    padding: clamp(5px, 1vw, 7px) clamp(8px, 1.5vw, 11px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(9px, 1.3vw, 11px);
    display: inline-flex;
    align-items: center;
    gap: clamp(3px, 0.8vw, 5px);
    flex-shrink: 0;
    transition: background 0.2s;
}

.sticky-cta a:hover {
    opacity: 0.9;
}

.sticky-cta a.wa-sticky {
    background: #25d366;
}

.sticky-cta span {
    font-weight: 600;
    font-size: clamp(9px, 1.3vw, 11px);
    flex: 1;
    white-space: nowrap;
}

/* ===== ANIMATIONS & REVEALS ===== */
#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);
}

.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 > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TOUCH OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    .cta-btn,
    .apt-cta,
    .floor-btn,
    .cta-strip-buttons .cta-btn,
    .btn-enquire {
        min-height: 40px;
        min-width: 44px;
    }

    .cta-strip-text a,
    a {
        padding: clamp(3px, 0.5vw, 4px) clamp(2px, 0.3vw, 2px);
    }

    .price-card:active {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --cream: #1a2622;
        --light-green: rgba(11, 30, 20, 0.6);
    }

    body {
        background: #0a0f0d;
        color: #e0e0e0;
    }

    .cta-strip {
        background: rgba(11, 30, 20, 0.8);
        border-bottom-color: rgba(201, 168, 76, 0.2);
    }

    .cta-strip-text {
        color: #e0e0e0;
    }

    .cta-strip-divider {
        color: rgba(255, 255, 255, 0.3);
    }

    .lead-form-card,
    .apt-card,
    .invest-card,
    .nearby-card,
    .floor-card,
    .project-card,
    .testimonial-card,
    .enquiry-modal-inner,
    .price-card,
    .price-table {
        background: #1a2622;
        color: #e0e0e0;
    }

    .price-table tbody tr {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .price-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .config-badge {
        background: rgba(27, 107, 90, 0.2);
        color: #6bb895;
    }

    .config-badge.penthouse {
        background: rgba(201, 168, 76, 0.15);
        color: #e8cc7e;
    }

    .card-header {
        background: rgba(27, 107, 90, 0.1);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .card-row {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .card-footer {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .price-disclaimer {
        background: rgba(27, 107, 90, 0.1);
        color: #a0a0a0;
    }

    .price-disclaimer strong {
        color: #6bb895;
    }
}

/* ===== LANDSCAPE MODE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .cta-strip {
        padding: 6px 0;
    }

    .cta-strip-text {
        font-size: clamp(9px, 1.5vw, 11px);
    }

    .page-section {
        padding: clamp(20px, 3vw, 40px) 0;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sticky-cta,
    .enquiry-modal {
        display: none !important;
    }

    .page-section {
        page-break-inside: avoid;
    }

    .cta-strip {
        border: 1px solid #ccc;
        background: #f9f9f9;
    }

    .mobile-view {
        display: none !important;
    }

    .desktop-view {
        display: block !important;
    }

    .price-table {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .price-card {
        page-break-inside: avoid;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger-children > *,
    .apt-card,
    .floor-card,
    .nearby-card,
    .feature-item,
    .amen-item,
    .testimonial-card,
    .project-card,
    .invest-card,
    .price-card,
    .btn-enquire,
    .price-table tbody tr {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ================================================================
   END OF TRUMP TOWER CSS
   ==================================