        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader-logo {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .preloader-logo-icon {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2.5rem;
            animation: pulse 1.5s infinite;
        }

        .preloader-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .loader {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--white);
            animation: loading 2s ease-in-out forwards;
        }

        .loading-text {
            color: var(--white);
            margin-top: 20px;
            font-size: 1.2rem;
            font-weight: 500;
        }

        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* ===== CSS VARIABLES & RESET ===== */
        :root {
            --primary: #8B5FBF;      
            --primary-dark: #6A4C9C;
            --primary-light: #B39DDB;
            --secondary: #FF7BAC;    
            --accent: #FFD166;       
            --light: #F7F2FF;
            --dark: #2D1B69;
            --text: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --shadow: 0 10px 30px rgba(139, 95, 191, 0.1);
            --shadow-hover: 0 20px 40px rgba(139, 95, 191, 0.2);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #FF9ACD 100%);
            --radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        body.loaded {
            overflow: auto;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, .btn {
            cursor: pointer;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: var(--gradient-secondary);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 25px auto 0;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: block;
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            background-color: var(--white);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(139, 95, 191, 0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
        }

        .desktop-nav ul {
            display: flex;
            gap: 100px;
        }

        .desktop-nav a {
            font-weight: 500;
            color: var(--text);
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
            white-space: nowrap;
        }

        .desktop-nav a:hover {
            color: var(--primary);
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--gradient);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
            border-radius: 3px;
        }

        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
            white-space: nowrap;
            
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(139, 95, 191, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--primary);
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: var(--gradient);
            color: var(--white);
            border-color: transparent;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-btn:hover {
            background: var(--light);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            transform: translateX(-100%);
            opacity: 0;
            transition: var(--transition);
            padding-top: 100px;
            overflow-y: auto;
        }

        .mobile-nav.active {
            transform: translateX(0);
            opacity: 1;
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 20px;
        }

        .mobile-nav a {
            display: block;
            padding: 20px;
            font-weight: 500;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--text);
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            background: var(--light);
            color: var(--primary);
            padding-left: 30px;
        }

        .mobile-nav .btn-primary {
            display: flex;
            margin: 30px 20px;
            justify-content: center;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 100px 0 75px;
            background: linear-gradient(135deg, rgba(139, 95, 191, 0.95), rgba(106, 76, 156, 0.95)), 
                        url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-top: 90px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-content {
            height: auto;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            margin-left: 0;
            position: relative;
            z-index: 2;
            
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        /* FIX FOR VIEW SERVICES BUTTON IN HERO */
        .hero-buttons .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--white);
        }

        .hero-buttons .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
            transform: translateY(-5px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 80px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
        }

        .hero-stat-text {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== ACHIEVEMENTS SECTION ===== */
        .achievements {
            background-color: var(--light);
            position: relative;
        }

        .achievements::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%238B5FBF' fill-opacity='0.03' d='M0,0 L100,0 L100,100 L0,100 Z'/%3E%3C/svg%3E");
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(139, 95, 191, 0.1);
        }

        .stat-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(139, 95, 191, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-text {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(60px);
        }

        .services::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(60px);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(139, 95, 191, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .service-card.premium {
            border: 2px solid var(--accent);
            position: relative;
        }

        .service-card.premium::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent);
            color: var(--dark);
            padding: 8px 40px;
            font-weight: 700;
            font-size: 0.9rem;
            transform: rotate(45deg);
            z-index: 3;
        }

        .service-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
        }

        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-content h3 i {
            color: var(--primary);
            font-size: 1.4rem;
        }

        .service-description {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-features {
            margin-bottom: 25px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .service-features li i {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .service-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .service-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .service-btn {
            background: var(--gradient);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 6px 15px rgba(139, 95, 191, 0.3);
        }

        .service-btn:hover {
            background: var(--gradient-secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 122, 172, 0.3);
        }

        /* ===== EXTENDED SERVICES SECTION ===== */
        .extended-services {
            background: var(--light);
            position: relative;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: var(--white);
            color: var(--text);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .tab-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .tab-btn.active {
            background: var(--gradient);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
        }

        .services-list {
            display: none;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .services-list.active {
            display: grid;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-item {
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .service-info h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .service-info p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            position: relative;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            position: relative;
        }

        .step {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(139, 95, 191, 0.1);
        }

        .step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 12px 25px rgba(139, 95, 191, 0.3);
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-light);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .step h4 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .step p {
            color: var(--text-light);
            font-size: 1rem;
        }

        .step-connector {
            display: none;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--gradient);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .testimonials .section-header h2 {
            color: var(--white);
        }

        .testimonials .section-header h2::after {
            background: var(--accent);
        }

        .testimonials .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 35px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
        }

        .testimonial-rating {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.8;
            position: relative;
            padding-left: 25px;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .author-info h5 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .author-info p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* ===== BOOKING FORM ===== */
        .booking-form-section {
            position: relative;
        }

        .booking-form-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .booking-form-wrapper {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(139, 95, 191, 0.1);
        }

        .booking-form-header {
            background: var(--gradient);
            color: var(--white);
            padding: 40px;
            text-align: center;
        }

        .booking-form-header h3 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .booking-form-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .booking-form-body {
            padding: 50px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.05rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #E8E2F3;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: var(--white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(139, 95, 191, 0.1);
        }

        .form-control::placeholder {
            color: #A0A0A0;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5FBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 20px;
        }

        .submit-btn {
            background: var(--gradient-secondary);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
            box-shadow: 0 10px 25px rgba(255, 122, 172, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 122, 172, 0.4);
        }

        #successMessage {
            display: none;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: var(--white);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
            animation: fadeIn 0.5s;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 80px 0 40px;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--gradient-secondary);
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo .logo-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .footer-logo .logo-text {
            font-size: 1.8rem;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }

        .footer-links a i {
            width: 20px;
            color: var(--primary-light);
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 5px;
            width: 25px;
        }

        .contact-info span {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .copyright {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
        }

        /* ===== RESPONSIVE NAVIGATION FIXES ===== */
        @media (max-width: 1199px) {
            html { 
                font-size: 15px; 
            }
            
            .hero h1 { 
                font-size: 3.5rem; 
            }
            
            .section-header h2 { 
                font-size: 2.8rem; 
            }
            
            .hero { 
                margin-top: 85px; 
            }
            
            /* Navbar responsive fix */
            .desktop-nav ul {
                gap: 25px;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }
            
            .header-actions .btn-primary {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 1100px) {
            /* Navbar further adjustments */
            .desktop-nav ul {
                gap: 20px;
            }
            
            .logo {
                gap: 10px;
            }
            
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
            
            .logo-text {
                font-size: 1.7rem;
            }
            
            .header-actions {
                gap: 15px;
            }
            
            .btn-primary, .btn-secondary {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 1024px) {
            /* Navbar text size reduction */
            .desktop-nav a {
                font-size: 0.9rem;
            }
            
            .desktop-nav ul {
                gap: 18px;
            }
            
            .logo-text {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 992px) {
            html { 
                font-size: 14.5px; 
            }
            
            .hero { 
                padding: 160px 0 100px;
                margin-top: 80px;
            }
            
            .hero h1 { 
                font-size: 3rem; 
            }
            
            .section-header h2 { 
                font-size: 2.5rem; 
            }
            
            .section-padding { 
                padding: 80px 0; 
            }
            
            .form-row { 
                grid-template-columns: 1fr; 
            }
            
            /* RESPONSIVE NAVIGATION - Mobile menu shows at 992px */
            .desktop-nav { 
                display: none; 
            }
            
            .mobile-menu-btn { 
                display: flex !important;
                position: relative;
                z-index: 1001;
            }
            
            .mobile-nav { 
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                z-index: 999;
                transform: translateX(-100%);
                opacity: 0;
                transition: var(--transition);
                padding-top: 100px;
                overflow-y: auto;
            }
            
            .mobile-nav.active {
                transform: translateX(0);
                opacity: 1;
            }
            
            .header-actions .btn-primary { 
                display: none; 
            }
            
            .services-grid { 
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
            }
            
            .mobile-nav .btn-primary {
                display: flex !important;
                margin: 30px 20px;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            html { 
                font-size: 14px; 
            }
            
            .hero { 
                padding: 140px 0 80px;
                background-attachment: scroll;
                margin-top: 75px;
            }
            
            .hero h1 { 
                font-size: 2.5rem; 
            }
            
            .hero p { 
                font-size: 1.1rem; 
            }
            
            .section-header h2 { 
                font-size: 2.2rem; 
            }
            
            .section-padding { 
                padding: 70px 0; 
            }
            
            .hero-buttons { 
                flex-direction: column; 
                align-items: center;
                gap: 15px;
            }
            
            .hero-buttons .btn { 
                width: 100%; 
                max-width: 300px; 
                text-align: center; 
                justify-content: center; 
            }
            
            .hero-stats { 
                gap: 30px; 
                margin-top: 60px; 
            }
            
            .hero-stat-number { 
                font-size: 2.2rem; 
            }
            
            .booking-form-body { 
                padding: 35px 25px; 
            }
            
            .booking-form-header { 
                padding: 30px 25px; 
            }
            
            .service-card.premium::before { 
                right: -35px; 
                padding: 8px 35px; 
                font-size: 0.8rem; 
            }
            
            .testimonials-grid { 
                grid-template-columns: 1fr; 
            }
            
            .preloader-logo { 
                flex-direction: column; 
                gap: 15px; 
            }
            
            .preloader-logo-text { 
                font-size: 2.8rem; 
            }
            
            .preloader-logo-icon { 
                width: 70px; 
                height: 70px; 
            }
        }

        @media (max-width: 576px) {
            .hero h1 { 
                font-size: 2.2rem; 
            }
            
            .hero p { 
                font-size: 1rem; 
            }
            
            .section-header h2 { 
                font-size: 2rem; 
            }
            
            .section-padding { 
                padding: 60px 0; 
            }
            
            .container { 
                padding: 0 15px; 
            }
            
            .services-grid { 
                grid-template-columns: 1fr; 
            }
            
            .services-list { 
                grid-template-columns: 1fr; 
            }
            
            .steps-container { 
                grid-template-columns: 1fr; 
            }
            
            .footer-content { 
                grid-template-columns: 1fr; 
                gap: 40px; 
            }
            
            .stat-card { 
                padding: 30px 20px; 
            }
            
            .service-content { 
                padding: 25px 20px; 
            }
            
            .service-footer { 
                flex-direction: column; 
                gap: 20px; 
                align-items: flex-start; 
            }
            
            .service-btn { 
                width: 100%; 
                justify-content: center; 
            }
            
            .hero { 
                margin-top: 70px; 
            }
            
            .preloader-logo-text { 
                font-size: 2.2rem; 
            }
            
            .preloader-logo-icon { 
                width: 60px; 
                height: 60px; 
                font-size: 2rem; 
            }
        }

        @media (max-width: 400px) {
            .hero h1 { 
                font-size: 1.8rem; 
            }
            
            .section-header h2 { 
                font-size: 1.8rem; 
            }
            
            .logo-text { 
                font-size: 1.5rem; 
            }
            
            .logo-icon { 
                width: 40px; 
                height: 40px; 
                font-size: 1.3rem; 
            }
            
            .btn-primary, .btn-secondary { 
                padding: 10px 18px; 
                font-size: 0.85rem; 
            }
            
            .booking-form-body { 
                padding: 30px 20px; 
            }
            
            .hero { 
                margin-top: 65px; 
            }
            
            .preloader-logo-text { 
                font-size: 1.8rem; 
            }
        }

        @media (max-width: 320px) {
            .hero { 
                margin-top: 60px; 
            }
            
            .mobile-nav a { 
                padding: 15px 20px; 
                font-size: 1.1rem; 
            }
        }

        /* ===== UTILITY CLASSES ===== */
        .text-center { 
            text-align: center; 
        }
        
        .mt-30 { 
            margin-top: 30px; 
        }
        
        .mb-30 { 
            margin-bottom: 30px; 
        }
        
        .fade-in { 
            animation: fadeIn 0.8s ease; 
        }
    /* ===== GENDER SELECTOR ===== */
.gender-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gender-btn {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.gender-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.15);
}

.gender-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.gender-btn i {
    font-size: 1.2rem;
}

/* Service cards gender filtering */
.service-card[data-gender] {
    transition: all 0.4s ease;
}

.service-card.hidden {
    display: none;
}

/* ===== APP STORE SECTION ===== */
.app-store-section {
    background: linear-gradient(135deg, var(--light) 0%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.app-store-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.app-store-section .section-header h2 {
    color: var(--dark);
}

.app-store-section .section-header p {
    color: var(--text-light);
    max-width: 600px;
}

.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 95, 191, 0.1);
    min-width: 250px;
}

.app-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-badge i {
    font-size: 3.5rem;
    color: var(--primary);
}

.app-badge.apple i {
    color: #000;
}

.app-badge.google i {
    color: #34a853;
}

.badge-text {
    text-align: left;
}

.badge-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .gender-selector {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .gender-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .app-badge {
        padding: 20px 25px;
        min-width: 220px;
    }
    
    .app-badge i {
        font-size: 3rem;
    }
    
    .badge-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .gender-selector {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .gender-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .app-store-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .app-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== UPDATED FEATURED SERVICES SECTION ===== */
.featured-services {
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 95, 191, 0.03) 0%, rgba(255, 122, 172, 0.03) 100%);
    z-index: -1;
}

/* Updated Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 95, 191, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(139, 95, 191, 0.15);
    border-color: var(--primary-light);
}

.service-card.popular {
    border: 2px solid var(--accent);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card.popular:hover {
    border-color: var(--accent);
    animation: none;
    transform: translateY(-15px) scale(1.02);
}

.popular-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #FFB347 100%);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-img-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 12px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    text-align: center;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(139, 95, 191, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.9rem;
    background: rgba(255, 122, 172, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updated Service Footer with Better Alignment */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(139, 95, 191, 0.1);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.service-rating span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 5px;
}

/* Fixed Book Now Button */
.service-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    min-width: 140px;
    
}

.service-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 122, 172, 0.4);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 60px;
}

.view-more-container .btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.view-more-container .btn-secondary:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 95, 191, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        border-radius: 15px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .service-highlights {
        padding: 12px;
        gap: 12px;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .service-pricing {
        align-items: center;
        text-align: center;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-img {
        height: 200px;
    }
    
    .service-footer {
        padding-top: 15px;
    }
}

/* ===== FIXED BOOK NOW BUTTON SPACING ===== */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Changed from center to flex-end for better alignment */
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(139, 95, 191, 0.1);
    gap: 20px; /* Added gap for better spacing */
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1; /* Allow pricing to take available space */
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.service-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

.service-rating span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 8px;
    font-weight: 500;
}

/* Updated Book Now Button with Better Spacing */
.service-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    min-width: 140px;
    height: 48px; /* Fixed height for consistent button size */
    flex-shrink: 0; /* Prevent button from shrinking */
    margin-left: 10px; /* Add margin to create space from pricing */
}

.service-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 122, 172, 0.4);
}

/* ===== UPDATED SERVICE HIGHLIGHTS ===== */
.service-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(139, 95, 191, 0.05), rgba(255, 122, 172, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(139, 95, 191, 0.1);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    background: rgba(139, 95, 191, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item:nth-child(2) i {
    color: var(--secondary);
    background: rgba(255, 122, 172, 0.1);
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

/* ===== LAPTOP SPECIFIC FIXES (992px to 1200px) ===== */
@media (min-width: 992px) and (max-width: 1200px) {
    .service-footer {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .service-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .service-pricing {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* ===== DESKTOP LARGE SCREENS ===== */
@media (min-width: 1200px) {
    .service-footer {
        align-items: flex-end;
    }
    
    .service-btn {
        margin-left: 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .service-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .service-pricing {
        align-items: center;
        text-align: center;
    }
    
    .service-highlights {
        padding: 12px;
        gap: 10px;
    }
    
    .highlight-item {
        padding: 6px;
    }
    
    .highlight-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .highlight-item small {
        font-size: 0.7rem;
    }
    
    .popular-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
        left: 15px;
        top: 15px;
    }
}

@media (max-width: 576px) {
    .service-highlights {
        flex-direction: column;
        gap: 8px;
    }
    
    .highlight-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 15px;
    }
    
    .highlight-item i {
        margin-bottom: 0;
        margin-right: 15px;
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .highlight-item span, 
    .highlight-item small {
        text-align: left;
    }
    
    .popular-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
        left: 10px;
        top: 10px;
    }
    
    .service-footer {
        padding-top: 15px;
    }
    
    .service-btn {
        height: 44px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ===== TABLET SPECIFIC FIXES ===== */
@media (min-width: 769px) and (max-width: 991px) {
    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .service-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .service-pricing {
        align-items: center;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Premium Services Tag Styling */
.nav-tag.premium-tag {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white !important;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.3px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-tag.premium-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.nav-tag.premium-tag:hover::before {
    left: 100%;
}

.nav-tag.premium-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 75, 43, 0.4);
}

/* Desktop Navbar */
.desktop-nav .nav-tag.premium-tag {
    margin: 0 5px;
}

/* Mobile Navbar */
.mobile-nav .nav-tag.premium-tag {
    margin: 5px 0;
    display: block;
    text-align: center;
}

/* Active state for premium services */
.desktop-nav .nav-link.active .premium-tag,
.mobile-nav .nav-link.active .premium-tag {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-tag.premium-tag {
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .desktop-nav .nav-tag.premium-tag {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .mobile-nav .nav-tag.premium-tag {
        padding: 6px 14px;
        font-size: 14px;
    }
}


/* ===== OFFER POPUP ===== */
#offerPopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2000;
}

/* SHOW ONLY WHEN ACTIVE */
#offerPopup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@keyframes popupSlideIn {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.offer-popup-card {
    position: relative;
    overflow: visible; /* MUST */
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


/* CLOSE BUTTON */
.popup-close-btn {
    position: absolute;
    top: -45px;
    right: -55px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #8B5FBF;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #8B5FBF;
    color: #fff;
    transform: rotate(90deg);
}

/* Header Section */
.popup-header {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C9C 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.popup-badge {
    background: #FF7BAC;
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 122, 172, 0.4);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.popup-percent {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.popup-off {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD166;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.popup-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Services List */
.popup-services {
    padding: 35px 30px 25px;
    background: white;
}

.service-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.service-line:last-child {
    border-bottom: none;
}

.service-name {
    color: #333333;
    font-weight: 500;
    font-size: 1.05rem;
}

.service-price {
    color: #8B5FBF;
    font-weight: 700;
    background: #F7F2FF;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 1rem;
}

.service-line.highlight {
    justify-content: center;
    padding-top: 20px;
}

.service-line.highlight .service-name {
    color: #8B5FBF;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timer Section */
.popup-timer {
    background: linear-gradient(135deg, #F7F2FF 0%, #f0e6ff 100%);
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.timer-label {
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8B5FBF;
    font-family: 'Poppins', sans-serif;
    background: white;
    padding: 12px;
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.2);
    margin-bottom: 8px;
}

.time-text {
    color: #666666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.time-colon {
    color: #8B5FBF;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: -15px;
}

/* Footer Section */
.popup-footer {
    padding: 30px 30px;
    text-align: center;
    background: white;
}

.hurry-message {
    color: #FF7BAC;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.popup-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.popup-btn {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-btn.book {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C9C 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.popup-btn.book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(139, 95, 191, 0.4);
}

.popup-btn.close {
    background: white;
    color: #333333;
    border: 2px solid #e0e0e0;
}

.popup-btn.close:hover {
    background: #f5f5f5;
    border-color: #8B5FBF;
    color: #8B5FBF;
}

.popup-note {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 576px) {
    .offer-popup {
        padding: 15px;
    }
    
    .offer-popup-container {
        max-width: 90%;
    }
    
    .popup-header {
        padding: 30px 20px;
    }
    
    .popup-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .popup-percent {
        font-size: 3.5rem;
    }
    
    .popup-off {
        font-size: 1.8rem;
    }
    
    .popup-subtitle {
        font-size: 1.1rem;
    }
    
    .popup-services {
        padding: 25px 20px 20px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 0.95rem;
        padding: 5px 12px;
    }
    
    .popup-timer {
        padding: 20px;
    }
    
    .time-value {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .time-box {
        min-width: 60px;
    }
    
    .popup-footer {
        padding: 25px 20px;
    }
    
    .hurry-message {
        font-size: 1.2rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .popup-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 400px) {
    .offer-popup-container {
        max-width: 95%;
    }
    
    .popup-percent {
        font-size: 3rem;
    }
    
    .popup-off {
        font-size: 1.5rem;
    }
    
    .time-value {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .time-box {
        min-width: 50px;
    }
    
    .time-colon {
        font-size: 1.8rem;
    }
    
    .hurry-message {
        font-size: 1.1rem;
    }
}
/* ===== PERFECT OFFER POPUP ===== */
.offer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* DARK BLUR BACKGROUND */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offer-popup.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.offer-popup-container {
    width: 100%;
    max-width: 350px; /* PERFECT SIZE */
    animation: popupAppear 0.4s ease-out;
}

@keyframes popupAppear {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    max-height: 85vh; /* NO SCROLLING NEEDED */
    display: flex;
    flex-direction: column;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #8B5FBF;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: #8B5FBF;
    color: white;
    transform: rotate(90deg);
}

/* Header - Fixed Height */
.popup-top {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C9C 100%);
    padding: 25px 20px;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.offer-tag {
    background: #FF7BAC;
    color: white;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 122, 172, 0.4);
    text-transform: uppercase;
}

.offer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.offer-percent {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.offer-off {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD166;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: 5px;
}

/* Services - Compact with fixed height */
.popup-services {
    padding: 20px 18px;
    background: white;
    flex: 1; /* Take available space */
    overflow: hidden; /* Prevent overflow */
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    color: #333;
    font-weight: 500;
    flex: 1;
    padding-right: 10px;
}

.service-price {
    color: #8B5FBF;
    font-weight: 700;
    background: #f7f2ff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Timer - Fixed height */
.popup-timer-container {
    background: #f7f2ff;
    padding: 18px 15px;
    text-align: center;
    border-top: 1px solid #e8e2f3;
    border-bottom: 1px solid #e8e2f3;
    flex-shrink: 0; /* Prevent shrinking */
}

.timer-heading {
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.timer-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
    background: #8B5FBF;
    padding: 8px;
    border-radius: 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(139, 95, 191, 0.3);
    margin-bottom: 6px;
}

.timer-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.timer-colon {
    color: #8B5FBF;
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: -10px;
    opacity: 0.7;
}

/* Footer - Fixed height */
.popup-bottom {
    padding: 20px 18px;
    text-align: center;
    background: white;
    flex-shrink: 0; /* Prevent shrinking */
}

.hurry-up {
    color: #FF7BAC;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: gentlePulse 2s infinite;
}

@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.03);
        opacity: 0.9;
    }
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.action-btn {
    flex: 1;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
}

.action-btn.book {
    background: linear-gradient(135deg, #8B5FBF, #6A4C9C);
    color: white;
    box-shadow: 0 6px 15px rgba(139, 95, 191, 0.3);
}

.action-btn.book:hover {
    background: linear-gradient(135deg, #6A4C9C, #8B5FBF);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.4);
}

.action-btn.close {
    background: white;
    color: #666;
    border: 1px solid #ddd;
}

.action-btn.close:hover {
    background: #f5f5f5;
    border-color: #8B5FBF;
    color: #8B5FBF;
}

.popup-note {
    color: #888;
    font-size: 0.8rem;
    margin-top: 10px;
    line-height: 1.4;
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .offer-popup-container {
        max-width: 90%;
    }
    
    .popup-top {
        padding: 22px 15px;
    }
    
    .offer-percent {
        font-size: 2.8rem;
    }
    
    .offer-off {
        font-size: 1.6rem;
    }
    
    .offer-desc {
        font-size: 0.95rem;
    }
    
    .popup-services {
        padding: 18px 15px;
    }
    
    .service-row {
        font-size: 0.88rem;
        padding: 8px 0;
    }
    
    .popup-timer-container {
        padding: 16px 15px;
    }
    
    .timer-number {
        font-size: 1.6rem;
        width: 50px;
        height: 50px;
    }
    
    .timer-unit {
        min-width: 50px;
    }
    
    .popup-bottom {
        padding: 18px 15px;
    }
    
    .hurry-up {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .action-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 42px;
    }
}

/* Very Small Devices */
@media (max-height: 700px) {
    .popup-card {
        max-height: 90vh;
    }
    
    .service-row {
        padding: 7px 0;
    }
    
    .popup-timer-container {
        padding: 15px;
    }
    
    .popup-bottom {
        padding: 15px;
    }
}

/* ===== OFFER BADGE - PERFECT STYLING ===== */
.hero-offer-container {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 10;
    width: 600px;
    margin-top: 60px;
}

.hero-offer-badge {
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(139, 95, 191, 0.3);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #FF416C, #FF7BAC, #FFD166, #8B5FBF, 
        #FF7BAC, #FF416C);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.offer-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-overlay {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.offer-book-btn {
    background: linear-gradient(135deg, #FF416C 0%, #FF7BAC 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 15px 30px rgba(255, 65, 108, 0.5),
        0 0 0 3px white,
        0 0 20px rgba(255, 209, 102, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.offer-book-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 40px rgba(255, 65, 108, 0.7),
        0 0 0 3px white,
        0 0 30px rgba(255, 209, 102, 1);
    background: linear-gradient(135deg, #FF7BAC 0%, #FF416C 100%);
}

.offer-book-btn i {
    font-size: 1.4rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .hero-offer-container {
        right: 30px;
        width: 320px;
    }
}

@media (max-width: 1200px) {
    .hero-offer-container {
        right: 20px;
        width: 300px;
    }
    
    .offer-book-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-offer-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .hero-offer-badge {
        animation: none;
    }
    
    .offer-card::before {
        animation: none;
    }
    
    .offer-book-btn {
        padding: 18px 40px;
        font-size: 1.3rem;
    }
    
    .offer-overlay {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-offer-container {
        max-width: 350px;
        margin: 30px auto 0;
    }
    
    .offer-card {
        padding: 12px;
    }
    
    .offer-book-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-offer-container {
        max-width: 300px;
    }
    
    .offer-card {
        padding: 10px;
    }
    
    .offer-book-btn {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .offer-overlay {
        bottom: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .hero-offer-container {
        max-width: 280px;
    }
    
    .offer-book-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
/* ===== SIMPLE IMAGE POPUP ===== */
.offer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Darker background */
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offer-popup.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.popup-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

@keyframes popupScale {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: -50px; 
    right: 0;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #8B5FBF;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: #8B5FBF;
    color: white;
    transform: rotate(90deg);
}

.popup-image-main {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.popup-book-btn {
    display: block;
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C9C 100%);
    color: white;
    padding: 18px 35px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.popup-book-btn:hover {
    background: linear-gradient(135deg, #6A4C9C 0%, #8B5FBF 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .popup-image-container {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .popup-image-main {
        max-height: 70vh;
    }
    
    .popup-close {
        top: -45px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .popup-book-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .popup-image-container {
        max-width: 96vw;
        max-height: 88vh;
    }
    
    .popup-image-main {
        max-height: 75vh;
    }
    
    .popup-close {
        top: -40px;
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .popup-book-btn {
        padding: 15px 25px;
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .offer-popup {
        padding: 15px;
    }
    
    .popup-image-container {
        max-width: 98vw;
        max-height: 90vh;
        border-radius: 10px;
    }
    
    .popup-image-main {
        max-height: 80vh;
    }
    
    .popup-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .popup-book-btn {
        padding: 14px 20px;
        font-size: 1rem;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .offer-popup {
        padding: 10px;
    }
    
    .popup-image-container {
        max-width: 99vw;
        max-height: 92vh;
    }
    
    .popup-image-main {
        max-height: 85vh;
    }
    
    .popup-close {
        top: -30px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .popup-book-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}
/* ===== PREMIUM BRIDAL PAGE STYLES ===== */
.premium-bridal-page {
    background: linear-gradient(135deg, #f9f5ff 0%, #fff0f5 100%);
    position: relative;
}

.premium-bridal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238B5FBF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.bridal-hero-image {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.bridal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.bridal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD166, #ffb347);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.bridal-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.bridal-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.bridal-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bridal-package-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.bridal-package-card.luxury {
    border-color: #FFD166;
    transform: translateY(-20px);
}

.bridal-package-card.premium {
    border-color: var(--primary-light);
}

.bridal-package-card.essential {
    border-color: #e0e0e0;
}

.bridal-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.bridal-package-card.luxury:hover {
    transform: translateY(-30px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(139, 95, 191, 0.2);
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.package-price span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 5px;
}

.package-features h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.95rem;
}

.package-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 24px;
}

.package-duration {
    background: rgba(139, 95, 191, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 500;
}

.package-btn {
    display: block;
    background: var(--gradient);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(139, 95, 191, 0.3);
}

.package-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 172, 0.4);
}

.bridal-process {
    background: white;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.bridal-process h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.process-step:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CUSTOMER REVIEWS PAGE STYLES ===== */
.customer-reviews-page {
    background: linear-gradient(135deg, #f7f2ff 0%, #fff7f2 100%);
}

.video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.video-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
    z-index: 2;
}

.video-placeholder:hover .play-button {
    background: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.reviewer-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 10px;
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.photo-reviews-section {
    margin-top: 60px;
}

.photo-reviews-section h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.photo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-review {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.photo-review:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.photo-review img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.photo-caption h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.photo-caption p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== BOOKING PAGE STYLES ===== */
.booking-page {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C9C 100%);
    color: white;
}

.booking-page .section-header h2 {
    color: white;
}

.booking-page .section-header h2::after {
    background: var(--accent);
}

.booking-page .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.booking-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-page-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.booking-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.booking-page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.booking-form-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-header {
    background: linear-gradient(135deg, #FF7BAC 0%, #FF416C 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

#bookingPageForm {
    padding: 40px;
}

#pageSuccessMessage {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 0.5s;
}

#bookingRef {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.booking-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
}

.info-header {
    margin-bottom: 30px;
}

.info-header h3 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.info-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.info-note p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-note i {
    color: var(--accent);
    margin-top: 3px;
}

/* ===== NAVBAR PREMIUM TAG ===== */
.nav-tag.premium-tag {
    background: linear-gradient(135deg, #FFD166, #ffb347);
    color: var(--dark) !important;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.4);
    transition: var(--transition);
}

.nav-tag.premium-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.6);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .booking-page-content {
        grid-template-columns: 1fr;
    }
    
    .bridal-packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .bridal-hero-image {
        height: 300px;
    }
    
    .bridal-overlay {
        padding: 30px;
    }
    
    .bridal-overlay h3 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .bridal-hero-image {
        height: 250px;
        margin-bottom: 30px;
    }
    
    .bridal-overlay h3 {
        font-size: 1.6rem;
    }
    
    .bridal-overlay p {
        font-size: 1rem;
    }
    
    .bridal-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bridal-package-card.luxury {
        transform: translateY(0);
    }
    
    .bridal-package-card.luxury:hover {
        transform: translateY(-10px);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .bridal-process {
        padding: 30px 20px;
    }
    
    .video-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-page-header h2 {
        font-size: 2.2rem;
    }
    
    #bookingPageForm {
        padding: 30px 20px;
    }
    
    .booking-info-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .bridal-hero-image {
        height: 200px;
    }
    
    .bridal-overlay {
        padding: 20px;
    }
    
    .bridal-overlay h3 {
        font-size: 1.4rem;
    }
    
    .bridal-package-card {
        padding: 25px 20px;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .photo-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-page-header h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* NAVBAR FIX - Premium Bridal Package spacing */
.desktop-nav ul {
    display: flex;
    gap: 25px; /* Reduced gap to prevent sticking */
}

.nav-tag.premium-tag {
    padding: 6px 14px;
    font-size: 14px;
    white-space: nowrap;
}

/* PREMIUM BRIDAL PACKAGE LINE REMOVAL */
.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: none !important; /* LINE HATA DI */
}

/* POPUP FIX - Bigger image with close button outside */
.offer-popup {
    background: rgba(0, 0, 0, 0.9);
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 10px;
    background: white;
}

.popup-image-main {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

/* CLOSE BUTTON OUTSIDE IMAGE */
.popup-close-btn {
    position: absolute;
    top: -45px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #8B5FBF;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #8B5FBF;
    color: white;
    transform: rotate(90deg);
}



/* Responsive fixes for popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
    }
    
    .popup-close-btn {
        top: -40px;
        right: 0;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .popup-content {
        max-width: 98%;
    }
    
    .popup-close-btn {
        top: -35px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


