 
        :root {
            --primary-color: #1a472a;
            --secondary-color: #2d5f3f;
            --accent-color: #c9a55d;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: var(--dark-text);
        }

        /* Top Banner */
        .top-banner {
            background: linear-gradient(135deg, var(--accent-color) 0%, #d4af6a 100%);
            color: white;
            padding: 12px 0;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .top-banner i {
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(26, 71, 42, 0.85)),
                        url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600') center/cover;
            min-height: 95vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .hero-location {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .price-tag {
            background: var(--accent-color);
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .cta-button {
            background-color: var(--accent-color);
            color: white;
            padding: 18px 45px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            margin-right: 15px;
            margin-bottom: 15px;
        }

        .cta-button:hover {
            background-color: #b8944d;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }

        .cta-button-secondary {
            background-color: transparent;
            border: 2px solid white;
        }

        .cta-button-secondary:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Quick Info Cards */
        .quick-info {
            background: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .info-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
        }

        .info-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .info-card h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .info-card p {
            margin: 0;
            opacity: 0.9;
        }

        /* Project Overview */
        .overview-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 1.2rem;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .overview-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-color);
        }

        .overview-item h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .overview-item p {
            color: #555;
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: white;
        }

        .pricing-card {
            background: linear-gradient(to bottom, #fff 0%, var(--light-bg) 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .pricing-card h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        .pricing-card .size {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 15px;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .pricing-card .btn-book {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pricing-card .btn-book:hover {
            background: var(--secondary-color);
            transform: scale(1.05);
        }

        /* Amenities Section */
        .amenities-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 10%);
            color: white;
        }

        .amenity-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .amenity-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(10px);
        }

        .amenity-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 15px;
            min-width: 30px;
        }

        /* Location Section */
        .location-section {
            padding: 80px 0;
            background: white;
        }

        .location-category {
            margin-bottom: 50px;
        }

        .location-category h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .location-category h3 i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 2rem;
        }

        .location-item {
            background: var(--light-bg);
            padding: 20px 25px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .location-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateX(10px);
        }

        .location-item .distance {
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Lead Form Section */
        .form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
        }

        .form-container {
            max-width: 650px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            border: 3px solid var(--accent-color);
        }

        .form-container h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
            font-weight: 700;
            font-size: 2.2rem;
        }

        .form-container .form-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 35px;
            font-size: 1.1rem;
        }

        .form-control {
            padding: 15px 20px;
            border-radius: 10px;
            border: 2px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(201, 165, 93, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--accent-color) 0%, #d4af6a 100%);
            color: white;
            padding: 18px;
            width: 100%;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .submit-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 30px;
        }

        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .floating-cta button {
            background: linear-gradient(135deg, var(--accent-color) 0%, #d4af6a 100%);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-cta button:hover {
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .price-tag {
                font-size: 1.5rem;
                padding: 12px 25px;
            }

            .form-container {
                padding: 30px 20px;
            }

            .floating-cta {
                bottom: 10px;
                right: 10px;
            }

            .floating-cta button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        .highlight-box {
            background: var(--accent-color);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 600;
        }
 