:root {
            --primary: #d4af37;
            --primary-dark: #b5952f;
            --secondary: #b8860b;
            --accent: #ffd700;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f0fdf4;
            background-image: radial-gradient(at 0% 0%, hsla(212,85%,88%,1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(175,85%,88%,1) 0, transparent 50%), radial-gradient(at 100% 100%, hsla(212,85%,88%,1) 0, transparent 50%), radial-gradient(at 0% 100%, hsla(175,85%,88%,1) 0, transparent 50%);
            background-attachment: fixed;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding { padding: 80px 0; }

        /* Premium Liquid Glass Header */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 130px;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--secondary); font-size: 1.8rem; }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9rem; /* Minimised font */
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent);
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            display: inline-block;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(10, 88, 202, 0.3);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .mobile-btn { display: none; }

        /* Hero Layout Split */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
            display: flex;
            align-items: center;
            min-height: 100vh;
        }

        .hero-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        .hero-text h1 span { color: var(--accent); }
        .hero-text .subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid var(--secondary);
        }

        .hero-img { position: relative; }
        .hero-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title span {
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }
        .section-title h2 { font-size: 2.5rem; }

        /* Reusable Grid - Extensively used now */
        @keyframes float-3d {
            0% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15); }
            50% { transform: translateY(-12px) rotateX(6deg) rotateY(2deg); box-shadow: 0 25px 45px rgba(212, 175, 55, 0.3); }
            100% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15); }
        }

        .service-img-grid {
            perspective: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .img-card {
            background: rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.5); /* Gold border */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            text-align: left;
            transform-style: preserve-3d;
            animation: float-3d 6s ease-in-out infinite;
            transition: all 0.4s ease;
        }
        .img-card:nth-child(even) { animation-delay: 2s; }
        .img-card:nth-child(3n) { animation-delay: 3.5s; }
        
        .img-card:hover { 
            animation: none;
            transform: translateY(-15px) scale(1.05) rotateX(0) rotateY(0); 
            border-color: #ffd700;
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
        }
        
        .img-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .img-card-content { padding: 25px; }
        .img-card-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
        .img-card-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

        /* Review Section */
        .reviews-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .review-box {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            border-top: 4px solid var(--accent);
        }
        .stars { color: var(--accent); margin-bottom: 15px; }
        .review-box p { font-style: italic; color: var(--text-light); margin-bottom: 20px; line-height: 1.6;}
        .reviewer { font-weight: 600; color: var(--text-dark); }

        /* Pre-Climax Section */
        .pre-climax-grid {
            display: block;
        }

        /* Ambient Images Grid in preclimax */
        .ambience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .ambience-grid img {
            width: 100%;
            height: 195px;
            object-fit: cover;
            border-radius: 12px;
        }

        /* Timings & Booking Grid */
        .timings-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .schedule-box, .booking-card-box {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(212, 175, 55, 0.5);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .schedule-box {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: #f1f5f9;
            border: none;
        }

        .schedule-box h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .schedule-box h3 i {
            color: var(--accent);
        }

        .schedule-list {
            list-style: none;
        }

        .schedule-list li {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.05rem;
        }

        .schedule-list li:last-child {
            border-bottom: none;
        }

        .schedule-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .schedule-img {
            max-width: 180px;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
            transition: all 0.3s ease;
        }

        .schedule-img:hover {
            transform: scale(1.05);
        }

        .schedule-list .highlight-day {
            color: var(--accent);
            font-weight: 700;
        }

        .booking-card-box {
            background: #ffffff;
            border-top: 5px solid var(--secondary);
        }

        .booking-card-box h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .date-time-group {
            display: flex;
            gap: 15px;
        }

        .btn-confirm {
            width: 100%;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        .btn-confirm:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
        }

        /* Appointments / Contact Form */
        .contact-wrap {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group { margin-bottom: 20px; }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            background: #f8fafc;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            background: white;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
        }

        /* Footer */
        .footer {
            background: #1a202c;
            color: white;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer p { color: #a0aec0; line-height: 1.8; }
        .footer h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--accent); }
        .social {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }
        .social a {
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        .social a.fb { background: #1877F2; }
        .social a.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .social a.yt { background: #FF0000; }
        .social a.wa { background: #25d366; }
        .social a:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 5px 15px rgba(255,255,255,0.2); }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #718096;
            font-size: 0.9rem;
        }

        /* Multi-Directional Reveal Animations */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
        .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
        .reveal-up { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
        .reveal-pop { opacity: 0; transform: scale(0.8); transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .reveal-zoom-out { opacity: 0; transform: scale(1.15); transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .reveal-text { opacity: 0; transform: translateY(60px) skewY(6deg); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.active, .reveal-left.active, .reveal-right.active, .reveal-up.active, .reveal-pop.active, .reveal-zoom-out.active, .reveal-text.active { opacity: 1; transform: translate(0) scale(1) skewY(0); }

        /* Pop/Pulse Animations */
        @keyframes pulse-pop {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        @keyframes pulse-pop-call {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        .call-btn-pop {
            animation: pulse-pop-call 2s infinite;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 65px;
            height: 65px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
            animation: pulse-pop 2s infinite;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
            background-color: #20b858;
        }

        /* Desktop Defaults for New Classes */
        .logo-img {
            height: 120px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-wrap, .reviews-wrap, .pre-climax-grid, .timings-wrap, .footer-grid, .responsive-grid, .service-img-grid { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 2.5rem; }
            .nav-container { height: 80px; }
            .logo-img { height: 70px; margin-right: 10px; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 40px 0;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active { left: 0; }
            .mobile-btn {
                display: block;
                font-size: 1.5rem;
                background: none;
                border: none;
                color: var(--text-dark);
                cursor: pointer;
            }
            .hero { padding: 120px 0 60px; min-height: auto; }
            .section-padding { padding: 60px 0; }
            .hero-wrap { gap: 30px; }
        }

        @media (max-width: 600px) {
            .hero-text h1 { font-size: 2.2rem; }
            .section-title h2 { font-size: 2rem; }
            .hero-text .subtitle { font-size: 1rem; padding: 15px; }
            .hero-buttons { flex-wrap: wrap; }
            .hero-buttons .btn { width: 100%; text-align: center; }
            .timings-wrap .schedule-box { padding: 25px; }
            .timings-wrap .schedule-list li { font-size: 1rem; flex-direction: column; gap: 5px; }
            .emergency-box { padding: 25px; }
            .form-group { padding: 0; display: block !important; }
            .form-group input { width: 100%; margin-bottom: 10px; }
            .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; font-size: 30px; }
            .footer { padding: 40px 0 20px; }
            .footer-logo img { height: 40px !important; }
        }

        @media (max-width: 400px) {
            .hero-text h1 { font-size: 1.8rem; }
            .logo-img { height: 55px; }
            .nav-container { height: 70px; }
            .nav-links { top: 70px; }
            .section-title h2 { font-size: 1.6rem; }
        }
