/* --- CORE THEME --- */
        :root {
            --bg-dark: #0a0a0a; --bg-card: #141414; --text-main: #ffffff;
            --text-muted: #a0a0a0; --neon-purple: #bd00ff; --neon-pink: #ff007f;
            --gradient-text: linear-gradient(to right, #bd00ff, #ff007f);
            --glass: rgba(255, 255, 255, 0.05); --glass-strong: rgba(5, 5, 5, 0.918);
            --border: 1px solid rgba(255, 255, 255, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Jost', sans-serif; overflow-x: hidden; }
        
        /* --- NAVBAR STYLES --- */
        .nav-wrapper { position: fixed; top: 0; left: 0; right: 0; display: flex; justify-content: center; z-index: 1000; padding-top: 15px; transition: 0.4s; }
        .nav-hidden { transform: translateY(-150%); }
        
               nav { background: rgba(10, 10, 10, 0.623); backdrop-filter: blur(18px); padding: 1px 25px; border-radius: 50px; border: var(--border); display: flex; align-items: center; justify-content: space-between; box-shadow: 0 5px 20px rgba(0,0,0,0.5); width: 95%; max-width: 1200px; height: 60px; }

        
        .logo { font-family: 'Italiana', serif; font-size: 1.4rem; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: bold; letter-spacing: 1px; text-decoration: none; flex-shrink: 0; }
        
        /* Desktop Menu */
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
        .nav-links a:hover { color: var(--neon-pink); }
        .nav-right { display: flex; gap: 15px; align-items: center; flex-shrink: 0; }
        
        /* Buttons */
        .btn-login { 
            background: transparent; color: var(--text-main); border: 1px solid var(--neon-purple); 
            padding: 6px 25px; border-radius: 30px; text-decoration: none; font-size: 0.9rem; 
            transition: 0.3s; font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 8px; white-space: nowrap;
        }
        .btn-login:hover { background: var(--glass); color: var(--neon-pink); }
        
        .btn-book { 
            background: var(--gradient-text); color: white; padding: 7px 28px; border-radius: 30px; 
            text-decoration: none; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; 
            box-shadow: 0 0 20px rgba(189, 0, 255, 0.3); transition: 0.3s; font-family: 'Jost', sans-serif; white-space: nowrap;
        }
        .btn-book:hover { box-shadow: 0 0 30px rgba(189, 0, 255, 0.6); transform: translateY(-2px); }
        
        /* Desktop Hides */
        .menu-toggle { display: none; }
        .close-menu { display: none; }
        .mobile-only-btn { display: none !important; }
        .menu-toggle:hover { border-color: var(--neon-pink); box-shadow: 0 0 10px rgba(255, 0, 127, 0.4); }


        /* --- HERO --- */
        .page-hero { height: 50vh; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1600') no-repeat center/cover; position: relative; margin-bottom: 50px; }
        .page-hero::before { content:''; position: absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,0.3), #0a0a0a); }
        .page-title { position: relative; z-index: 2; text-align: center; }
        .page-title h1 { font-family: 'Italiana'; font-size: 4rem; color: white; margin-bottom: 10px; }
        .page-title p { color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

        /* --- SERVICES GRID --- */
        .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 10% 80px; }
        .service-card { background: var(--bg-card); border: var(--border); border-radius: 20px; overflow: hidden; transition: 0.4s; cursor: pointer; height: 420px; position: relative; }
        .service-card:hover { transform: translateY(-10px); border-color: var(--neon-purple); }
        .card-img { width: 100%; height: 65%; object-fit: cover; }
        .card-info { padding: 25px; }
        .card-info h3 { font-family: 'Italiana', serif; font-size: 1.5rem; margin-bottom: 5px; }
        .card-info p { color: var(--neon-pink); font-weight: 600; font-size: 0.9rem; }
        .service-card::after { content: '+'; position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(0,0,0,0.5); border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 1px solid var(--neon-purple); opacity: 0; transition: 0.3s; }
        .service-card:hover::after { opacity: 1; }

        /* --- MODAL --- */
        .service-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
        .service-modal-overlay.active { display: flex; opacity: 1; }
        .service-modal-box { background: #141414; width: 90%; max-width: 800px; border-radius: 20px; border: 1px solid var(--neon-purple); box-shadow: 0 0 50px rgba(189, 0, 255, 0.3); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; transform: scale(0.8); transition: transform 0.3s; position: relative; }
        .service-modal-overlay.active .service-modal-box { transform: scale(1); }
        .modal-img { width: 100%; height: 100%; object-fit: cover; }
        .modal-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
        .modal-content h3 { font-family: 'Italiana', serif; font-size: 2.5rem; margin-bottom: 15px; color: white; }
        .modal-content p { color: #ccc; line-height: 1.6; margin-bottom: 20px; }
        .modal-price { font-size: 1.2rem; color: var(--neon-pink); font-weight: bold; margin-bottom: 30px; }
        .modal-close { position: absolute; top: 15px; right: 20px; color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 10; background: rgba(0,0,0,0.5); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        /* --- FOOTER --- */
        footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 80px 10% 40px; background: #050505; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
        .footer-brand h2 { font-family: 'Italiana', serif; margin-bottom: 25px; font-size: 2.5rem; }
        .footer-brand p { color: #999; line-height: 1.8; margin-bottom: 30px; font-size: 0.95rem; text-align: justify; }
        .social-icons { display: flex; gap: 15px; }
        .social-icons a { width: 45px; height: 45px; background: var(--glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; transition: 0.3s; border: var(--border); text-decoration: none; }
        .social-icons a:hover { background: var(--neon-pink); transform: translateY(-5px); }
        .footer-links ul { list-style: none; }
        .footer-links ul li { margin-bottom: 15px; }
        .footer-links ul li a { color: #888; text-decoration: none; transition: 0.3s; font-size: 1rem; }
        .footer-links ul li a:hover { color: var(--neon-pink); padding-left: 5px; }
        .footer-links h3, .footer-contact h3 { font-family: 'Italiana'; margin-bottom: 25px; color: white; font-size: 1.4rem; }
        .contact-row { display: flex; gap: 15px; margin-bottom: 18px; color: #888; align-items: center; }
        .copyright { grid-column: 1 / -1; text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }

        /* --- MOBILE RESPONSIVE CSS --- */
        @media (max-width: 900px) {
            /* 1. Menu Toggle (Hamburger) */
            .menu-toggle { 
                display: flex; width: 38px; height: 38px; 
                background: rgba(255, 255, 255, 0.08); 
                border: 1px solid rgba(255, 255, 255, 0.2); 
                border-radius: 50%; align-items: center; justify-content: center;
                cursor: pointer; z-index: 1001; transition: 0.3s;
            }
            /* HIDE TOGGLE WHEN MENU IS OPEN (Handled by JS) */
            .menu-toggle.hide { opacity: 0; pointer-events: none; }

            .nav-right { display: none; } /* Hide Desktop Buttons */
            
            /* 2. Mobile Menu (Slide Out) */
             .nav-links { 
                position: fixed; top: 0; right: -300px; width: 220px; height: 80vh; 
                background: var(--glass-strong); backdrop-filter: blur(50px); 
                flex-direction: column; justify-content: flex-start; align-items: center; 
                padding-top: 40px; /* EXTRA PADDING so content is below close button */
                gap: 15px; transition: 0.4s ease; z-index: 999; 
                border-left: 1px solid rgba(255,255,255,0.1); 
                box-shadow: -15px 0 40px rgba(0,0,0,0.9);
                border-radius: 20px;
            }
            .nav-links.active { right: 0; }
            .nav-links a { 
                font-family: 'Jost', sans-serif; font-size: 1.1rem; color: #ccc; 
                border-bottom: none; width: auto; text-align: center; padding: 5px 0; 
            }
            
            /* 3. Close Button (Top Right Inside Menu) */
            .close-menu { display: flex; position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.1); align-items: center; justify-content: center; font-size: 0.9rem; color: white; cursor: pointer; transition: 0.3s; border: 1px solid rgba(255,255,255,0.2); }


            .close-menu:hover { border-color: var(--neon-pink); background: var(--neon-pink); transform: rotate(90deg); }

            
            /* 4. Mobile Buttons (Wider & Nicer) */
            .mobile-only-btn { 
                display: flex !important; width: 200px; justify-content: center; 
                margin: 8px 0; padding: 12px 0; font-size: 1rem;
            }

             .nav-links .btn-login { border: 1px solid var(--neon-purple); color: white;  padding: 5px 15px;}
            .nav-links .btn-book { background: var(--gradient-text); border: none; color: white;  padding: 5px 20px;}

            
            .service-grid { grid-template-columns: 1fr; padding: 0 20px 50px; }
            .service-modal-box { width: 95%; grid-template-columns: 1fr; height: auto; max-height: 90vh; overflow-y: auto; }
            .modal-img { height: 250px; }
            .page-title h1 { font-size: 3rem; }
            footer { grid-template-columns: 1fr; text-align: center; padding: 50px 20px 30px; }
            .social-icons, .contact-row { justify-content: center; }
        }
