* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root {
    --primary: #3a4f1f;        /* Main deep olive brand color */
    --secondary: #2b3a16;      /* Deeper olive accent */
    --gold: #c8d9a0;           /* Soft yellow-green highlight */
    --accent: #6d8c3f;         /* Fresh olive accent for hover or emphasis */
    --dark: #0e1505;           /* Deep near-black with olive tint */
    --light: #f4f7ed;          /* Soft olive-tinted light background */
    --cream: #ffffff;          /* Clean white (neutral base) */
    --white: #ffffff;          /* Pure white (unchanged) */
    --text-dark: #1e2d0d;      /* Text on light backgrounds */
    --text-light: #a4bb7a;     /* Text on dark backgrounds */
    --sidebar-width: 310px;    /* Keep as is */
}

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--cream);
            font-weight: 400;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Layout */
        .main-container {
            display: flex;
            min-height: 100vh;
        }

        .content-area {
            flex: 1;
            margin-right: var(--sidebar-width);
        }

        .sidebar {
            width: var(--sidebar-width);
            position: fixed;
            right: 0;
            top: 0;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 40px 30px;
            overflow-y: auto;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: var(--sidebar-width);
            z-index: 1000;
            padding: 20px 0;
            background: transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 2px;
            text-decoration: none;
        }

        .navbar.scrolled .logo {
            color: var(--primary);
        }

        .nav-cta {
          background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);

            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            white-space: nowrap;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
            background:
                linear-gradient(rgba(26, 20, 16, 0.35), rgba(26, 20, 16, 0.45)),
                url('assets/img3.webp') center center / cover no-repeat;

        }


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(184, 152, 74, 0.1) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.8;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
            width: 100%;
        }

        .hero-left {
            animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 800px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--white);
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .hero-location {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: var(--gold);
            margin-bottom: 40px;
            font-weight: 500;
        }

        .hero-location::before {
            content: '';
            font-size: 1.2rem;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }

        .btn-primary {
           background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

            color: var(--white);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* Sidebar Content */
        .sidebar-logo {
            font-size: 1.8rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-align: center;
        }

        .sidebar-subtitle {
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .sidebar-form {
            margin-bottom: 40px;
        }

        .form-title {
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 10px;
            font-family: 'Cormorant Garamond', serif;
        }

        .form-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
           background: linear-gradient(135deg, #0e9d2d 0%, #0e9d2d 100%);

            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
        }

        .form-disclaimer {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 15px;
            line-height: 1.4;
            text-align: center;
        }

        .sidebar-contact {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-title {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Cormorant Garamond', serif;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--gold);
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--white);
            padding: 40px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 20px;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }


        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Overview Section */
        .overview {
            background: var(--cream);
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .overview-content p {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.9;
            text-align: justify;
        }

        .overview-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .overview-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .overview-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .overview-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            aspect-ratio: 4/3;
            /* keeps the image nicely proportioned */
            background: #f5f5f5;
            /* fallback background */
        }

        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* makes the image fill container without distortion */
            display: block;
            transition: transform 0.6s ease;
        }

        /* Optional: Smooth zoom effect on hover */
        .overview-image:hover img {
            transform: scale(1.05);
        }

        /* Mobile Responsive: show image first */
        @media (max-width: 768px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }

            .overview-image {
                order: -1;
                /* Moves image before text */
            }
        }


        /* Project Details */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .detail-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }

        .detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .detail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .detail-card:hover::before {
            transform: scaleX(1);
        }

        .detail-label {
            display: block;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .detail-value {
            color: var(--secondary);
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
        }

        /* Highlights */
        .highlights {
            background: #392e15;
            color: var(--white);
        }

        .highlights .section-title {
            color: var(--white);
        }

        .highlights .section-subtitle {
            color: var(--gold);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .highlight-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .highlight-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .highlight-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--gold);
        }

        .highlight-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* Pricing */
        .pricing {
            background: var(--cream);
        }

        .pricing-table {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 30px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .pricing-header p {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .pricing-row {
            display: grid;
            grid-template-columns: 2fr 1.5fr 2fr;
            padding: 25px 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            align-items: center;
            transition: all 0.3s ease;
        }

        .pricing-row:hover {
            background: var(--light);
        }

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

        .pricing-row strong {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.05rem;
        }

        .pricing-row .size {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .price-value {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.3rem;
            font-family: 'Cormorant Garamond', serif;
            text-align: right;
        }

        .pricing-note {
            text-align: center;
            padding: 20px;
            background: var(--light);
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Amenities */
        .amenities {
            background: var(--white);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .amenity-card {
            background: var(--light);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s ease;
            border-left: 4px solid var(--gold);
        }

        .amenity-card:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .amenity-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .amenity-card strong {
            color: var(--primary);
            font-size: 1.05rem;
            font-weight: 600;
        }

        /* Floor Plans & Gallery */
        .floor-plans,
        .gallery {
            background: var(--cream);
        }

        .plans-grid,
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .plan-card,
        .gallery-item {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .plan-card:hover,
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .plan-image,
        .gallery-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .plan-image::before,
        .gallery-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .plan-card:hover .plan-image::before,
        .gallery-item:hover .gallery-placeholder::before {
            left: 100%;
        }

        .plan-info {
            padding: 25px;
            text-align: center;
        }

        .plan-info h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .plan-info p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Location */
        .location {
            background: var(--white);
        }

        .location-table {
            background: var(--cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .location-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            padding: 25px 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            align-items: center;
            transition: all 0.3s ease;
        }

        .location-row:hover {
            background: var(--white);
        }

        .location-row:last-child {
            border-bottom: none;
        }

        .location-row strong {
            color: var(--primary);
            font-size: 1.05rem;
            font-weight: 600;
        }

        .location-row span {
            text-align: right;
            color: var(--gold);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Developer */
        .developer {
            background: var(--cream);
        }

        .developer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .developer-logo {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 3px;
        }

        .developer-content p {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.9;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            font-size: 0.9rem;
            line-height: 1.8;
            margin: 10px 0;
        }

        .rera-info {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: zoomIn 0.3s ease;
        }

        .lightbox-display {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 80px 60px;
            text-align: center;
            color: var(--white);
        }

        .lightbox-display h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .lightbox-display p {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--gold);
            color: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--secondary);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.5);
        }

        .lightbox-nav:hover {
            background: var(--gold);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .content-area {
                margin-right: 0;
            }

            .sidebar {
                display: none;
            }

            .navbar {
                right: 0;
            }
        }

        @media (max-width: 1024px) {

            .hero-content,
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-row {
                grid-template-columns: 1fr;
                gap: 10px;
                text-align: center;
            }

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

            .location-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .location-row span {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 0 20px;
            }

            .hero {
                min-height: auto;
                padding-top: 100px;
            }

            .hero-content {
                padding: 40px 20px;
            }

            .section {
                padding: 50px 0;
            }

            .container {
                padding: 0 20px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-item::after {
                display: none;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-display {
                padding: 60px 30px;
            }

            .lightbox-display h2 {
                font-size: 1.8rem;
            }

            .lightbox-display p {
                font-size: 1.1rem;
            }
        }

        /* Project Details */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        /* Force 2 columns on smaller screens */
        @media (max-width: 768px) {
            .details-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .detail-card {
                padding: 25px 20px;
            }

            .detail-value {
                font-size: 1.4rem;
            }
        }

        /* Responsive: 2 stats per row on mobile */
        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 20px;
            }

            .stat-item::after {
                display: none;
                /* Removes divider lines for cleaner look on mobile */
            }
        }

        /* === Simple Box Lightbox (sb_) === */
        .sb-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }

        .sb-lightbox.sb-active {
            display: flex;
        }

        .sb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(2px);
        }

        /* content box */
        .sb-content {
            position: relative;
            width: 100%;
            max-width: 1100px;
            max-height: 90vh;
            margin: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            pointer-events: none;
            /* children will enable pointer-events */
        }

        /* media area */
        .sb-media {
            width: 100%;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
            max-height: 70vh;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        .sb-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* change to 'cover' to fill/crop */
            display: block;
            max-height: 70vh;
        }

        /* caption */
        .sb-caption {
            width: 100%;
            margin-top: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 14px 16px;
            border-radius: 8px;
            pointer-events: auto;
            text-align: left;
        }

        /* close button */
        .sb-close {
            position: absolute;
            top: 10px;
            right: 10px;
            pointer-events: auto;
            z-index: 6;
            border: none;
            background: var(--gold);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        }

        /* nav buttons */
        .sb-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: auto;
            z-index: 6;
            border: none;
            width: 66px;
            height: 66px;
            border-radius: 50%;
            font-size: 26px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.35);
            /* black with transparency */
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .sb-prev {
            left: 14px;
        }

        .sb-next {
            right: 14px;
        }

        .sb-nav:hover {
            background: var(--gold);
            transform: translateY(-50%) scale(1.03);
        }

        /* disabled state */
        .sb-nav:disabled {
            opacity: 0.35;
            cursor: default;
            transform: translateY(-50%);
        }

        /* responsive */
        @media (max-width: 880px) {

            .sb-prev,
            .sb-next {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .sb-media {
                max-height: 60vh;
                min-height: 180px;
            }

            .sb-caption {
                font-size: 0.95rem;
                padding: 12px;
            }
        }

        /* animation */
        .sb-content {
            transition: transform .20s ease, opacity .20s ease;
            transform-origin: center;
        }

        .sb-lightbox.sb-active .sb-content {
            transform: scale(1);
            opacity: 1;
        }

        /* --- Updated Hero with Info Card --- */
        updated-hero {
            position: relative;
            min-height: 86vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
            background:
                linear-gradient(rgba(26, 20, 16, 0.35), rgba(26, 20, 16, 0.45)),
                url('assets/img6.jpg') center center / cover no-repeat;

        }

        /* subtle decorative glow */
        .updated-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 48%, rgba(212, 175, 55, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 82% 52%, rgba(156, 126, 58, 0.06) 0%, transparent 30%);
            pointer-events: none;
            z-index: 1;
        }

        /* container */
        .updated-hero .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 44px 40px;
            width: 100%;
            box-sizing: border-box;
        }

        /* layout: text left + info card right */
        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 28px;
            align-items: start;
        }

        /* left content */
        .hero-left {
            color: var(--white);
            max-width: 820px;
            animation: fadeInLeft 1s ease;
        }

        /* .hero-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: rgba(212, 175, 55, 0.14);
                    border: 1px solid var(--gold);
                    color: var(--gold);
                    padding: 8px 20px;
                    border-radius: 50px;
                    font-size: 0.85rem;
                    font-weight: 600;
                    letter-spacing: 1.5px;
                    text-transform: uppercase;
                    margin-bottom: 18px;
                } */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
            border: 1.5px solid var(--secondary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
            box-shadow:
                0 0 20px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
            animation: shine 3s infinite;
        }

        .hero-badge::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            padding: 1.5px;
            background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
            -webkit-mask: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            animation: border-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow:
                    0 0 20px rgba(212, 175, 55, 0.3),
                    0 0 40px rgba(212, 175, 55, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow:
                    0 0 30px rgba(212, 175, 55, 0.5),
                    0 0 60px rgba(212, 175, 55, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes border-glow {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 0.6;
            }
        }

        @media (max-width: 768px) {
            .hero-badge {
                display: flex;
                justify-content: center;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
                background: rgba(212, 175, 55, 0.25);
            }
        }

        .updated-hero h1 {
            font-size: clamp(2.2rem, 4.2vw, 4.2rem);
            color: var(--white);
            line-height: 1.05;
            margin: 0 0 14px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(0.98rem, 1.6vw, 1.15rem);
            margin-bottom: 10px;
            font-weight: 300;
        }

        .hero-location {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        /* CTAs */
        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn.small {
            padding: 10px 18px;
            font-size: 0.95rem;
            border-radius: 40px;
        }

        .btn {
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* info card (form-like) */
        .hero-info {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
            border-radius: 14px;
            padding: 18px;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
            color: var(--text-dark);
            border: 1px solid rgba(0, 0, 0, 0.04);
            align-self: start;
        }

        .hero-info .info-title {
            font-size: 1.05rem;
            color: var(--primary);
            margin: 0 0 10px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        /* compact rows */
        .info-form {
            display: grid;
            gap: 10px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 8px 10px;
            background: linear-gradient(180deg, rgba(250, 250, 250, 1), rgba(245, 242, 235, 1));
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .info-row label {
            font-size: 0.88rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .info-value {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--primary);
            text-align: right;
            min-width: 110px;
        }

        /* actions at bottom of info card */
        .info-actions {
            display: flex;
            gap: 10px;
            margin-top: 6px;
            justify-content: stretch;
        }

        .info-actions .btn {
            flex: 1;
        }

        /* primary / outline styles (use existing vars) */
        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
            color: var(--white);
            border: none;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(8px);
        }

        /* override outline inside info card for visibility */
        .hero-info .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid rgba(0, 0, 0, 0.06);
            backdrop-filter: none;
        }

        /* responsiveness: stack on small devices */
        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr 320px;
                gap: 20px;
            }

            .hero-info {
                padding: 16px;
            }
        }

        @media (max-width: 720px) {
            .updated-hero {
                min-height: 70vh;
                padding-top: 70px;
            }

            .hero-content {
                padding: 28px 20px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .hero-info {
                order: 2;
                /* show info card below text on mobile */
                width: 100%;
            }

            .hero-left {
                order: 1;
            }

            .btn-outline {
                border-color: rgba(0, 0, 0, 0.06);
                color: var(--primary);
            }

            .info-row label {
                font-size: 0.86rem;
            }

            .info-value {
                font-size: 0.96rem;
                min-width: 90px;
            }

            .btn {
                padding: 12px 20px;
            }
        }

        /* small polish */
        @media (hover:hover) {
            .hero-info:hover {
                transform: translateY(-4px);
                box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
                transition: transform .28s ease;
            }
        }

        /* --- mobile CTA show/hide rules --- */
        /* keep the mobile CTA hidden by default (desktop) */
        .mobile-cta {
            display: none;
        }

        /* On small screens: hide original hero-left CTA, show mobile CTA inside info card */
        @media (max-width: 720px) {

            /* hide the desktop CTA which lives in hero-left */
            .hero-left .hero-cta {
                display: none !important;
            }

            /* show the mobile CTA inside the info card */
            .hero-info .mobile-cta {
                display: block;
                margin-top: 12px;
            }

            /* make it full width and match info card look */
            .hero-info .mobile-cta .btn {
                display: inline-flex;
                width: 100%;
                justify-content: center;
                padding: 12px 18px;
                border-radius: 10px;
                box-sizing: border-box;
            }

            /* optional spacing polish so it feels attached to the form */
            .hero-info .mobile-cta {
                padding-top: 6px;
                padding-bottom: 2px;
            }
        }

        /* Highlights */
        .highlights {
            background: #392e15;
            color: var(--white);
        }

        .highlights .section-title {
            color: var(--white);
        }

        .highlights .section-subtitle {
            color: var(--gold);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            text-align: center;
        }

        .highlight-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .highlight-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            color: white;
        }

        .highlight-card h3 {
            font-size: 1.3rem;
            margin: 0;
            color: var(--gold);
        }

        /* Responsive: 2 per row on phone */
        @media (max-width: 768px) {
            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* === Pricing Section === */
        .pricing {
            background: var(--cream);
            padding: 80px 0;
        }

        .pricing-table {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            margin: 0 auto;
        }

        /* === Header === */
        .pricing-header {
            /* background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); */
         background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);

            color: var(--white);
            padding: 32px 24px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0 0 8px;
            letter-spacing: -0.02em;
        }

        .pricing-header p {
            color: var(--gold);
            font-size: 1.25rem;
            font-weight: 500;
            margin: 0;
        }

        /* === Table Rows === */
        .pricing-row {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.3fr;
            align-items: center;
            gap: 20px;
            padding: 22px 28px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .pricing-row:last-of-type {
            border-bottom: none;
        }

        .pricing-row:hover {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
            transform: translateX(4px);
        }

        /* === Configuration Column === */
        .pricing-row strong {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
            line-height: 1.4;
        }

        /* === Size Column === */
        .pricing-row .size {
            color: var(--text-light);
            font-size: 1rem;
            text-align: center;
            line-height: 1.4;
        }

        /* === Price Column === */
        .price-value {
            font-family: 'Inter', serif;
            font-size: 1 rem;
            font-weight: 700;
            color: var(--primary);
            text-align: right;
            line-height: 1.3;
            white-space: nowrap;
        }

        /* === Note === */
        .pricing-note {
            text-align: center;
            padding: 16px;
            background: var(--light);
            font-size: 0.85rem;
            color: var(--text-light);
            font-style: italic;
        }

        /* === Tablet (768px - 1024px) === */
        @media (max-width: 1024px) {
            .pricing {
                padding: 60px 0;
            }

            .pricing-row {
                padding: 20px 24px;
            }

            .pricing-header h3 {
                font-size: 1.6rem;
            }
        }

        /* === Mobile (Max 768px) === */
        @media (max-width: 768px) {
            .pricing {
                padding: 50px 0;
            }

            .pricing-table {
                border-radius: 12px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            }

            .pricing-header {
                padding: 24px 16px;
            }

            .pricing-header h3 {
                font-size: 1.4rem;
                margin-bottom: 6px;
            }

            .pricing-header p {
                font-size: 1.1rem;
            }

            /* Keep 3-column layout but optimize spacing */
            .pricing-row {
                grid-template-columns: 1.8fr 1fr 1.2fr;
                gap: 8px;
                padding: 16px 12px;
                min-height: 70px;
            }

            .pricing-row:hover {
                transform: none;
                background: rgba(0, 0, 0, 0.02);
            }

            /* Configuration - Allow natural wrapping */
            .pricing-row strong {
                font-size: 0.95rem;
                line-height: 1.35;
                word-break: break-word;
                padding-right: 4px;
            }

            /* Size column */
            .pricing-row .size {
                font-size: 0.85rem;
                text-align: center;
                line-height: 1.3;
            }

            /* Price column */
            .price-value {
                font-size: 1.3 rem;
                text-align: right;
                white-space: normal;
                word-break: keep-all;
            }

            .pricing-note {
                padding: 14px 12px;
                font-size: 0.8rem;
                line-height: 1.4;
            }
        }

        /* === Small Mobile (Max 480px) === */
        @media (max-width: 480px) {
            .pricing-row {
                grid-template-columns: 1.5fr 0.9fr 1.1fr;
                gap: 6px;
                padding: 14px 10px;
            }

            .pricing-row strong {
                font-size: 0.88rem;
            }

            .pricing-row .size {
                font-size: 0.8rem;
            }

            .price-value {
                font-size: 1.2rem;
            }

            .pricing-header h3 {
                font-size: 1.25rem;
            }

            .pricing-header p {
                font-size: 1rem;
            }
        }

        /* === Extra Small (Max 360px) === */
        @media (max-width: 360px) {
            .pricing-row {
                padding: 12px 8px;
                gap: 4px;
            }

            .pricing-row strong {
                font-size: 0.82rem;
            }

            .pricing-row .size {
                font-size: 0.75rem;
            }

            .price-value {
                font-size: 1.1rem;
            }
        }

        /* === Stats Pills Section (Optimized for Sidebar Layout) === */
        .stats-pills-section {
            padding: 50px 0;
            background: linear-gradient(135deg,
                    var(--cream) 0%,
                    rgba(212, 175, 55, 0.05) 50%,
                    var(--cream) 100%);
        }

        /* container width matches main layout minus sidebar */
        .stats-pills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
            max-width: calc(1400px - var(--sidebar-width));
            margin: 0 auto;
            padding: 0 40px;
            /* same horizontal padding as .container */
        }

        /* === Stat Pills === */
        .stat-pill {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--white);
            padding: 18px 22px;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.12);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* soft light shimmer effect */
        .stat-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(212, 175, 55, 0.08),
                    transparent);
            transition: left 0.6s ease;
        }

        .stat-pill:hover::before {
            left: 100%;
        }

        .stat-pill:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
            border-color: var(--gold);
        }

        /* === Icon Circle === */
        .stat-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            /* background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%); */
          background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);

            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
            transition: all 0.4s ease;
        }

        .stat-pill:hover .stat-icon {
            transform: rotate(360deg) scale(1.08);
        }

        .stat-icon .material-icons {
            color: var(--white);
            font-size: 26px;
        }

        /* === Text === */
        .stat-content {
            flex: 1;
            min-width: 0;
        }

        .stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 0.4px;
            margin-bottom: 3px;
            line-height: 1.2;
        }

        .stat-text {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        /* === Responsive Design === */
        @media (max-width: 1024px) {
            .stats-pills-grid {
                max-width: 100%;
                margin-right: 0;
                padding: 0 20px;
            }
        }

        /* Mobile phones - 2 columns layout */
        @media (max-width: 768px) {
            .stats-pills-section {
                padding: 40px 0;
            }

            .stats-pills-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 0 16px;
            }

            .stat-pill {
                flex-direction: column;
                text-align: center;
                padding: 16px 12px;
                border-radius: 20px;
                gap: 10px;
            }

            .stat-icon {
                width: 42px;
                height: 42px;
                margin: 0 auto;
            }

            .stat-icon .material-icons {
                font-size: 20px;
            }

            .stat-content {
                width: 100%;
            }

            .stat-value {
                font-size: 1.05rem;
                margin-bottom: 2px;
                white-space: nowrap;
            }

            .stat-text {
                font-size: 0.7rem;
                line-height: 1.2;
                word-wrap: break-word;
            }
        }

        /* Extra small phones */
        @media (max-width: 380px) {
            .stats-pills-grid {
                gap: 10px;
                padding: 0 12px;
            }

            .stat-pill {
                padding: 14px 10px;
            }

            .stat-icon {
                width: 38px;
                height: 38px;
            }

            .stat-icon .material-icons {
                font-size: 18px;
            }

            .stat-value {
                font-size: 0.95rem;
            }

            .stat-text {
                font-size: 0.65rem;
            }
        }

        /* Medium screens (2-column layout between 769–1200px) */
        @media (min-width: 769px) and (max-width: 1200px) {
            .stats-pills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* --- Single Floor Plan (compact & premium) --- */
        .floor-plans.single-plan {
            padding: 36px 0;
        }

        .plan-card.single {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 980px;
            margin: 0 auto;
            background: transparent;
            box-shadow: none;
        }

        /* image container (blurred by default) */
        .plan-image {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: 16/10;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }

        /* image itself */
        .plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.03);
            filter: blur(6px) brightness(0.95);
            transition: filter 0.35s ease, transform 0.35s ease;
        }

        /* overlay with content (on top of blurred image) */
        .plan-image-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 18px;
            gap: 12px;
            background: linear-gradient(180deg, rgba(10, 8, 6, 0.06), rgba(26, 20, 16, 0.18));
            color: var(--white);
            pointer-events: none;
            /* enable buttons inside to be interactive separately */
        }

        /* meta box (top-left) */
        .plan-meta {
            pointer-events: auto;
            align-self: start;
            color: var(--white);
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
        }

        .plan-meta .plan-type {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--white);
        }

        .plan-meta .plan-note {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 4px;
        }

        /* configuration pills (center) */
        .config-list {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            pointer-events: auto;
        }

        .config-pill {
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 8px 10px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.18s ease;
        }

        .config-pill:hover {
            transform: translateY(-3px);
        }

        .config-pill.active {
            background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
            color: var(--white);
            box-shadow: 0 8px 22px rgba(212, 175, 55, 0.18);
            border-color: transparent;
        }

        /* CTAs (bottom) */
        .plan-cta {
            display: flex;
            gap: 10px;
            justify-content: center;
            pointer-events: auto;
        }

        .plan-cta .btn {
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.4px;
        }

        .btn-primary {
           background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);


            color: var(--white);
            border: none;
            box-shadow: 0 8px 26px rgba(212, 175, 55, 0.18);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        /* plan-info under image - compact */
        .plan-info.compact {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            background: var(--white);
            padding: 12px 16px;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        .plan-info.compact h3 {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 700;
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
        }

        .plan-info .small-note {
            font-size: 0.82rem;
            color: var(--text-light);
            margin: 0;
        }

        /* --- Modal (placeholder for your form) --- */
        .fp-modal {
            position: fixed;
            inset: 0;
            display: none;
            /* toggled via JS */
            align-items: center;
            justify-content: center;
            z-index: 20000;
        }

        .fp-modal[aria-hidden="false"] {
            display: flex;
        }

        .fp-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(10, 8, 6, 0.55);
            backdrop-filter: blur(2px);
        }

        .fp-modal-panel {
            position: relative;
            width: 96%;
            max-width: 680px;
            margin: 0 20px;
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            z-index: 2;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
        }

        .fp-modal-close {
            position: absolute;
            right: 12px;
            top: 10px;
            border: none;
            background: transparent;
            font-size: 26px;
            color: var(--text-light);
            cursor: pointer;
        }

        .fp-modal-body {
            margin-top: 12px;
            color: var(--text-dark);
        }

        /* make everything compact on small screens */
        @media (max-width: 768px) {
            .floor-plans.single-plan {
                padding: 20px 0;
            }

            .plan-image {
                aspect-ratio: 4/3;
                border-radius: 12px;
            }

            .plan-image img {
                filter: blur(6px) brightness(0.95);
            }

            .config-pill {
                padding: 7px 9px;
                font-size: 0.86rem;
            }

            .plan-info.compact {
                padding: 10px 12px;
            }

            .fp-modal-panel {
                padding: 16px;
            }
        }

        /* === Mobile Sticky Bottom Bar === */
        .mobile-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 64px;
            background: var(--white);
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 9999;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-btn {
            flex: 1;
            height: 100%;
            border: none;
            background: transparent;
            color: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Call button (left) */
        .call-btn {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark) 100%);
        }

        /* Brochure button (right) */
        .brochure-btn {
        background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);

        }

        /* Button hover effect */
        .mobile-btn:hover {
            filter: brightness(1.08);
        }

        /* Icon styling */
        .mobile-btn .material-symbols-outlined {
            font-size: 20px;
            line-height: 0;
        }

        /* === Show only on mobile === */
        @media (max-width: 768px) {
            .mobile-bottom-bar {
                display: flex;
            }
        }

        /* Prevent modal overlap with bottom bar */
        .brochure-modal[aria-hidden="false"]~.mobile-bottom-bar {
            display: none;
        }

        /* Location */
        .location {
            background: var(--white);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .location-map {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .location-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .location-table {
            background: var(--cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: grid;
            grid-template-columns: 1fr 1fr;
            text-align: center;
            /* ✅ Added for center text alignment */
        }

        .location-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            /* ✅ Added for center alignment inside rows */
        }

        .location-row:hover {
            background: var(--white);
        }

        .location-row:nth-child(2n) {
            border-right: none;
        }

        .location-row:nth-last-child(-n+2) {
            border-bottom: none;
        }

        .location-row strong {
            color: var(--primary);
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
        }

        .location-row span {
            color: var(--text-light);
            font-weight: 700;
            font-size: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .location-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .location-map {
                height: 300px;
            }

            .location-table {
                grid-template-columns: 1fr;
                text-align: center;
                /* ✅ keep center on mobile */
            }

            .location-row {
                border-right: none;
                padding: 18px 20px;
                text-align: center;
                /* ✅ keep center on mobile */
            }

            .location-row:not(:last-child) {
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .location-row strong {
                font-size: 0.9rem;
            }

            .location-row span {
                font-size: 0.95rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .location-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .location-map {
                height: 300px;
            }

            /* 👇 Keep 2 in a row on mobile */
            .location-table {
                grid-template-columns: 1fr 1fr;
                text-align: center;
                /* ✅ */
            }

            .location-row {
                border-right: 1px solid rgba(0, 0, 0, 0.05);
                padding: 18px 20px;
                text-align: center;
                /* ✅ */
            }

            .location-row:nth-child(2n) {
                border-right: none;
            }

            .location-row:not(:nth-last-child(-n+2)) {
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .location-row strong {
                font-size: 0.9rem;
            }

            .location-row span {
                font-size: 0.95rem;
            }
        }

        .footer-link {
            color: #676767;
            /* inherits text color from parent */
            text-decoration: none;
            /* removes underline */
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #d4af37;
            /* optional: gold hover color to match theme */
        }

        /* === Gallery Section === */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* fills box, cropping if needed */
            transition: transform 0.5s ease;
            display: block;
        }

        /* Optional hover effect */
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Brochure Modal — premium styling inspired by screenshot */
        .brochure-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            padding: 18px;
        }

        .brochure-modal[aria-hidden="false"] {
            display: flex;
        }

        /* backdrop */
        .bm-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(10, 8, 6, 0.55);
            backdrop-filter: blur(3px);
        }

        /* panel */
        .bm-panel {
            position: relative;
            width: 100%;
            max-width: 520px;
            border-radius: 18px;
            background: #fff;
            padding: 22px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
            z-index: 2;
            box-sizing: border-box;
            transform: translateY(0);
            transition: transform .26s cubic-bezier(.2, .9, .2, 1), opacity .18s ease;
        }

        /* close button (top-right) */
        .bm-close {
            position: absolute;
            right: 14px;
            top: 14px;
            border: none;
            background: transparent;
            font-size: 22px;
            color: #6b5d4f;
            cursor: pointer;
        }

        /* badge pill (top center) */
        .bm-badge {
            display: inline-block;
            margin: -8px auto 8px;
            background: var(--secondary);
            /* deep warm red like screenshot */
            color: #fff;
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-align: center;
            display: block;
            width: fit-content;
        }

        /* header */
        .bm-head {
            text-align: center;
            margin-top: 4px;
            margin-bottom: 12px;
        }

        .bm-head h3 {
            margin: 6px 0 6px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: #6b3a33;
            /* warm brown for heading */
            font-weight: 700;
        }

        .bm-price {
            color: var(--text-light);
            font-size: 1rem;
            margin-top: 2px;
        }

        /* form */
        .bm-form {
            display: grid;
            gap: 12px;
            margin-top: 6px;
        }

        .bm-field {
            display: block;
        }

        .bm-label {
            display: block;
            font-size: 0.78rem;
            color: var(--text-light);
            margin-bottom: 6px;
            font-weight: 600;
        }

        /* inputs — large, rounded, premium */
        .bm-field input {
            width: 100%;
            padding: 14px 14px;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 1rem;
            box-sizing: border-box;
            outline: none;
            transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
            background: #fbfbfb;
        }

        .bm-field input:focus {
            border-color: var(--gold);
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
            transform: translateY(-2px);
        }

        /* primary submit — full width */
        .bm-actions {
            margin-top: 2px;
            display: block;
        }

        .bm-submit {
            width: 100%;
        background: linear-gradient(135deg, #6d8c3f 0%, #2b3a16 100%);


            border: none;
            color: #fff;
            padding: 14px 16px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 12px 36px rgba(212, 175, 55, 0.18);

            /* ✅ Center text properly */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .bm-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 46px rgba(212, 175, 55, 0.22);
        }

        /* small note */
        .bm-note {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 8px;
            text-align: center;
        }

        /* thanks state */
        .bm-thanks {
            text-align: center;
            padding: 14px 6px;
        }

        .bm-thanks h4 {
            margin: 8px 0;
            color: var(--primary);
            font-size: 1.05rem;
        }

        .bm-thanks p {
            color: var(--text-light);
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .bm-close-ok {
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
        }

        /* responsive — make compact on phones */
        @media (max-width: 520px) {
            .bm-panel {
                max-width: 92%;
                padding: 16px;
                border-radius: 14px;
            }

            .bm-head h3 {
                font-size: 1.35rem;
            }

            .bm-field input {
                padding: 12px;
                font-size: 0.98rem;
            }

            .bm-submit {
                padding: 12px;
                font-size: 0.98rem;
            }
        }

        .logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.1;
        }

        /* Make subtext inherit logo style */
        .subtext {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
            margin-top: 2px;
            transition: color 0.4s ease;
        }

        /* When scrolled, change color same as logo */
        .navbar.scrolled .subtext {
            color: var(--primary);
        }

        /* Responsive tweak */
        @media (max-width: 768px) {
            .subtext {
                font-size: 0.7rem;
                letter-spacing: 0.8px;
            }
        }
    