 :root {
            --gold: #C9A962;
            --gold-light: #E8D5A3;
            --gold-dark: #9A7B3C;
            --champagne: #F7F3E9;
            --charcoal: #1A1A1A;
            --charcoal-light: #2D2D2D;
            --slate: #4A4A4A;
            --cream: #FDFBF7;
            --white: #FFFFFF;
            --shadow-soft: 0 4px 30px rgba(0,0,0,0.08);
            --shadow-luxury: 0 25px 80px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--champagne);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 4px;
        }

        /* Typography */
        .serif {
            font-family: 'Playfair Display', serif;
        }

        .serif-light {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Header - Compact */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(253,251,247,0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 40px;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--charcoal);
            letter-spacing: 1px;
        }

        .logo-text span {
            display: block;
            font-size: 0.6rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .nav {
            display: flex;
            gap: 35px;
        }

        .nav a {
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--slate);
            text-decoration: none;
            position: relative;
            transition: var(--transition-fast);
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: var(--transition-fast);
        }

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

        .nav a:hover::after {
            width: 100%;
        }

        .header-cta {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 28px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition-fast);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--charcoal);
        }

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--charcoal);
        }

        /* Hero Section - Compact with Form */
        .hero {
            height: 85vh;
            position: relative;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
            padding: 80px 50px 60px;
            background: var(--charcoal);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                rgba(26,26,26,0.3) 0%, 
                rgba(26,26,26,0.7) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
        }

        /* Hero Form */
        .hero-form {
            position: relative;
            z-index: 10;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 40px 35px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--gold);
        }

        .form-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .form-header p {
            font-size: 0.75rem;
            color: var(--gold-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

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

        .form-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--slate);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid rgba(0,0,0,0.15);
            background: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--charcoal);
            transition: var(--transition-fast);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
        }

        .form-input::placeholder {
            color: rgba(0,0,0,0.3);
        }

        .form-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border: none;
            color: var(--charcoal);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-fast);
            margin-top: 10px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201,169,98,0.4);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-note {
            margin-top: 20px;
            font-size: 0.65rem;
            color: var(--slate);
            line-height: 1.6;
            text-align: center;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, rgba(76,175,80,0.1) 0%, rgba(76,175,80,0.05) 100%);
            border: 2px solid #4CAF50;
        }

        .form-success.show {
            display: block;
        }

        .form-success svg {
            width: 60px;
            height: 60px;
            fill: #4CAF50;
            margin-bottom: 15px;
        }

        .form-success h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--charcoal);
            margin-bottom: 10px;
        }

        .form-success p {
            font-size: 0.85rem;
            color: var(--slate);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: var(--charcoal);
            padding: 8px 20px;
            font-size: 0.90 rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--charcoal);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.5; }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 500;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 15px;
            letter-spacing: -2px;
        }

        .hero-title span {
            font-style: italic;
            color: var(--gold-light);
        }

        .hero-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .hero-location svg {
            width: 16px;
            height: 16px;
            fill: var(--gold);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .stat-item {
            text-align: left;
        }

        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 500;
            color: var(--gold-light);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-top: 6px;
        }

        /* Section Styles - Compact */
        section {
            padding: 70px 50px;
        }

        .section-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-label::before {
            content: '';
            width: 35px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 500;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 25px;
            max-width: 600px;
        }

        .section-title span {
            font-style: italic;
            color: var(--gold-dark);
        }

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

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            margin-top: 40px;
            align-items: center;
        }

        .overview-image {
            position: relative;
            height: 400px;
        }

        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overview-image::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
            border: 1px solid var(--gold);
            z-index: -1;
        }

        .overview-content {
            padding: 20px 0;
        }

        .overview-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--slate);
            margin-bottom: 30px;
        }

        .key-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: var(--white);
            border-left: 3px solid var(--gold);
            transition: var(--transition-fast);
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-soft);
        }

        .feature-icon {
            width: 35px;
            height: 35px;
            background: var(--champagne);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .feature-text {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--charcoal);
            line-height: 1.4;
        }

        /* Pricing Section - Table Format */
        .pricing {
            background: var(--charcoal);
            color: var(--white);
        }

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

        .pricing-table-wrapper {
            margin-top: 40px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .pricing-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.1);
            min-width: 600px;
        }

        .pricing-table thead {
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
        }

        .pricing-table th {
            padding: 18px 20px;
            text-align: left;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--charcoal);
            border-bottom: 2px solid var(--gold-dark);
        }

        .pricing-table tbody tr {
            transition: var(--transition-fast);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .pricing-table tbody tr:hover {
            background: rgba(255,255,255,0.05);
        }

        .pricing-table tbody tr.featured {
            background: rgba(201,169,98,0.08);
            position: relative;
        }

        .pricing-table tbody tr.featured::before {
            content: 'POPULAR';
            position: absolute;
            left: -1px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold);
            color: var(--charcoal);
            padding: 4px 10px;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .pricing-table td {
            padding: 20px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
        }

        .pricing-table td:first-child {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
        }

        .pricing-table .price-cell {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gold-light);
        }

        .pricing-table .action-cell {
            text-align: right;
        }

        .table-btn {
            display: inline-block;
            padding: 10px 20px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition-fast);
            background: transparent;
        }

        .table-btn:hover {
            background: var(--gold);
            color: var(--charcoal);
            transform: translateX(-3px);
        }

        .pricing-note {
            margin-top: 20px;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
            font-style: italic;
        }


        /* Amenities Section - Compact Grid */
        .amenities {
            background: var(--champagne);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-top: 40px;
        }

        .amenity-card {
            position: relative;
            height: 250px;
            overflow: hidden;
            cursor: pointer;
        }

        .amenity-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .amenity-card:hover img {
            transform: scale(1.1);
        }

        .amenity-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26,26,26,0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: var(--transition-smooth);
        }

        .amenity-card:hover .amenity-overlay {
            background: linear-gradient(180deg, rgba(201,169,98,0.2) 0%, rgba(26,26,26,0.95) 100%);
        }

        .amenity-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .amenity-desc {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition-smooth);
        }

        .amenity-card:hover .amenity-desc {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floor Plan Section */
        .floor-plan {
            background: var(--champagne);
        }

        .floor-plan-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .master-plan {
            position: relative;
            height: 600px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-luxury);
        }

        .master-plan img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .master-plan:hover img {
            transform: scale(1.05);
        }

        .master-plan-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold);
            color: var(--charcoal);
            padding: 10px 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .floor-plans-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .floor-plan-item {
            position: relative;
            height: 285px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-fast);
        }

        .floor-plan-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-luxury);
        }

        .floor-plan-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .floor-plan-item:hover img {
            transform: scale(1.08);
        }

        .floor-plan-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26,26,26,0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

        .floor-plan-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 5px;
        }

        .floor-plan-info p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            letter-spacing: 1px;
        }

        /* Gallery & Location Combined Section */
        .combined-section {
            background: var(--cream);
        }

        .combined-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-column {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item.tall {
            grid-row: span 2;
            aspect-ratio: unset;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .location-column {
            background: var(--charcoal);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
        }

        .location-column .section-label {
            color: var(--gold);
        }

        .location-column .section-title {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .location-list {
            flex: 1;
        }

        .location-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition-fast);
        }

        .location-item:hover {
            padding-left: 8px;
        }

        .location-icon {
            width: 40px;
            height: 40px;
            background: rgba(201,169,98,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .location-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 3px;
        }

        .location-info p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
        }

        .location-distance {
            margin-left: auto;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--gold-light);
        }

        /* Developer Section - Compact */
        .developer {
            background: var(--charcoal);
            color: var(--white);
            padding: 60px 50px;
        }

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

        .developer-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 30px;
        }

        .developer-logo {
            text-align: center;
        }

        .developer-logo img {
            max-width: 180px;
            margin-bottom: 25px;
        }

        .developer-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .developer-tagline {
            font-size: 0.8rem;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .developer-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.8);
        }

        /* Footer - Compact */
        .footer {
            background: var(--charcoal-light);
            padding: 40px 50px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .rera-info {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .disclaimer {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.3);
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Mobile Bottom Bar */
        .mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--charcoal);
            padding: 12px;
            z-index: 1000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        }

        .mobile-bar-inner {
            display: flex;
            gap: 10px;
        }

        .mobile-bar a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            text-decoration: none;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition-fast);
        }

        .mobile-bar .btn-primary {
            background: var(--gold);
            color: var(--charcoal);
        }

        .mobile-bar .btn-whatsapp {
            background: #25D366;
            color: var(--white);
        }

        /* Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            width: 22px;
            height: 2px;
            background: var(--charcoal);
            transition: var(--transition-fast);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.7s ease forwards;
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .amenities-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .header-cta {
                display: none;
            }
            .mobile-bar {
                display: block;
            }
            .footer {
                padding-bottom: 80px;
            }
            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .combined-grid {
                grid-template-columns: 1fr;
            }
            .location-column {
                padding: 50px;
            }
            .pricing-table th,
            .pricing-table td {
                padding: 15px;
                font-size: 0.8rem;
            }
            .hero {
                grid-template-columns: 1fr;
                height: auto;
                padding: 80px 40px 60px;
            }
            .hero-form {
                margin-top: 40px;
            }
            .floor-plan-grid {
                grid-template-columns: 1fr;
            }
            .master-plan {
                height: 500px;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 60px 30px;
            }
            .header {
                padding: 12px 30px;
            }
            .nav {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .hero {
                padding: 70px 30px 50px;
            }
            .hero-title {
                font-size: 3rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .overview-grid {
                grid-template-columns: 1fr;
            }
            .developer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .gallery-column {
                grid-template-columns: 1fr;
            }
            .pricing-table {
                font-size: 0.75rem;
            }
            .pricing-table th,
            .pricing-table td {
                padding: 12px;
            }
            .pricing-table tbody tr.featured::before {
                font-size: 0.55rem;
                padding: 3px 8px;
            }
            .hero-form {
                padding: 35px 30px;
            }
            .form-header h3 {
                font-size: 1.5rem;
            }
            .master-plan {
                height: 400px;
            }
            .floor-plan-item {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 50px 20px;
            }
            .hero {
                padding: 100px 20px 40px;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-stats {
                gap: 25px;
                flex-wrap: wrap;
            }
            .stat-value {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            .key-features {
                grid-template-columns: 1fr;
            }
            .pricing-table-wrapper {
                margin: 20px -20px 0;
                padding: 0 20px;
            }
            .pricing-table th,
            .pricing-table td {
                padding: 10px;
                font-size: 0.7rem;
            }
            .pricing-table td:first-child {
                font-size: 0.9rem;
            }
            .pricing-table .price-cell {
                font-size: 1rem;
            }
            .table-btn {
                padding: 8px 15px;
                font-size: 0.65rem;
            }
            .pricing-table tbody tr.featured::before {
                display: none;
            }
            .hero-form {
                padding: 30px 25px;
            }
            .form-header h3 {
                font-size: 1.3rem;
            }
            .master-plan,
            .floor-plan-item {
                height: 300px;
            }
        }
        /* =========================
   HERO FORM – REVISED
   ========================= */

