/* Force Date/Time icons white */
        input[type="date"]::-webkit-calendar-picker-indicator,
        input[type="time"]::-webkit-calendar-picker-indicator {
            display: block; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23ffffff" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>') no-repeat;
            width: 20px; height: 20px; cursor: pointer; filter: invert(0);
        }
        .contact-form input[type="date"], .contact-form input[type="time"] { position: relative; padding-right: 40px; }

        /* --- 1. 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; scroll-behavior: smooth; }

        /* --- 2. ANIMATED BACKGROUND --- */
        .animated-bg {
            background: linear-gradient(-45deg, #050505, #270017, #1f0029, #000000);
            background-size: 400% 400%; animation: gradientBG 8s ease infinite;
        }
        @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

        /* --- 3. NAVBAR STYLES (FIXED) --- */
        .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 (Improved Size) */
        .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); }


        /* --- 4. HERO SECTION --- */
        .hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 0 10%; overflow: hidden; padding-top: 0; }
        .hero-text { z-index: 2; position: relative; width: 50%; }
        .hero-text h1 { font-family: 'Italiana', serif; font-size: 5rem; line-height: 1.1; margin-bottom: 20px; }
        .hero-text h1 span { display: block; background: linear-gradient(to right, #fff, #a0a0a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-text p { color: var(--text-muted); max-width: 450px; margin-bottom: 40px; font-size: 1.1rem; border-left: 3px solid var(--neon-pink); padding-left: 20px; }
        .hero-image-wrapper { position: absolute; right: 10%; top: 18%; width: 35vw; height: 70vh; z-index: 1; border-radius: 150px 150px 0 0; overflow: hidden; box-shadow: 0 0 80px rgba(189, 0, 255, 0.25); border: 1px solid rgba(189, 0, 255, 0.3); }
        .hero-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .hero-img:hover { transform: scale(1.05); }

        /* --- 5. SECTIONS --- */
        .section-title { text-align: center; font-family: 'Italiana', serif; font-size: 3rem; margin: 100px 0 60px; }
        .section-title span { color: var(--neon-pink); }
        .reveal { position: relative; transform: translateY(50px); opacity: 0; transition: 1s all ease; }
        .reveal.active { transform: translateY(0); opacity: 1; }

        /* --- 6. ABOUT --- */
        .about-section { padding: 50px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-text h2 { font-family: 'Italiana', serif; font-size: 3rem; margin-bottom: 30px; }
        .about-text h2 span { color: var(--neon-purple); }
        .about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 25px; font-size: 1.05rem; text-align: justify; }
        .about-stats { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 30px; }
        .stat h3 { font-size: 2.5rem; color: var(--neon-pink); font-family: 'Italiana', serif; }
        .stat span { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; display: block; margin-top: 5px; }
        .about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
        .about-img-1 { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; border: var(--border); transform: translateY(30px); }
        .about-img-2 { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; border: var(--border); transform: translateY(-30px); }

        /* --- STAFF CAROUSEL --- */
        .staff-section { padding: 60px 5%; position: relative; overflow: hidden; }
        .staff-carousel-container { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; padding: 20px 0; }
        .staff-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
        .staff-card { flex: 0 0 calc(25% - 25px); background: var(--bg-card); border: var(--border); border-radius: 50px; overflow: hidden; text-align: center; cursor: pointer; transition: 0.3s; position: relative; height: 380px; }
        .staff-card:hover { transform: translateY(-10px); border-color: var(--neon-purple); box-shadow: 0 0 25px rgba(189, 0, 255, 0.2); }
        .staff-img { width: 100%; height: 75%; object-fit: cover; border-bottom: 1px solid var(--border); }
        .staff-info { padding: 15px; }
        .staff-info h3 { font-family: 'Italiana'; font-size: 1.2rem; color: white; margin-bottom: 5px; }
        .staff-info p { color: var(--neon-pink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
        .staff-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: 0.3s; }
        .staff-btn:hover { background: var(--neon-pink); box-shadow: 0 0 15px var(--neon-pink); }
        .staff-btn.prev { left: 0; } .staff-btn.next { right: 0; }

        

        /* --- SERVICES --- */
        .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 10%; }
        .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; }
        .btn-center-container { text-align: center; margin-top: 50px; margin-bottom: 80px; }
        .btn-outline-large { display: inline-block; padding: 12px 40px; border: 1px solid var(--neon-purple); color: white; text-decoration: none; border-radius: 50px; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
        .btn-outline-large:hover { background: var(--neon-purple); box-shadow: 0 0 20px var(--neon-purple); }

        /* --- 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%;min-height: 450px;height: auto; 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; font-size: 1rem; }
        .modal-price { font-size: 1.2rem; color: var(--neon-pink); font-weight: bold; margin-bottom: 30px; display: block; }
        .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; transition: 0.3s; }
        .modal-close:hover { background: var(--neon-pink); }

        /* --- PRICING --- */
        .pricing-section { padding-bottom: 80px; padding-top: 40px; margin-top: -20px; margin-bottom: -60px; }
        .pricing-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
        .filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
        .filter-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); padding: 8px 24px; border-radius: 50px; cursor: pointer; font-family: 'Jost', sans-serif; transition: 0.3s; font-size: 0.95rem; min-width: 80px; text-align: center; }
        .filter-btn.active, .filter-btn:hover { border-color: var(--neon-pink); color: var(--neon-pink); background: rgba(255, 0, 127, 0.1); box-shadow: 0 0 10px rgba(255, 0, 127, 0.2); }
        .price-row { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
        .price-row:hover { padding-left: 20px; padding-right: 20px; background: var(--glass); border-radius: 10px; }
        .price-name h4 { font-size: 1.2rem; font-weight: 400; }
        .price-name span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
        .price-cost { font-size: 1.3rem; font-weight: 600; color: var(--neon-purple); }

        /* --- GALLERY --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 10%; }
        .gallery-item { position: relative; height: 320px; border-radius: 20px; overflow: hidden; border: var(--border); cursor: pointer; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .gallery-item:hover img { transform: scale(1.1); }
        .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, black, transparent); padding: 20px; opacity: 0; transition: 0.3s; }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay h4 { font-family: 'Italiana'; font-size: 1.2rem; color: white; }

        /* --- REVIEWS --- */
        .reviews-section { padding: 60px 10%; position: relative; margin-top: -120px; margin-bottom: -120px; } 
        .carousel-container { position: relative; max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
        .review-card { background: var(--bg-card); padding: 50px 40px; border-radius: 20px; border: var(--border); text-align: center; width: 100%; display: none; animation: fadeIn 0.5s ease; }
        .review-card.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        .review-card i { font-size: 2.5rem; color: var(--neon-purple); margin-bottom: 20px; }
        .review-text { color: #ccc; line-height: 1.6; font-style: italic; font-size: 1.1rem; margin-bottom: 30px; }
        .client-info h4 { color: white; font-family: 'Italiana'; font-size: 1.3rem; margin-bottom: 5px; }
        .client-info span { color: var(--neon-pink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
        .carousel-btn { background: var(--glass); border: var(--border); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; font-size: 1.2rem; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; }
        .carousel-btn:hover { background: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); }
        .carousel-btn.prev { left: -70px; }
        .carousel-btn.next { right: -70px; }

        /* --- CONTACT --- */
        .contact-section { padding: 80px 10%; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: var(--bg-card); padding: 50px; border-radius: 30px; border: var(--border); }
        .contact-form input, .contact-form textarea, .contact-form select { width: 100%; background: rgba(0,0,0,0.3); border: var(--border); padding: 15px; color: white; border-radius: 10px; margin-bottom: 20px; font-family: 'Jost', sans-serif; outline: none; font-size: 16px; appearance: none; }
        .contact-form select option { background-color: #141414; color: white; padding: 10px; }
        .contact-form select { color: #fff; cursor: pointer; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23bd00ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 12px auto; }
        .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--neon-purple); }
        .input-row { display: flex; gap: 15px; }
        #success-msg { display: none; text-align: center; padding: 40px; border: 2px solid var(--neon-purple); border-radius: 20px; background: rgba(189, 0, 255, 0.1); position: relative; }
        .close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
        .close-btn:hover { color: var(--neon-pink); }
        .map-container { width: 100%; height: 300px; border-radius: 20px; overflow: hidden; border: var(--border); margin-bottom: 30px; filter: grayscale(100%) invert(92%) contrast(83%); transition: 0.3s; }
        .map-container:hover { filter: none; border-color: var(--neon-purple); }
        .input-row div { display: flex; align-items: center; }

        /* --- FOOTER --- */
        footer { margin-top: 0; border-top: 1px solid rgba(255,255,255,0.1); padding: 50px 7% 30px; 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 h3, .footer-contact h3 { font-family: 'Italiana'; margin-bottom: 25px; color: white; font-size: 1.4rem; }
        .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; }
        .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 (FIXED) --- */
        @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 */
            .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;}

            .hero { flex-direction: column; padding-top: 140px; padding-bottom: 60px; text-align: center; height: auto; padding-left: 20px; padding-right: 20px; }
            .hero-text { width: 100%; margin-bottom: 40px; }
            .hero-text h1 { font-size: 3rem; border-bottom: 3px solid var(--neon-pink); padding-bottom: 15px; padding-left: 0; }
            .hero-text p { margin: 0 auto 30px; border-left: none; }
            .hero-image-wrapper { position: relative; width: 100%; height: 380px; right: 0; top: 0; border-radius: 100px 100px 0 0; }
            
            .about-section, .contact-section, .reviews-section { padding-left: 20px; padding-right: 20px; padding-top: 60px; padding-bottom: 60px; text-align: center; }
            .about-section { grid-template-columns: 1fr; }
            .about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; } 
            .about-img-1 { width: 100%; height: 250px; transform: translateY(20px); }
            .about-img-2 { width: 100%; height: 250px; transform: translateY(-20px); }
            
            .service-grid, .gallery-grid, .contact-grid, .reviews-grid { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
            .contact-grid { padding: 30px 20px; }
            .input-row { flex-direction: column; }
            .review-card { padding: 30px 20px; }
            .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
            .carousel-btn.prev { left: 0; } 
            .carousel-btn.next { right: 0; }
            .staff-card { flex: 0 0 100%; }
            .service-modal-box { width: 95%; grid-template-columns: 1fr; height: auto; max-height: 90vh; overflow-y: auto; }
            .modal-img { height: 250px; }
            .modal-content { padding: 30px 20px; }
            footer { grid-template-columns: 1fr; text-align: center; padding: 50px 20px 30px; }
            .social-icons, .contact-row { justify-content: center; }
        }
