        :root {
            --forest: #004225;
            --cream: #fec24b;
            --beige: #f1f0e5;
            --gold: #ee694e;
            --white: #c54f4f;
            --black: #111111;
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--beige); 
            color: var(--forest);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .lovers-quarrel { font-family: 'Lovers Quarrel', cursive; font-size: 3.5rem; }
        .cursor-pointer { cursor: pointer; }

        /* --- MINI HEADER --- */
        .mini-header {
            background: var(--black);
            color: var(--white);
            padding: 10px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            z-index: 1001;
            position: relative;
        }
        .mini-header a { color: white; text-decoration: none; margin-left: 15px; transition: 0.3s; }
        .mini-header a:hover { color: var(--gold); }
        .auth-btn-top { border: 1px solid var(--white); padding: 4px 12px; border-radius: 4px; }
        .auth-btn-top:hover { border-color: var(--gold); color: var(--gold); }

        /* --- MAIN HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .logo { font-size: 2.2rem; font-weight: 700; color: var(--forest); text-decoration: none; letter-spacing: -1px; }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--forest); 
            font-weight: 600; 
            font-size: 0.9rem; 
            text-transform: uppercase;
            position: relative;
            cursor: pointer;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: var(--gold); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        /* --- HERO --- */
        .hero {
            height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 8%;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: url('https://i.pinimg.com/736x/32/cd/82/32cd82fd539a01842a6fce1be7077513.jpg') center/cover;
            animation: slowZoom 20s infinite alternate;
            z-index: -1;
        }
        .hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

        .booking-card {
            background: var(--cream);
            padding: 40px;
            border-radius: 20px;
            width: 450px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            animation: slideInLeft 1s ease-out;
            z-index: 10;
        }
        @keyframes slideInLeft { from { transform: translateX(-100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

        .hero-text {
            margin-left: auto;
            color: var(--beige);
            text-align: right;
            max-width: 600px;
            animation: fadeUp 1s ease-out 0.5s both;
        }
        @keyframes fadeUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        /* --- FORM ELEMENTS --- */
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--forest); }
        .form-group input, .form-group select {
            width: 100%; padding: 12px; border: 1px solid rgba(0,66,37,0.2);
            border-radius: 8px; background: rgba(255,255,255,0.5); font-family: inherit;
        }
        .btn-gold {
            background: var(--gold); color: var(--black); border: none; padding: 15px 30px;
            border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s;
            width: 100%; text-transform: uppercase; letter-spacing: 1px;
        }
        .btn-gold:hover { background: #e0a34d; transform: translateY(-2px); }

        /* --- SECTIONS --- */
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 5rem; line-height: 1; margin-bottom: 10px; }

        /* Hot Deals Marquee */
        .deals-container { overflow: hidden; position: relative; padding: 20px 0; }
        .deals-track { display: flex; gap: 30px; animation: marquee 40s linear infinite; width: max-content; }
        .deals-track:hover { animation-play-state: paused; }
        @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        .card {
            width: 350px; height: 450px; border-radius: 20px; overflow: hidden;
            position: relative; cursor: pointer; flex-shrink: 0;
        }
        .card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .card:hover img { transform: scale(1.1); }
        .card-overlay {
            position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8));
            display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: white;
        }
        .price-badge {
            position: absolute; top: 20px; right: 20px; background: var(--gold);
            color: black; padding: 5px 15px; border-radius: 20px; font-weight: 800;
        }

        /* Hotels Grid & Filters */
        .hotels-layout { display: grid; grid-template-columns: 280px 1fr; gap: 50px; }
        .filter-sidebar { background: var(--white); padding: 30px; border-radius: 20px; height: fit-content; }
        .hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

        /* Gallery */
        .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .gallery-item { height: 300px; border-radius: 10px; overflow: hidden; position: relative; }
        .gallery-item:nth-child(2), .gallery-item:nth-child(5) { grid-column: span 2; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .gallery-hover {
            position: absolute; inset: 0; background: rgba(0,66,37,0.7);
            opacity: 0; display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 700; transition: 0.3s;
        }
        .gallery-item:hover .gallery-hover { opacity: 1; }

        /* Testimonials */
        .testimonial-sec { background: var(--forest); color: var(--white); text-align: center; }
        .testimonial-quote { max-width: 800px; margin: 0 auto; font-size: 3rem; }

        /* Newsletter */
        .newsletter { background: var(--gold); padding: 80px 8%; text-align: center; border-radius: 40px; margin: 0 8%; }
        .newsletter input { padding: 15px 25px; border-radius: 30px 0 0 30px; border: none; width: 300px; }
        .newsletter button { padding: 15px 30px; border-radius: 0 30px 30px 0; border: none; background: var(--forest); color: white; cursor: pointer; font-weight: 700; }

        /* Footer */
        footer { background: var(--forest); color: var(--white); padding: 80px 8% 40px; margin-top: 100px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
        .footer-col h4 { margin-bottom: 25px; color: var(--gold); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--gold); padding-left: 5px; }
        .footer-divider { height: 1px; background: var(--gold); opacity: 0.3; margin: 50px 0; }

        /* Modals */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 3000;
            display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal.active { display: flex; }
        .modal-content { 
            background: var(--white); border-radius: 20px; max-width: 900px; width: 100%;
            display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative;
        }
        .close-modal { position: absolute; top: 20px; right: 20px; z-index: 10; background: white; border-radius: 50%; padding: 5px; }

        /* Pages */
        .page { display: none; }
        .page.active { display: block; }
        .long-page { padding-top: 50px; }

        @media (max-width: 992px) {
            .hero { flex-direction: column; text-align: center; padding-top: 100px; height: auto; padding-bottom: 100px; }
            .booking-card { width: 100%; }
            .hero-text { text-align: center; margin-top: 50px; }
            .hotels-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .modal-content { grid-template-columns: 1fr; }
        }