.hero-form {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 28px 26px;
    max-width: 360px;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);

    margin-right: 0;
    margin-left: 60px; /* adjust value */
}



/* ---------- Header ---------- */

.form-header {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--gold);
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.2;
}

.form-header p {
    font-size: 0.7rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ---------- Form Fields ---------- */

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

/* ---------- Submit Button ---------- */

.form-submit {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(201, 169, 98, 0.35);
}

.form-submit:active {
    transform: translateY(0);
}

/* ---------- Note ---------- */

.form-note {
    margin-top: 14px;
    font-size: 0.6rem;
    color: var(--slate);
    line-height: 1.6;
    text-align: center;
}

/* ---------- Success State ---------- */

.form-success {
    display: none;
    text-align: center;
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.12) 0%,
        rgba(76, 175, 80, 0.06) 100%
    );
    border: 2px solid #4CAF50;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 52px;
    height: 52px;
    fill: #4CAF50;
    margin-bottom: 14px;
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.8rem;
    color: var(--slate);
}
/* Hide hero form on mobile devices */
@media (max-width: 767px) {
    .hero-form {
        display: none !important;
    }
}

  /* Amenities List Section - Compact */
.amenities-list {
    background: var(--champagne);
    padding: 50px;
}

.amenities-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.amenities-column {
    background: var(--white);
    padding: 30px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-soft);
}

