
        :root {
            --clr-green: #16a34a;
            --clr-green-mid: #22c55e;
            --clr-green-light: #bbf7d0;
            --clr-green-dark: #15803d;
            --clr-blue: #2563eb;
            --clr-blue-light: #dbeafe;
            --clr-text: #171717;
            --clr-text-secondary: #525252;
            --clr-text-muted: #a3a3a3;
            --clr-border: #e5e5e5;
            --clr-bg: #ffffff;
            --clr-bg-soft: #fafafa;
            --clr-bg-muted: #f5f5f5;
            --clr-orange: #f97316;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--clr-text);
            background: var(--clr-bg);
            font-size: 14px;
            line-height: 1.6;
        }

        .header {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--clr-border);
            z-index: 1050;
            height: 64px;
            display: flex;
            align-items: center;
        }

        .header .navbar {
            width: 100%;
            padding: 0;
        }

        .header .navbar-brand img {
            height: 40px;
            width: auto;
        }

        .premium-phone a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--clr-text);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 16px;
            border: 1.5px solid var(--clr-green);
            border-radius: 50px;
            transition: all 0.2s;
        }

        .premium-phone a:hover {
            background: var(--clr-green);
            color: #fff;
        }

        .premium-phone a i {
            color: var(--clr-green);
            font-size: 0.9rem;
        }

        .premium-phone a:hover i { color: #fff; }

        .mini-spacer { padding-bottom: 3rem; }

        .project-box {
            background: var(--clr-bg);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--clr-border);
        }

        .project-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            color: var(--clr-text);
        }

        .tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .tag-new { background: #dcfce7; color: var(--clr-green-dark); }
        .tag-commercial { background: var(--clr-blue-light); color: var(--clr-blue); }
        .tag-ready { background: #fef3c7; color: #92400e; }

        .project-info {
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
        }

        .project-info strong {
            font-size: 0.78rem;
            color: var(--clr-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .project-info .col-sm-3:not(:last-child) {
            border-color: var(--clr-border) !important;
        }

        .callback-btn {
            background: var(--clr-green);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        .callback-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .callback-btn:hover::after { transform: translateX(100%); }
        .callback-btn:hover { background: var(--clr-green-dark); }

        #instantCallbackBtn {
            padding: 0.7rem 2rem;
            font-size: 0.85rem;
        }

        /* Key Metrics */
        .km-wrapper { padding: 0; }

        .section-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--clr-text);
        }

        .km-card {
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .metric .label {
            font-size: 0.75rem;
            color: var(--clr-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0.25rem;
        }

        .metric h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .progress {
            height: 6px;
            background: var(--clr-bg-muted);
            border-radius: 50px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            border-radius: 50px;
            transition: width 1.5s ease;
        }

        .progress-bar.blue { background: var(--clr-blue); }
        .progress-bar.green { background: var(--clr-green); }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .metric-card {
            background: var(--clr-bg);
            border: 1px solid var(--clr-border);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            transition: all 0.2s;
        }

        .metric-card:hover {
            border-color: var(--clr-green-mid);
            box-shadow: 0 2px 8px rgba(22,163,74,0.08);
        }

        .metric-card.highlight {
            border-color: var(--clr-green);
            background: #f0fdf4;
        }

        .metric-card span {
            font-size: 0.72rem;
            color: var(--clr-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .metric-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-top: 0.25rem;
            color: var(--clr-text);
        }

        .metric-card .unit {
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--clr-text-secondary);
        }

        .metric-card.full {
            grid-column: 1 / -1;
        }

        /* Popup */
        .popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(4px);
        }

        .popup-overlay.active { display: flex; }

        .popup-box {
            background: #fff;
            padding: 2rem;
            border-radius: 16px;
            width: 90%;
            max-width: 420px;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            animation: popupIn 0.3s ease;
        }

        @keyframes popupIn {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .close-popup {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--clr-text-muted);
            line-height: 1;
            transition: color 0.2s;
        }

        .close-popup:hover { color: var(--clr-text); }

        .popup-box h4 { font-weight: 700; }

        .popup-box .form-control {
            border-radius: 8px;
            border: 1px solid var(--clr-border);
            padding: 0.65rem 1rem;
            font-size: 0.85rem;
        }

        .popup-box .form-control:focus {
            border-color: var(--clr-green);
            box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
        }

        .popup-box .btn-primary {
            background: var(--clr-green);
            border-color: var(--clr-green);
            border-radius: 8px;
            font-weight: 600;
            padding: 0.65rem;
        }

        .popup-box .btn-primary:hover {
            background: var(--clr-green-dark);
            border-color: var(--clr-green-dark);
        }

        /* Developer Card */
        .developer-card {
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
            border-radius: 12px;
            overflow: hidden;
        }

        .developer-card .card-header {
            background: var(--clr-green);
            color: #fff;
            padding: 0.85rem 1.25rem;
            margin: 0;
        }

        .developer-card .card-header h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }

        .developer-content {
            display: flex;
            gap: 1.25rem;
            padding: 1.25rem;
            align-items: flex-start;
        }

        .developer-logo {
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: var(--clr-green-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--clr-green-dark);
        }

        .developer-info h5 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.35rem;
        }

        .developer-info p {
            font-size: 0.83rem;
            color: var(--clr-text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* Content Block */
        .content-block {
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
        }

        .content-block h4 {
            font-size: 1.05rem;
        }

        .content-block h6 {
            color: var(--clr-text-secondary);
            font-size: 0.9rem;
        }

        .content-block p {
            font-size: 0.88rem;
            color: var(--clr-text-secondary);
            line-height: 1.7;
        }

        .project-box h2 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .project-box ul {
            padding-left: 1.25rem;
            font-size: 0.85rem;
            color: var(--clr-text-secondary);
            line-height: 1.8;
        }

        .project-box ul li { margin-bottom: 0.25rem; }

        .btn-link {
            color: var(--clr-green);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
        }

        .btn-link:hover { color: var(--clr-green-dark); text-decoration: underline; }

        .btn-pdf {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--clr-bg);
            border: 1.5px solid var(--clr-border);
            border-radius: 8px;
            padding: 0.55rem 1.25rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--clr-text);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-pdf:hover {
            border-color: var(--clr-green);
            color: var(--clr-green);
            box-shadow: 0 2px 8px rgba(22,163,74,0.08);
        }

        /* Table */
        .table {
            font-size: 0.83rem;
            margin-bottom: 0;
        }

        .table thead th {
            background: var(--clr-green);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            padding: 0.75rem;
        }

        .table tbody td {
            padding: 0.75rem;
            vertical-align: middle;
            border-color: var(--clr-border);
            color: var(--clr-text-secondary);
        }

        .table tbody tr:hover { background: #f0fdf4; }

        .size { font-weight: 600; color: var(--clr-text); }

        /* Comparison Table */
        .comparison-table-wrap { overflow-x: auto; }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8rem;
            min-width: 700px;
        }

        .comparison-table thead th {
            background: var(--clr-green-dark);
            color: #fff;
            padding: 0.7rem 0.6rem;
            font-weight: 600;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border: 1px solid rgba(255,255,255,0.15);
            text-align: left;
            white-space: nowrap;
        }

        .comparison-table thead th:first-child {
            background: #1a1a1a;
        }

        .comparison-table tbody td {
            padding: 0.65rem 0.6rem;
            border: 1px solid var(--clr-border);
            color: var(--clr-text-secondary);
            vertical-align: top;
            line-height: 1.5;
        }

        .comparison-table tbody td:first-child {
            font-weight: 600;
            color: var(--clr-text);
            background: var(--clr-bg-muted);
            white-space: nowrap;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .comparison-table tbody tr:hover td {
            background: #f0fdf4;
        }

        .comparison-table tbody tr:hover td:first-child {
            background: #dcfce7;
        }

        .highlight-cell {
            background: #f0fdf4 !important;
            font-weight: 500 !important;
        }

        .comparison-table .project-name-header {
            background: var(--clr-blue) !important;
            font-weight: 700;
        }

        .comparison-table .current-project-header {
            background: var(--clr-green) !important;
        }

        /* Floor Plan Cards */
        .floor-plan-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--clr-border);
            transition: all 0.3s;
            cursor: pointer;
        }

        .floor-plan-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-color: var(--clr-green-mid);
        }

        .floor-plan-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .floor-plan-label {
            padding: 0.75rem;
            background: #fff;
        }

        .floor-plan-label h6 {
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        .floor-plan-label span {
            font-size: 0.72rem;
            color: var(--clr-text-muted);
        }

        /* Amenities */
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.7rem 1rem;
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
            border-radius: 8px;
            font-size: 0.83rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .amenity-item:hover {
            border-color: var(--clr-green-mid);
            background: #f0fdf4;
        }

        .amenity-item i {
            color: var(--clr-green);
            width: 18px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Location */
        .location-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--clr-border);
            font-size: 0.85rem;
        }

        .location-item:last-child { border-bottom: none; }
        .location-item span:last-child { font-weight: 600; color: var(--clr-green); white-space: nowrap; }

        .map-placeholder {
            background: var(--clr-bg-muted);
            border: 2px dashed var(--clr-border);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            color: var(--clr-text-muted);
            font-size: 0.85rem;
        }

        .map-placeholder i {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Gallery */
        .gallery-img {
            border-radius: 10px;
            height: 200px;
            object-fit: cover;
            width: 100%;
            transition: all 0.3s;
            border: 1px solid var(--clr-border);
        }

        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .gallery a { display: block; }

        /* Why Invest Cards */
        .metric-card.h-100 {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Sidebar */
        .sidebar-dark {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: #fff;
        }

        .sidebar-dark .title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }

        .sidebar-dark .form-control {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            border-radius: 8px;
            padding: 0.6rem 0.85rem;
            font-size: 0.82rem;
        }

        .sidebar-dark .form-control::placeholder { color: rgba(255,255,255,0.45); }
        .sidebar-dark .form-control:focus {
            border-color: var(--clr-green-mid);
            box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
            background: rgba(255,255,255,0.12);
        }

        .sidebar-dark .btn-primary {
            background: var(--clr-green);
            border-color: var(--clr-green);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.65rem;
        }

        .sidebar-dark .btn-primary:hover {
            background: var(--clr-green-dark);
            border-color: var(--clr-green-dark);
        }

        .trust-badges {
            margin-top: 1.25rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
        }

        .trust-badge i { color: var(--clr-green-mid); font-size: 0.8rem; }

        .price-widget {
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
        }

        .price-widget h5 {
            font-size: 0.9rem;
            font-weight: 700;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--clr-border);
        }

        .price-row:last-child { border-bottom: none; }

        .price-label {
            font-size: 0.8rem;
            color: var(--clr-text-secondary);
        }

        .price-value {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--clr-text);
        }

        .price-value.green { color: var(--clr-green); }
        .price-value.blue { color: var(--clr-blue); }

        .price-unit {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--clr-text-muted);
        }

        /* Footer */
        .footer-custom {
            background: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 2.5rem 0 1.5rem;
        }

        .footer-logo {
            border-radius: 8px;
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            font-style: italic;
        }

        .footer-link {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.85rem;
        }

        .footer-link:hover { color: var(--clr-green-mid); }

        /* Toast */
        .toast-notification {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: #1a1a1a;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
            z-index: 10000;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .toast-notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .toast-notification i { color: var(--clr-green-mid); }

        /* Mobile Sticky Bar */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 1px solid var(--clr-border);
            padding: 0.5rem 1rem;
            display: none;
            align-items: center;
            justify-content: space-between;
            z-index: 1060;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
        }

        .sticky-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .sticky-icon.whatsapp {
            background: #25d366;
            color: #fff;
        }

        .sticky-icon.whatsapp:hover { background: #1da851; }

        .sticky-icon.call {
            background: var(--clr-green);
            color: #fff;
        }

        .sticky-icon.call:hover { background: var(--clr-green-dark); }

        .sticky-download {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--clr-bg-soft);
            border: 1px solid var(--clr-border);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--clr-text);
            cursor: pointer;
            transition: all 0.2s;
        }

        .sticky-download:hover {
            border-color: var(--clr-green);
            color: var(--clr-green);
        }

        /* Responsive */
        @media (max-width: 767px) {
            .mobile-sticky-bar { display: flex; }
            .mini-spacer { padding-bottom: 5rem; }
            .project-title { font-size: 1.3rem; }
            .metrics-grid { grid-template-columns: 1fr; }
            .info-grid { grid-template-columns: repeat(2, 1fr); }
            .developer-content { flex-direction: column; align-items: center; text-align: center; }
            .premium-phone { display: none; }
            .project-info .col-sm-3 { border-inline: none !important; border-bottom: 1px solid var(--clr-border); padding: 0.6rem 0; }
            .project-info .col-sm-3:last-child { border-bottom: none; }
            .gallery-img { height: 160px; }
        }

        @media (max-width: 576px) {
            .info-grid { grid-template-columns: 1fr; }
        }

        /* AOS Custom */
        [data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
   