
        :root {
            --red: #c0272d;
            --red2: #a01f24;
            --red3: #7a1519;
            --blue: #0f2d5e;
            --blue2: #163a75;
            --blue3: #1d4a8c;
            --gold: #c9983a;
            --gold2: #e2b65a;
            --white: #fff;
            --off: #f8f5f0;
            --dark: #0a0f1a;
            --text: #2a2a3a;
            --muted: #5a6268;
            --border: rgba(0, 0, 0, 0.08);
            --radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--off);
            color: var(--text);
            overflow-x: hidden
        }

        section,
        .overview-wrap,
        .why-wrap,
        .amen-wrap,
        .units-wrap,
        .loc-wrap,
        .gallery-wrap,
        .masterplan-wrap,
        .faq-wrap,
        .cta-wrap,
        .banks-wrap {
            scroll-margin-top: 80px;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--off);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--blue);
            border-radius: 4px;
        }

        /* ─── TYPOGRAPHY ─── */
        .stag {
            display: block;
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--blue);
            line-height: 1.15;
            margin-bottom: 18px
        }

        .h2 em {
            font-style: italic;
            color: var(--red)
        }

        .h2.light {
            color: white
        }

        .h2.light em {
            color: var(--gold2)
        }

        .body {
            font-size: 15px;
            line-height: 1.9;
            color: var(--muted);
            max-width: 600px;
            font-weight: 400;
        }

        /* ─── TOP BAR ─── */
        .topbar {
            background: var(--blue);
            color: rgba(255, 255, 255, 0.75);
            font-size: 12px;
            padding: 10px 0;
        }

        .topbar a {
            color: var(--gold2);
            text-decoration: none;
            font-weight: 500;
        }

        /* ─── NAV ─── */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .logo-text .t1 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--blue);
            letter-spacing: 1px;
            display: block;
            line-height: 1.1;
        }

        .logo-text .t2 {
            font-size: 9px;
            letter-spacing: 3px;
            color: var(--red);
            text-transform: uppercase;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 30px
        }

        .nav-links a {
            color: var(--blue);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 100%;
            height: 2px;
            background: var(--red);
            transition: right 0.3s;
        }

        .nav-links a:hover {
            color: var(--red)
        }

        .nav-links a:hover::after {
            right: 0
        }

        .nav-actions {
            display: flex;
            gap: 10px;
            align-items: center
        }

        .btn-sm-call {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            border: 1.5px solid var(--red);
            color: var(--red);
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .btn-sm-call:hover {
            background: var(--red);
            color: white
        }

        .btn-sm-enq {
            background: var(--red);
            color: white;
            padding: 10px 22px;
            font-size: 12px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .btn-sm-enq:hover {
            background: var(--red2);
            color: white;
        }

        /* ─── CLEAN MOBILE OFFCANVAS ─── */
        .offcanvas {
            background-color: var(--white) !important;
            width: 300px;
            border-left: none;
        }

        .offcanvas-header {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
        }

        .offcanvas-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--blue);
        }

        .offcanvas-body {
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .mobile-nav-link {
            display: block;
            padding: 18px 24px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: 0.3s;
            letter-spacing: 0.5px;
        }

        .mobile-nav-link:hover {
            color: var(--red);
            background: rgba(0, 0, 0, 0.02);
        }

        .btn-mobile-enq {
            background: var(--red);
            color: var(--white);
            display: block;
            padding: 16px;
            text-align: center;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 6px;
            margin: 30px 24px;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn-mobile-enq:hover {
            background: var(--red2);
            color: white;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 90vh;
            position: relative;
            overflow: hidden;
            background: var(--blue);
            display: flex;
            align-items: stretch;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 45, 94, 0.97) 0%, rgba(22, 58, 117, 0.85) 40%, rgba(120, 21, 25, 0.75) 80%, rgba(192, 39, 45, 0.9) 100%);
            z-index: 1;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            z-index: 1;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9983a' fill-opacity='1'%3E%3Cpath d='M40 0l5 14H60L48 23l5 14L40 28l-13 9 5-14L20 14h15z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 0;
            position: relative;
            z-index: 2;
            max-width: 650px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 152, 58, 0.15);
            border: 1px solid rgba(201, 152, 58, 0.4);
            padding: 7px 16px;
            margin-bottom: 24px;
            width: fit-content;
            color: var(--gold2);
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 4px;
            animation: fadeUp 0.7s ease both;
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            background: var(--gold2);
            border-radius: 50%;
            animation: blink 2s infinite
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.2
            }
        }

        .hero-by {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 14px;
            font-weight: 700;
            animation: fadeUp 0.7s 0.08s ease both;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 6vw, 68px);
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin-bottom: 12px;
            animation: fadeUp 0.8s 0.15s ease both;
        }

        .hero-title .gold {
            color: var(--gold2);
            font-style: italic
        }

        .hero-sub {
            font-size: clamp(16px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            margin-bottom: 24px;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 36px;
            animation: fadeUp 0.8s 0.25s ease both;
            font-weight: 500;
        }

        .hero-location i {
            color: var(--red);
            font-size: 18px;
        }

        .hero-location span {
            color: var(--gold2);
            font-weight: 600
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            animation: fadeUp 0.8s 0.3s ease both
        }

        .btn-hero-primary {
            background: var(--red);
            color: white;
            padding: 15px 36px;
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .btn-hero-primary:hover {
            background: var(--red2);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-hero-secondary {
            background: transparent;
            color: white;
            padding: 15px 36px;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .btn-hero-secondary:hover {
            border-color: var(--gold2);
            color: var(--gold2)
        }

        .hero-kpis {
            display: flex;
            gap: 30px;
            animation: fadeUp 0.8s 0.38s ease both;
        }

        .kpi {
            padding-right: 30px;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .kpi:last-child {
            border-right: none;
            padding-right: 0
        }

        .kpi .n {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--gold2);
            line-height: 1;
            font-weight: 700;
        }

        .kpi .l {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 6px;
            font-weight: 600;
        }

        /* FIXED 500x520 FORM IN HERO */
        .hero-form-wrap {
            width: 480px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .hero-form {
            background: white;
            border-top: 4px solid var(--red);
            padding: 36px 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            width: 100%;
            max-width: 460px;
            height: 520px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: var(--radius);
            overflow: hidden;
        }

        .hf-title {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--blue);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .hf-sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hf-field {
            margin-bottom: 12px
        }

        .hf-field label {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 6px;
            font-weight: 700
        }

        .hf-field input,
        .hf-field select {
            width: 100%;
            padding: 12px 14px;
            height: 46px;
            border: 1.5px solid #e5e5e5;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text);
            outline: none;
            transition: border-color 0.3s;
            background: white;
            border-radius: 4px;
        }

        .hf-field input:focus,
        .hf-field select:focus {
            border-color: var(--red)
        }

        .hf-field select {
            cursor: pointer;
            appearance: none
        }

        .hf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 0;
        }

        .hf-btn {
            width: 100%;
            background: var(--red);
            color: white;
            padding: 15px;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Outfit', sans-serif;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        .hf-btn:hover {
            background: var(--red2)
        }

        .hf-note {
            font-size: 11px;
            color: var(--muted);
            text-align: center;
            margin-top: 14px;
            line-height: 1.6
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ─── STATS RIBBON ─── */
        .stats-ribbon {
            background: var(--blue);
            padding: 1.8rem 0;
            color: #fff;
            border-bottom: 2px solid var(--red);
        }

        .stat-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            padding: 0 10px;
        }

        .stat-item h3 {
            font-family: var(--heading-font);
            font-size: clamp(1.4rem, 2.5vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 0.4rem;
            line-height: 1.1;
            color: var(--white);
        }

        .stat-item p {
            font-size: clamp(0.7rem, 1vw, 0.85rem);
            letter-spacing: .05em;
            text-transform: uppercase;
            margin: 0;
            font-weight: 600;
            color: var(--gold2);
        }

        .stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.2);
            height: 40px;
        }

        /* ─── OVERVIEW ─── */
        .overview-wrap {
            background: white;
            padding: 90px 0;
        }

        .ov-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .ov-media {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
            border-radius: var(--radius);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .ov-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .ov-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(15, 45, 94, 0.9) 0%, rgba(15, 45, 94, 0.1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
        }

        .ov-headline {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .ov-headline span {
            color: var(--gold2);
            font-style: italic
        }

        .ov-content {
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .ov-points {
            margin-top: 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .ov-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 20px;
            border: 1px solid #eaeaea;
            border-radius: var(--radius);
            background: var(--off);
            transition: 0.3s;
        }

        .ov-point:hover {
            border-color: var(--blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-3px);
        }

        .ov-point-icon {
            width: 44px;
            height: 44px;
            background: rgba(15, 45, 94, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            border-radius: 50%;
            color: var(--blue);
        }

        .ov-point-text {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 500;
        }

        .ov-point-text strong {
            display: block;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 4px;
            font-size: 16px
        }

        /* ─── WHY INVEST ─── */
        .why-wrap {
            background: var(--white);
            padding: 90px 0;
            border-top: 1px solid #eaeaea;
        }

        .why-slider {
            padding-bottom: 50px;
            margin-top: 50px;
        }

        .wcard {
            background: #ffffff;
            padding: 35px 30px;
            border: 1px solid #eaeaea;
            border-radius: var(--radius);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .wcard:hover {
            border-color: var(--blue);
            box-shadow: 0 10px 30px rgba(15, 45, 94, 0.05);
            transform: translateY(-3px);
        }

        .wcard-num {
            position: absolute;
            right: 25px;
            top: 15px;
            font-family: 'Playfair Display', serif;
            font-size: 80px;
            color: rgba(0, 0, 0, 0.03);
            line-height: 1;
            font-weight: 700;
            z-index: -1;
        }

        .wcard-icon {
            font-size: 30px;
            margin-bottom: 16px;
            color: var(--gold2);
            display: block;
        }

        .wcard-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            color: var(--blue);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .wcard-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 400;
        }

        /* ─── GALLERY SWIPER ─── */
        .gallery-wrap {
            background: var(--off);
            padding: 90px 0;
        }

        .gallery-slide-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .gallery-slider {
            padding-bottom: 3rem;
            margin-top: 50px;
        }

        .swiper-pagination-bullet {
            background: var(--muted);
            opacity: 0.4;
            width: 10px;
            height: 10px;
        }

        .swiper-pagination-bullet-active {
            background: var(--red);
            opacity: 1;
        }

        /* ─── BLURRED MASTER PLAN SWIPER ─── */
        .masterplan-wrap {
            background: var(--blue);
            padding: 90px 0;
            text-align: center;
            border-top: 3px solid var(--red);
        }

        .mp-slider {
            margin-top: 50px;
            padding-bottom: 3rem;
        }

        .mp-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            background: #000;
            height: 400px;
        }

        .mp-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: blur(5px) brightness(0.6);
            transition: all 0.4s;
        }

        .mp-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(15, 45, 94, 0.4);
            transition: all 0.4s;
        }

        .mp-card:hover .mp-img {
            filter: blur(8px) brightness(0.3);
            transform: scale(1.05);
        }

        /* ─── AMENITIES ─── */
        .amen-wrap {
            background: var(--white);
            padding: 90px 0;
        }

        .amen-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: start;
            margin-top: 50px
        }

        .amen-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px
        }

        .acard {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            border: 1px solid #eaeaea;
            border-radius: var(--radius);
            transition: all 0.3s;
            background: var(--off);
        }

        .acard:hover {
            border-color: var(--blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-3px);
        }

        .acard-icon {
            width: 48px;
            height: 48px;
            background: rgba(15, 45, 94, 0.08);
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .acard:hover .acard-icon {
            background: var(--red);
            color: white;
        }

        .acard-name {
            font-size: 14px;
            color: var(--text);
            font-weight: 600;
            transition: color 0.3s
        }

        .acard:hover .acard-name {
            color: var(--red)
        }

        .amen-panel {
            background: linear-gradient(145deg, var(--blue) 0%, var(--blue2) 50%, var(--red3) 100%);
            padding: 50px 44px;
            border-top: 4px solid var(--gold2);
            border-radius: var(--radius);
            position: sticky;
            top: 100px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .ap-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.1;
        }

        .ap-sub {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 32px;
            font-weight: 500;
        }

        .ap-stat {
            background: rgba(255, 255, 255, 0.06);
            border-left: 3px solid var(--gold2);
            padding: 20px 24px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            border-radius: 4px;
        }

        .ap-stat .n {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: var(--gold2);
            line-height: 1;
            min-width: 80px;
            font-weight: 700;
        }

        .ap-stat .l {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5
        }

        .ap-stat .l strong {
            display: block;
            color: rgba(255, 255, 255, 1);
            font-size: 15px;
            margin-bottom: 4px;
            font-weight: 600;
        }

        /* ─── UNITS & FEATURES ─── */
        .units-wrap {
            background: var(--off);
            padding: 90px 0;
        }

        .units-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 50px
        }

        .units-table-wrap {
            overflow-x: auto;
            background: white;
            border-radius: var(--radius);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #eaeaea;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        thead tr {
            background: var(--blue)
        }

        thead th {
            color: white;
            padding: 18px 24px;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            text-align: left;
        }

        tbody tr {
            border-bottom: 1px solid #eaeaea;
            transition: background 0.2s
        }

        tbody tr:hover {
            background: rgba(192, 39, 45, 0.03)
        }

        tbody td {
            padding: 20px 24px;
            font-size: 15px;
            color: var(--text);
            font-weight: 500;
        }

        tbody td:first-child {
            font-weight: 700;
            color: var(--blue)
        }

        .td-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(192, 39, 45, 0.1);
            color: var(--red);
            padding: 8px 18px;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .td-badge:hover {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
            box-shadow: 0 4px 10px rgba(192, 39, 45, 0.2);
        }

        .units-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px
        }

        .uf-card {
            background: var(--white);
            padding: 32px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid #eaeaea;
            border-radius: var(--radius);
            transition: 0.3s;
            height: 100%;
        }

        .uf-card:hover {
            border-color: var(--blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .uf-icon {
            font-size: 36px;
            margin-bottom: 16px;
            color: var(--gold2);
        }

        .uf-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 8px
        }

        .uf-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6
        }

        /* ─── BANK APPROVALS ─── */
        .banks-wrap {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue3) 100%);
            padding: 60px 0;
            border-top: 3px solid var(--red);
        }

        .banks-inner {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .banks-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold2);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .banks-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: white;
            font-weight: 600;
            line-height: 1.2;
        }

        .banks-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .bchip {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 12px 24px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            border-radius: 4px;
            display: flex;
            align-items: center;
        }

        .bchip i {
            color: var(--gold2);
            margin-right: 8px;
            font-size: 16px;
        }

        .bchip:hover {
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px);
        }

        /* ─── LOCATION MAP ─── */
        .loc-wrap {
            background: var(--white);
            padding: 90px 0;
        }

        .loc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-top: 50px
        }

        .loc-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px
        }

        .loc-group-title {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 16px;
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--red);
            display: inline-block;
        }

        .loc-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0
        }

        .loc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #eaeaea;
            font-size: 14px;
            color: var(--text);
            transition: all 0.3s;
            font-weight: 500;
        }

        .loc-item:hover {
            color: var(--red);
            padding-left: 8px
        }

        .loc-item i {
            color: var(--red);
            font-size: 18px;
        }

        .map-iframe-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 480px;
        }

        .map-iframe-wrap iframe {
            flex-grow: 1;
            border: 0;
            width: 100%;
            min-height: 480px;
        }

        /* ─── FAQ ─── */
        .faq-wrap {
            background: var(--off);
            padding: 90px 0;
        }

        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: start
        }

        .faq-list {
            margin-top: 10px
        }

        .faq-item {
            border-bottom: 1px solid #eaeaea;
            cursor: pointer
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--blue);
            transition: color 0.3s;
        }

        .faq-q:hover {
            color: var(--red)
        }

        .faq-arr {
            width: 32px;
            height: 32px;
            border: 1.5px solid rgba(192, 39, 45, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .faq-item.open .faq-arr {
            background: var(--red);
            color: white;
            transform: rotate(180deg);
            border-color: var(--red);
        }

        .faq-a {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.85;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s;
            padding-right: 36px;
            font-weight: 400;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            padding-bottom: 24px
        }

        /* ─── CLEAN FOOTER ─── */
        .custom-footer { 
          background: #0f0f0f; 
          color: #ccc; 
          padding: 60px 24px 30px; 
          font-family: 'Outfit', sans-serif; 
          border-top: 2px solid #222; 
          text-align: center; 
        }
        .ft-rera-boxes { 
          display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; 
        }
        .ft-rera-box { 
          border: 1.5px solid var(--gold2); 
          color: var(--gold2); 
          padding: 8px 24px; 
          border-radius: 30px; 
          font-size: 13px; 
          font-weight: 600; 
          letter-spacing: 0.5px; 
        }
        .ft-rera-box span { color: white; margin-left: 5px; }

        .ft-disclaimer { 
          max-width: 1100px; 
          margin: 0 auto 40px; 
          font-size: 13px; 
          line-height: 1.8; 
          color: #999; 
          text-align: justify; 
          text-align-last: center; 
        }
        .ft-disclaimer strong { color: #ddd; font-weight: 600;}

        .ft-contact { 
          display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; 
          margin-bottom: 40px; font-size: 16px; font-weight: 700; color: white; 
        }
        .ft-contact a { color: white; text-decoration: none; transition: 0.3s; }
        .ft-contact a:hover { color: var(--gold2); }
        .ft-contact i { color: var(--gold2); margin-right: 8px; font-size: 18px;}
        .ft-divider { width: 1.5px; height: 20px; background: rgba(255,255,255,0.2); }

        .ft-links { 
          margin-bottom: 24px; display: flex; justify-content: center; gap: 20px; align-items: center; 
        }
        .ft-links a { color: #aaa; text-decoration: none; font-size: 14px; transition: 0.3s; font-weight: 500;}
        .ft-links a:hover { color: white; }

        .ft-copyright { 
          font-size: 12px; color: #666; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); font-weight: 400;
        }
        .ft-copyright span { color: #aaa; font-weight: 600;}

        @media(max-width: 767.98px) {
          .ft-contact { flex-direction: column; gap: 16px; }
          .ft-divider { display: none; }
          .ft-rera-boxes { flex-direction: column; align-items: center; gap: 12px; }
          .ft-disclaimer { text-align: left; text-align-last: left; }
        }

        /* ─── FLOATING WA ─── */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 900;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s;
            animation: floatBtn 3s ease-in-out infinite;
        }

        .wa-float:hover {
            transform: scale(1.1);
            color: #fff;
        }

        @keyframes floatBtn {
            0%, 100% { transform: translateY(0) }
            50% { transform: translateY(-6px) }
        }

        /* ─── STICKY MOBILE FOOTER ─── */
        .mobile-sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            display: none;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        }

        .mobile-footer-btn {
            flex: 1;
            text-align: center;
            padding: 1.2rem 0;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            font-family: var(--body-font);
        }

        .mf-btn-brochure {
            background: var(--blue);
        }

        .mf-btn-call {
            background: var(--red);
        }

        /* ─── 500x520 POPUP ─── */
        .popUpModelModel {
            position: fixed;
            inset: 0;
            background: rgba(10, 15, 26, 0.9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .3s ease;
            padding: 1rem;
        }

        .popUpModelModel.show {
            display: flex;
            opacity: 1;
        }

        .popUpModel-content {
            background: var(--white);
            border-top: 4px solid var(--red);
            border-radius: var(--radius);
            width: 100%;
            max-width: 500px;
            /* HEIGHT FIX: Changed to auto so it doesn't get cut on small screens */
            height: auto; 
            max-height: 90vh;
            overflow-y: auto;
            padding: 40px 30px;
            position: relative;
            color: var(--text);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
            transform: translateY(20px);
            transition: transform .3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .popUpModelModel.show .popUpModel-content {
            transform: translateY(0);
        }

        .popUpModel-title {
            font-family: var(--heading-font);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 0.2rem;
        }

        .popUpModel-title span {
            color: var(--red);
            font-style: italic;
        }

        .popUpModel-tagline {
            font-size: 0.95rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .closePopUpModelButton {
            position: absolute;
            top: 1rem;
            right: 1.2rem;
            font-size: 2.5rem;
            color: var(--muted);
            cursor: pointer;
            line-height: 1;
            transition: .2s;
        }

        .closePopUpModelButton:hover {
            color: var(--red);
        }

        .popUpModel-content .hf-field {
            margin-bottom: 14px;
        }

        .popUpModel-content .hf-row {
            margin-bottom: 0;
        }

        .popUpModel-content label {
            font-size: 11px;
            font-weight: 700;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
            display: block;
        }

        .popUpModel-content input,
        .popUpModel-content select {
            border-radius: 4px;
            border: 1.5px solid #e5e5e5;
            padding: 12px 16px;
            height: 48px;
            font-size: 14px;
            width: 100%;
            outline: none;
        }

        .popUpModel-content input:focus,
        .popUpModel-content select:focus {
            border-color: var(--red);
        }

        /* ─── MOBILE RESPONSIVE FIXES ─── */
        @media(max-width:991px) {
            .units-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .loc-grid,
            .faq-layout,
            .ov-grid,
            .units-header { /* FIX: Added .units-header here */
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .amen-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-form-wrap {
                width: 100%;
                max-width: 480px;
                padding: 40px 0;
            }
        }

        @media(max-width:767.98px) {
            .topbar {
                display: none
            }

            .nav-links,
            .nav-actions {
                display: none !important;
            }

            .nav-inner {
                padding: 14px 24px;
            }

            .navbar-toggler {
                display: block !important;
                border: none;
                background: transparent;
                font-size: 2rem;
                color: var(--blue);
                padding: 0;
            }

            .hero {
                flex-direction: column;
                padding-bottom: 20px;
            }

            .hero-left {
                padding: 60px 24px 20px;
                max-width: 100%;
                text-align: center;
            }

            .hero-badge {
                margin: 0 auto 24px;
            }

            .hero-location {
                justify-content: center;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }

            .btn-hero-primary,
            .btn-hero-secondary,
            .hf-btn {
                width: 100%;
                max-width: 350px;
            }

            .hero-kpis {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .kpi {
                padding: 0;
                border-right: none;
            }

            .hero-form-wrap {
                padding: 20px 20px;
                width: 100%;
            }

            .hero-form {
                width: 100%;
                max-width: 480px;
                height: auto; /* FIX: Changed from 520px to auto */
                margin: 0 auto;
                padding: 30px 24px;
            }

            .stats-ribbon {
                padding: 1.5rem 0;
            }

            .stat-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 24px 10px;
            }

            .stat-divider {
                display: none;
            }

            .stat-item h3 {
                font-size: 1.2rem;
                margin-bottom: 4px;
            }

            .stat-item p {
                font-size: 0.65rem;
            }

            section,
            .overview-wrap,
            .why-wrap,
            .amen-wrap,
            .units-wrap,
            .loc-wrap,
            .faq-wrap,
            .gallery-wrap,
            .masterplan-wrap {
                padding: 60px 24px;
            }

            .ov-points,
            .amen-grid,
            .loc-cols,
            .units-features,
            .hf-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .ov-media {
                min-height: 300px;
            }

            /* Map container fix for mobile */
            .map-iframe-wrap {
                min-height: 350px;
            }

            .map-iframe-wrap iframe {
                min-height: 350px;
            }

            .mobile-sticky-footer {
                display: flex;
            }

            body {
                padding-bottom: 60px;
            }

            .wa-float {
                bottom: 85px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .popUpModel-content {
                padding: 2rem 1.5rem;
                height: auto; /* FIX: Prevent getting cut off top/bottom */
            }

            .popUpModel-content input,
            .popUpModel-content select,
            .hero-form input,
            .hero-form select {
                font-size: 16px;
                padding: 10px 14px;
                height: 46px;
            }
        }

        @media(min-width: 768px) {
            .navbar-toggler {
                display: none !important;
            }
        }
   