.amenities-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--champagne);
}

.amenities-column-title svg {
    fill: var(--gold);
}

.amenities-compact-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.amenities-compact-list li {
    font-size: 0.85rem;
    color: var(--slate);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.amenities-compact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .amenities-list {
        padding: 50px 30px;
    }
    
    .amenities-compact-grid {
        gap: 30px;
    }
    
    .amenities-compact-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .amenities-list {
        padding: 40px 20px;
    }
    
    .amenities-compact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .amenities-column {
        padding: 25px;
    }
    
    .amenities-column-title {
        font-size: 1.1rem;
    }
    
    .amenities-compact-list li {
        font-size: 0.8rem;
    }
}
  /* Location Section with Tabs */
.location-section {
    background: var(--cream);
    padding: 60px 50px;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    margin-top: 40px;
}

/* Tabs Wrapper */
.location-tabs-wrapper {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.location-tabs {
    display: flex;
    background: var(--champagne);
    border-bottom: 2px solid var(--gold);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 15px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate);
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-btn svg {
    fill: var(--slate);
    transition: var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(201,169,98,0.1);
    color: var(--gold-dark);
}

.tab-btn:hover svg {
    fill: var(--gold-dark);
}

.tab-btn.active {
    background: var(--white);
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-btn.active svg {
    fill: var(--gold);
}

/* Tab Content */
.location-content {
    padding: 30px;
    min-height: 400px;
    max-height: 450px;
    overflow-y: auto;
}

.location-content::-webkit-scrollbar {
    width: 6px;
}

.location-content::-webkit-scrollbar-track {
    background: var(--champagne);
}

.location-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Location List */
.location-list-compact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-list-compact li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--champagne);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.location-list-compact li:hover {
    background: rgba(201,169,98,0.15);
    border-left-color: var(--gold);
    padding-left: 22px;
}

.location-name {
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
}

.location-distance {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

/* Map Wrapper */
.location-map-wrapper {
    position: relative;
    height: 500px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-luxury);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    display: block;
}

.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.map-badge svg {
    fill: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map-wrapper {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 992px) {
    .location-section {
        padding: 50px 30px;
    }
    
    .location-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .tab-btn {
        min-width: 120px;
        padding: 15px 12px;
        font-size: 0.7rem;
    }
    
    .location-content {
        padding: 25px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 40px 20px;
    }
    
    .tab-btn {
        min-width: 110px;
        padding: 12px 10px;
        font-size: 0.65rem;
        gap: 6px;
    }
    
    .tab-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .location-content {
        padding: 20px;
        max-height: 350px;
    }
    
    .location-list-compact li {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .location-name {
        font-size: 0.8rem;
    }
    
    .location-distance {
        font-size: 0.85rem;
    }
    
    .location-map-wrapper {
        height: 350px;
    }
    
    .map-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}
   /* CTA Banner - Thin & Impactful */
.cta-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    padding: 35px 50px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L30 60M0 30L60 30" stroke="rgba(201,169,98,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn svg {
    transition: var(--transition-fast);
}

.cta-btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,169,98,0.4);
}

.cta-btn-primary:hover svg {
    transform: translateY(3px);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.cta-btn-secondary:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.cta-btn-secondary:hover svg {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .cta-banner {
        padding: 30px;
    }
    
    .cta-content {
        gap: 30px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 25px 20px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
    }
    
    .cta-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        padding: 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 20px 15px;
    }
    
    .cta-title {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        gap: 10px;
    }
    
    .cta-btn {
        padding: 14px;
        font-size: 0.7rem;
        gap: 8px;
    }
    
    .cta-btn svg {
        width: 16px;
        height: 16px;
    }
}
.footer-credit {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
    color: grey;

}
.footer-credit a {
    color: grey;
    text-decoration: none;
    font-weight: 600;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.popup-form-container {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.popup-overlay.active .popup-form-container {
    transform: scale(1) translateY(0);
}

/* Gold accent border */
.popup-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--champagne);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

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

.popup-close svg {
    fill: var(--charcoal);
}

/* Popup Header */
.popup-header {
    text-align: center;
    padding: 35px 30px 25px;
    background: linear-gradient(180deg, var(--champagne) 0%, var(--white) 100%);
}

.popup-logo {
    height: 45px;
    margin-bottom: 15px;
    object-fit: contain;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.2;
}

.popup-subtitle {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Popup Form */
.popup-form {
    padding: 30px;
}

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

.popup-input {
    width: 100%;
    padding: 16px 18px;
    background: var(--champagne);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: var(--transition-fast);
    outline: none;
}

.popup-input::placeholder {
    color: var(--slate);
    opacity: 0.7;
}

.popup-input:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201,169,98,0.15);
}

.popup-input:valid {
    border-color: rgba(201,169,98,0.3);
}

/* Submit Button */
.popup-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border: none;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,98,0.4);
}

