/* ==================== DESIGN SYSTEM - COLOR VARIABLES ==================== */
        :root {
            --primary: #2c5f2d;
            --primary-hover: #1f4620;
            --accent: #d4a574;
            --accent-light: #e8c7a0;
            --charcoal: #1a1a1a;
            --text: #333;
            --text-light: #666;
            --bg: #fafaf8;
            --white: #ffffff;
            --gray-light: #f5f5f5;
            --gray-border: #e8e8e8;
            --error: #c01530;
            --success: #2c5f2d;
            
            /* SPACING */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 40px;
            
            /* RADIUS */
            --radius-sm: 3px;
            --radius-md: 6px;
            
            /* TYPOGRAPHY */
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            --font-mono: 'Courier New', monospace;
            
            /* SHADOWS */
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
            
            /* TRANSITIONS */
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ==================== GLOBAL STYLES ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* ==================== TYPOGRAPHY ==================== */
        h1 { font-size: 52px; font-weight: 700; font-family: var(--font-serif); line-height: 1.15; letter-spacing: -0.5px; color: var(--charcoal); }
        h2 { font-size: 38px; font-weight: 700; font-family: var(--font-serif); line-height: 1.2; letter-spacing: -0.3px; color: var(--charcoal); }
        h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.2px; color: var(--charcoal); }
        h4 { font-size: 18px; font-weight: 600; color: var(--charcoal); }
        p { margin-bottom: var(--space-md); line-height: 1.7; }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        /* ==================== HEADER (STICKY NAVIGATION) ==================== */
        header {
            position: sticky;
            top: 0;
            background: var(--white);
            padding: 16px 40px;
            z-index: 100;
            border-bottom: 1px solid var(--gray-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow-sm);
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--charcoal);
            font-family: var(--font-serif);
        }

        nav {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        nav a {
            font-size: 13px;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ==================== STICKY FORM ON RIGHT SIDE - RESTORED ==================== */
        .sticky-form {
            position: fixed;
            right: 0;
            top: 60px;
            width: 320px;
            height: calc(100vh - 60px);
            background: var(--white);
            padding: 40px 24px;
            box-shadow: -2px 0 12px rgba(0,0,0,0.08);
            overflow-y: auto;
            z-index: 50;
            display: flex;
            flex-direction: column;
            border-radius: 8px 0 0 8px;
        }

        .sticky-form h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--charcoal);
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 2px rgba(212, 165, 116, 0.1);
        }

        .sticky-form > p {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.5;
        }

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

        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 11px 12px;
            border: 1px solid var(--gray-border);
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-family: inherit;
            transition: var(--transition);
            min-height: 44px;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            background: #fef9f5;
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
        }

        .phone-input-group {
            display: flex;
            gap: 6px;
        }

        .country-code-display {
            background: var(--gray-light);
            border: 1px solid var(--gray-border);
            padding: 11px 12px;
            border-radius: var(--radius-sm);
            min-height: 44px;
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--charcoal);
            min-width: 70px;
            text-align: center;
        }

        /* ==================== CHECKBOX ALIGNMENT FIX ==================== */
        .form-group.checkbox {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            align-items: flex-start;
        }

        .form-group.checkbox input {
            width: auto;
            margin-top: 3px;
            cursor: pointer;
            min-height: auto;
            padding: 0;
        }

        /* Make consent checkboxes slightly smaller */
        .form-group.checkbox input[type="checkbox"]{
            transform: scale(0.9);
            transform-origin: top left;
        }


        .form-group.checkbox label {
            margin-bottom: 0;
            font-size: 11px;
            line-height: 1.4;
            cursor: pointer;
            text-transform: none;
            font-weight: 400;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn:hover {
            background: var(--primary-hover);
            box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
            transform: translateY(-2px);
        }

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

        .secondary-btn {
            background: var(--accent);
            color: var(--charcoal);
            border: none;
            padding: 10px;
            margin-top: 6px;
            font-size: 12px;
        }

        .secondary-btn:hover {
            background: #c9944f;
        }

        .success-msg {
            background: var(--success);
            color: var(--white);
            padding: 12px;
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
            font-size: 12px;
            text-align: center;
            animation: slideIn 0.3s ease-out;
        }

        .error-msg {
            background: var(--error);
            color: var(--white);
            padding: 12px;
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
            font-size: 12px;
            text-align: center;
        }

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

        /* ==================== FIXED LEFT-SIDE CURVED BUTTONS ==================== */
        .fixed-buttons {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 80;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 20px 0;
        }

        .fixed-btn {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--charcoal);
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 11px;
            padding: 0 40px 0 10px;
            white-space: nowrap;
            min-width: 180px;
        }

        .fixed-btn:hover {
            background: #c9944f;
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }

        .fixed-btn span {
            margin-right: 8px;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .fixed-buttons {
                position: fixed;
                left: 0;
                bottom: 20px;
                top: auto;
                transform: none;
                flex-direction: row;
                gap: 10px;
                flex-wrap: wrap;
                width: 100%;
                justify-content: center;
                padding: 20px;
            }

            .fixed-btn {
                width: auto;
                padding: 12px 16px;
                border-radius: 50px;
                font-size: 10px;
                min-width: auto;
                height: auto;
            }

            .fixed-btn span {
                font-size: 14px;
                margin-right: 4px;
            }
        }

        /* ==================== MODAL OVERLAY ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 200;
            animation: fadeIn 0.3s ease-out;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ==================== MODAL FORM ==================== */
        .modal-form {
            background: var(--white);
            padding: 50px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: slideUp 0.3s ease-out;
            max-height: 90vh;
            overflow-y: auto;
        }

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

        .modal-form h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--charcoal);
        }

        .modal-form > p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--charcoal);
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

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

        .modal-form .form-group label {
            font-size: 12px;
        }

        .modal-form .form-group input,
        .modal-form .form-group select {
            padding: 12px;
            min-height: 44px;
        }

        .modal-submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 56px;
        }

        .modal-submit-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(44, 95, 45, 0.2);
        }

        /* ==================== MAIN CONTENT ==================== */
        main {
            margin-right: 320px;
        }

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

        /* ==================== HERO SECTION ==================== */
        .hero {
            height: 580px;
            background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%), url('assets/hero.jpg') center/cover;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="15" fill="%23d4a574" opacity="0.05"/><circle cx="90" cy="80" r="20" fill="%23d4a574" opacity="0.03"/></svg>');
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--white);
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 12px;
            color: #ddd;
            line-height: 1.6;
        }

        .hero-subtext {
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            padding: 13px 32px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 13px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 56px;
            cursor: pointer;
        }

        .hero-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(44, 95, 45, 0.3);
        }

        /* ==================== VALUE PROPS ==================== */
        .value-props {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            padding: 60px 40px;
            background: var(--white);
            margin-bottom: 0;
        }

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

        .value-item h4 {
            font-size: 28px;
            color: var(--accent);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .value-item p {
            font-size: 13px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        /* ==================== WHY CHOOSE SECTION ==================== */
        .why-section {
            padding: 80px 40px;
            background: var(--bg);
        }

        .why-section h2 {
            font-size: 38px;
            margin-bottom: 50px;
            color: var(--charcoal);
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

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

        .why-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }

        .why-card:hover {
            box-shadow: var(--shadow-md);
        }

        .why-card h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: var(--charcoal);
            font-weight: 700;
        }

        .why-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .feature-list {
            list-style: none;
            font-size: 13px;
            color: var(--text);
        }

        .feature-list li {
            padding-left: 20px;
            margin-bottom: 8px;
            position: relative;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        /* ==================== GALLERY SECTION ==================== */
        .gallery-section {
            padding: 80px 40px;
            background: var(--white);
        }

        .gallery-section h2 {
            font-size: 38px;
            text-align: center;
            margin-bottom: 50px;
            color: var(--charcoal);
            font-weight: 700;
        }

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

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 250px;
        }

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

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

        /* ==================== PRICING SECTION ==================== */
        .pricing {
            padding: 80px 40px;
            background: var(--bg);
        }

        .pricing h2 {
            font-size: 38px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--charcoal);
            font-weight: 700;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .price-card {
            background: var(--white);
            border: 1px solid var(--gray-border);
            padding: 40px;
            text-align: center;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }

        .price-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }

        .price-card.featured {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .price-card .badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--accent);
            color: var(--charcoal);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .price-card h3 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--charcoal);
            font-weight: 700;
        }

        .price-specs {
            background: var(--bg);
            padding: 16px;
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text);
        }

        .price-specs p {
            margin-bottom: 6px;
        }

        .price-value {
            font-size: 26px;
            color: var(--accent);
            font-weight: 700;
            margin: 20px 0;
            font-family: var(--font-mono);
        }

        .price-benefit {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.6;
        }

        .price-card .price-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px;
        }

        .price-card .price-btn:hover {
            background: var(--primary-hover);
        }

        /* ==================== LOCATION SECTION ==================== */
        .location {
            padding: 80px 40px;
            background: var(--white);
        }

        .location h2 {
            font-size: 38px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--charcoal);
            font-weight: 700;
        }

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

        .location-map {
            width: 100%;
            height: 380px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            background: var(--gray-light);
        }

        .location-info h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--charcoal);
            font-weight: 700;
        }

        .location-info p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.8;
        }

        .connectivity {
            background: var(--bg);
            padding: 24px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            border-left: 3px solid var(--accent);
        }

        .connectivity h4 {
            font-size: 13px;
            color: var(--charcoal);
            margin-bottom: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .connectivity-item {
            padding: 8px 0;
            font-size: 13px;
            color: var(--text);
            padding-left: 24px;
            position: relative;
            border-bottom: 1px solid var(--gray-border);
        }

        .connectivity-item:last-child {
            border-bottom: none;
        }

        .connectivity-item::before {
            content: '◆';
            position: absolute;
            left: 6px;
            color: var(--accent);
            font-size: 10px;
        }

        .location-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 56px;
        }

        .location-btn:hover {
            background: var(--primary-hover);
        }

        /* ==================== AMENITIES SECTION ==================== */
        .amenities {
            padding: 80px 40px;
            background: var(--bg);
        }

        .amenities h2 {
            font-size: 38px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--charcoal);
            font-weight: 700;
        }

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

        .amenity-box {
            background: var(--white);
            padding: 0;
            border-radius: var(--radius-sm);
            text-align: center;
            border: 1px solid var(--gray-border);
            transition: var(--transition);
            overflow: hidden;
        }

        .amenity-box:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .amenity-image {
            width: 100%;
            height: 200px;
            background: var(--gray-light);
            overflow: hidden;
            position: relative;
        }

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

        .amenity-content {
            padding: 30px;
        }

        .amenity-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .amenity-box h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--charcoal);
            font-weight: 700;
        }

        .amenity-box p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 60px 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--accent);
            color: var(--charcoal);
            text-decoration: none;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-btn:hover {
            background: #e8c7a0;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }

        /* ==================== TRUST SECTION ==================== */
        .trust {
            padding: 60px 40px;
            background: linear-gradient(135deg, #f5f5f5 0%, var(--bg) 100%);
            text-align: center;
            border-top: 1px solid var(--gray-border);
        }

        .trust p {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text);
            font-weight: 600;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--charcoal);
            color: #bbb;
            padding: 40px;
            padding-left: 50px;
            text-align: left;
            font-size: 12px;
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }

        footer p {
            margin-bottom: 8px;
        }

        /* ==================== THANK YOU PAGE STYLES ==================== */
        .thankyou-container {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--accent) 0%, #e8c7a0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
        }

        .thankyou-content {
            max-width: 600px;
            background: rgba(255, 255, 255, 0.95);
            padding: 60px 40px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .thankyou-content h1 {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .thankyou-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .thankyou-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounce 0.6s ease-out;
        }

        @keyframes bounce {
            0% { transform: translateY(-20px); opacity: 0; }
            50% { transform: translateY(10px); }
            100% { transform: translateY(0); opacity: 1; }
        }

        .thankyou-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 40px 0;
        }

        .thankyou-image {
            height: 150px;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.1));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 60px;
        }

        .thankyou-btn {
            display: inline-block;
            padding: 14px 40px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 20px;
        }

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

        .thankyou-contact {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--gray-border);
            font-size: 12px;
            color: var(--text-light);
        }

        .thankyou-contact p {
            margin-bottom: 8px;
        }

        .thankyou-contact strong {
            color: var(--primary);
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1024px) {
            main {
                margin-right: 0;
            }

            .sticky-form {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                top: auto;
                width: 100%;
                height: auto;
                max-height: 450px;
                border-radius: 16px 16px 0 0;
                padding-top: 24px;
                overflow-y: auto;
                box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
            }

            .location-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: var(--white);
                border-bottom: 1px solid var(--gray-border);
                box-shadow: var(--shadow-md);
                padding: 8px 20px;
            }

            nav.open {
                display: flex;
            }

            nav a {
                padding: 12px 0;
                border-top: 1px solid var(--gray-border);
                width: 100%;
            }

            nav a:first-child {
                border-top: none;
            }

            .hamburger {
                display: flex;
            }