.popup-submit:active {
    transform: translateY(0);
}

.popup-submit svg {
    transition: var(--transition-fast);
}

.popup-submit:hover svg {
    transform: translateX(5px);
}

/* Disclaimer */
.popup-disclaimer {
    font-size: 0.7rem;
    color: var(--slate);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Popup Features */
.popup-features {
    display: flex;
    justify-content: space-around;
    padding: 20px 30px 25px;
    background: var(--champagne);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate);
}

.popup-feature svg {
    fill: var(--gold);
}

/* Success State */
.popup-form.success {
    display: none;
}

.popup-success-message {
    display: none;
    text-align: center;
    padding: 40px 30px;
}

.popup-success-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.popup-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-success-icon svg {
    fill: var(--white);
}

.popup-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.popup-success-text {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
    }
    
    .popup-form-container {
        max-width: 100%;
    }
    
    .popup-header {
        padding: 30px 25px 20px;
    }
    
    .popup-logo {
        height: 40px;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .popup-form {
        padding: 25px;
    }
    
    .popup-input {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .popup-submit {
        padding: 16px;
        font-size: 0.8rem;
    }
    
    .popup-features {
        padding: 18px 25px 22px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .popup-feature {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .popup-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    .popup-close svg {
        width: 20px;
        height: 20px;
    }
    
    .popup-header {
        padding: 25px 20px 18px;
    }
    
    .popup-logo {
        height: 35px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-form {
        padding: 20px;
    }
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}
@media (max-width: 768px) {

    .pricing-table-wrapper {
        overflow-x: hidden;
    }

    .pricing-table {
        min-width: 100%;
        width: 100%;
        font-size: 0.7rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 0.65rem;
        word-break: break-word;
        white-space: normal;
    }

    .pricing-table td:first-child {
        font-size: 0.85rem;
    }

    .pricing-table .price-cell {
        font-size: 0.9rem;
    }

    .pricing-table thead th {
        letter-spacing: 1px;
        font-size: 0.6rem;
    }

    .pricing-table tbody tr.featured::before {
        top: 10px;
        transform: none;
        font-size: 0.55rem;
        padding: 3px 6px;
    }

    .pricing-table .action-cell {
        text-align: left;
    }

    .table-btn {
        padding: 8px 12px;
        font-size: 0.6rem;
    }

    .pricing-note {
        font-size: 0.6rem;
        text-align: center;
    }
}