.price-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 14px 20px;
            }

            .logo {
                font-size: 16px;
            }

            .hero {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .container {
                padding: 0 20px;
            }

            .value-props,
            .why-section,
            .pricing,
            .location,
            .amenities,
            .gallery-section,
            .cta-section {
                padding: 50px 20px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .why-section h2,
            .pricing h2,
            .location h2,
            .amenities h2,
            .gallery-section h2 {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .location-map {
                height: 280px;
            }

            footer {
                padding: 30px 20px;
                padding-left: 30px;
            }

            h1 { font-size: 36px; }
            h2 { font-size: 28px; }
            h3 { font-size: 20px; }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
            }

            .modal-form {
                width: 95%;
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 24px;
            }

            .value-props {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 40px 20px;
            }

            .hero-cta {
                padding: 12px 24px;
                min-height: 48px;
            }

            nav {
                gap: 20px;
            }

            footer {
                padding: 25px 20px;
                padding-left: 25px;
            }

            .phone-input-group {
                flex-direction: column;
            }

            .country-code-display {
                min-width: 100%;
            }

            .modal-form {
                padding: 24px;
                width: 100%;
            }

            .modal-form h2 {
                font-size: 22px;
            }
        }

        .hidden {
            display: none;
        }

/* Sticky form close/reopen (mobile only) */
.sticky-close {
  display: none; /* hidden on desktop */
}

@media (max-width: 1024px) {
  .sticky-close{
    display: inline-flex;
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background: #f2f2f2;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
  }

  .sticky-form.is-hidden {
    display: none;
  }

  .sticky-reopen {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
  }

  .sticky-reopen.is-visible {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}
