﻿/* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Color Variables */
            --rose-gold: linear-gradient(135deg, #e0bfb8 0%, #d4a5a5 100%);
            --soft-pink: #f8e8e8;
            --burgundy: #8a1c3f;
            --gold: #d4af37;
            --cream: #fffaf5;
            --dark-text: #333333;
            --light-text: #666666;
            
            /* Font Variables */
            --heading-font: 'Playfair Display', serif;
            --subheading-font: 'Poppins', sans-serif;
            --body-font: 'Montserrat', sans-serif;
            
            /* Spacing Variables */
            --section-padding: 80px 20px;
            --container-width: 1200px;
            
            /* Transition Variables */
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--dark-text);
            background-color: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Page Container - Removed for multi-page setup */

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--heading-font);
            font-weight: 600;
            line-height: 1.3;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--burgundy);
            position: relative;
        }

        .section-subtitle {
            font-family: var(--subheading-font);
            text-align: center;
            color: var(--light-text);
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .title-underline {
            width: 80px;
            height: 3px;
            background: var(--rose-gold);
            margin: 0 auto 40px;
            border-radius: 2px;
        }

        /* Buttons */
        .btn-primary, .btn-secondary, .btn-whatsapp {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 50px;
            font-family: var(--subheading-font);
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--rose-gold);
            color: white;
            box-shadow: 0 4px 15px rgba(138, 28, 63, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(138, 28, 63, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--burgundy);
            border: 2px solid var(--burgundy);
        }

        .btn-secondary:hover {
            background: var(--burgundy);
            color: white;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
        }

        /* Header & Navigation */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: #faf8f5;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px 15px 30px;
            flex-wrap: nowrap;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-icon {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--burgundy);
            margin-bottom: 2px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .tagline {
            font-family: var(--subheading-font);
            font-size: 0.8rem;
            color: var(--light-text);
            white-space: nowrap;
        }

        .main-nav {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-family: var(--subheading-font);
            font-weight: 500;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
            cursor: pointer;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--burgundy);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--rose-gold);
        }

        .header-cta {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .phone-btn, .whatsapp-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .phone-btn {
            background: var(--burgundy);
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .phone-btn:hover, .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--burgundy);
            cursor: pointer;
            padding: 8px;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--rose-gold);
            transform: scale(1.1);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
        }

        /* Home Page Styles */
        /* Hero Slider - Modern Design */
        .hero-slider {
            margin-top: 120px;
            height: 90vh;
            min-height: 650px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fdf6f3 0%, #f8e8e8 50%, #fffaf5 100%);
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }

        .slide::before {
            display: none;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            display: none;
        }

        .slide-content::before {
            display: none;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-title {
            font-size: 4rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.2;
        }

        .slide-description {
            font-size: 1.4rem;
            margin-bottom: 40px;
            font-family: var(--subheading-font);
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .slide-buttons .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
            color: #333;
            font-weight: 600;
            padding: 16px 40px;
            font-size: 1.05rem;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            border: none;
        }

        .slide-buttons .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
        }

        .slide-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
            padding: 16px 40px;
            font-size: 1.05rem;
            letter-spacing: 1px;
        }

        .slide-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            color: white;
        }

        .slider-controls {
            display: none;
        }

        .slider-prev, .slider-next {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-prev:hover, .slider-next:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .dot.active {
            background: var(--gold);
            border-color: white;
            transform: scale(1.3);
        }

        /* Services Highlights */
        .services-highlight {
            padding: var(--section-padding);
            background: var(--soft-pink);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        .services-cta .btn-primary {
            padding: 16px 40px;
            font-size: 1.05rem;
            background: linear-gradient(135deg, var(--burgundy) 0%, #a02050 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(138, 28, 63, 0.3);
        }

        .services-cta .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(138, 28, 63, 0.4);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 2;
        }

        .service-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
            transition: transform 0.5s ease;
        }

        .service-content {
            padding: 25px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--burgundy);
        }

        .service-description {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .service-link {
            color: var(--burgundy);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
            cursor: pointer;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* Why Choose Us */
        .why-choose-us {
            padding: var(--section-padding);
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 25px;
            border-radius: 15px;
            background: var(--soft-pink);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--burgundy);
        }

        .feature-card p {
            color: var(--light-text);
        }

        /* Testimonials */
        .testimonials {
            padding: var(--section-padding);
            background: var(--soft-pink);
        }

        .testimonial-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }

        .testimonial-wrapper {
            position: relative;
            min-height: 300px;
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 40px;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateX(0);
            position: relative;
        }

        .client-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            border: 5px solid var(--soft-pink);
        }

        .testimonial-content {
            flex: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--light-text);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .client-name {
            font-size: 1.3rem;
            color: var(--burgundy);
            margin-bottom: 5px;
        }

        .client-service {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .rating {
            color: var(--gold);
            font-size: 1rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .testimonial-prev, .testimonial-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--burgundy);
            color: var(--burgundy);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-prev:hover, .testimonial-next:hover {
            background: var(--burgundy);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: var(--rose-gold);
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .cta-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About Page Styles */
        .about-hero {
            margin-top: 120px;
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .about-hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content {
            padding: var(--section-padding);
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--burgundy);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: var(--soft-pink);
            border-radius: 15px;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--burgundy);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--light-text);
        }

        /* Services Page Styles */
        .services-hero {
            margin-top: 120px;
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .services-hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .services-categories {
            padding: var(--section-padding);
            background: var(--soft-pink);
        }

        .category-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid var(--burgundy);
            border-radius: 50px;
            font-family: var(--subheading-font);
            font-weight: 500;
            color: var(--burgundy);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--burgundy);
            color: white;
        }

        .category-section {
            margin-bottom: 80px;
        }

        .category-title {
            font-size: 2.2rem;
            color: var(--burgundy);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--rose-gold);
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-item {
            background: white;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-item-image {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            background-color: #faf8f5;
            border-radius: 15px 15px 0 0;
            transition: transform 0.5s ease;
        }

        .service-item:hover .service-item-image {
            transform: scale(1.05);
        }

        .service-item-header {
            padding: 20px 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .service-item-name {
            font-size: 1.4rem;
            color: var(--burgundy);
        }

        .service-item-price {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gold);
            background: var(--soft-pink);
            padding: 5px 15px;
            border-radius: 50px;
        }

        .service-item-desc {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
            padding: 0 30px;
        }

        .service-item-book {
            width: calc(100% - 60px);
            margin: 0 30px 30px;
            padding: 12px;
            background: var(--rose-gold);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: var(--subheading-font);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .service-item-book:hover {
            background: var(--burgundy);
        }

        /* Gallery Page Styles */
        .gallery-hero {
            margin-top: 120px;
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .gallery-hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .gallery-content {
            padding: var(--section-padding);
            background: white;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .gallery-btn {
            padding: 12px 25px;
            background: white;
            border: 2px solid var(--burgundy);
            border-radius: 50px;
            font-family: var(--subheading-font);
            font-weight: 500;
            color: var(--burgundy);
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-btn.active, .gallery-btn:hover {
            background: var(--burgundy);
            color: white;
        }

        /* Gallery Grid - Responsive Layout */
        /* Full width, stretches across the page */
        /* Desktop: 4 columns, Tablet: 2 columns, Mobile: 1 column */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* =============================================
           GALLERY SECTION HEADINGS
           For subcategory organization (e.g., Hairstyles)
           ============================================= */
        .gallery-section-heading {
            grid-column: 1 / -1; /* Spans full width */
            text-align: center;
            padding: 30px 20px 15px;
            margin-top: 20px;
        }

        .gallery-section-heading:first-child {
            margin-top: 0;
            padding-top: 10px;
        }

        .gallery-section-heading h3 {
            font-family: var(--heading-font);
            font-size: 1.6rem;
            color: var(--burgundy);
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }

        .gallery-section-heading h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--soft-pink), var(--burgundy), var(--soft-pink));
            border-radius: 2px;
        }

        /* =============================================
           GALLERY CARD STYLING
           - Fixed aspect ratio with consistent sizing
           - Images fill entire card using object-fit: cover
           - Professional premium bridal salon look
           - Centered and properly scaled
           - NO overflow allowed
           ============================================= */
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            cursor: pointer;
            /* Fixed aspect ratio - consistent card size */
            aspect-ratio: 3 / 4;
            width: 100%;
            background-color: #f8f4f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
        }

        /* IMAGE STYLING - Fills entire card, properly contained
           - position: absolute ensures no overflow
           - object-fit: cover fills the card completely
           - object-position: center keeps image centered */
        .gallery-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            color: white;
            padding: 25px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Loading indicator - not used in static version */
        .gallery-loading {
            text-align: center;
            padding: 40px;
            color: var(--burgundy);
            font-size: 1.2rem;
            display: none;
        }

        .gallery-loading.active {
            display: block;
        }

        .gallery-loading i {
            margin-right: 10px;
        }

        /* =============================================
           DYNAMIC CATEGORY GALLERY VARIANTS
           Same styling as .gallery-item for consistency
           - NO overflow allowed
           ============================================= */
        .gallery-item-contain,
        .gallery-item-cover,
        .gallery-item-fill {
            background-color: #f8f4f0;
        }

        /* Images fill cards completely - properly contained */
        .gallery-item-contain img,
        .gallery-item-cover img,
        .gallery-item-fill img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .gallery-item-contain:hover img,
        .gallery-item-cover:hover img,
        .gallery-item-fill:hover img {
            transform: scale(1.05);
        }

        /* =============================================
           NAIL ART GALLERY CARDS
           - FIXED height for ALL cards (consistent sizing)
           - Images FILL the card area completely
           - object-fit: cover for full visual fill
           - Images centered horizontally and vertically
           - Titles below images (not overlapping)
           - Light neutral background (cream/off-white)
           - CSS Grid for uniform layout
           ============================================= */
        .gallery-card-nailart {
            background-color: #fffaf5;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .gallery-card-nailart:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        /* Image wrapper - FIXED height, images fill completely */
        .nailart-image-wrapper {
            width: 100%;
            height: 280px;
            background-color: #faf6f3;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0;
        }

        /* Image styling - FILLS card completely, centered */
        .nailart-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-card-nailart:hover .nailart-image-wrapper img {
            transform: scale(1.05);
        }

        /* Caption below image - fixed styling */
        .nailart-caption {
            padding: 14px 12px;
            text-align: center;
            background: #fff;
            border-top: 1px solid #f0ebe5;
            flex-shrink: 0;
        }

        .nailart-caption h4 {
            font-family: var(--heading-font);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--burgundy);
            margin: 0;
            line-height: 1.3;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .lightbox-prev, .lightbox-next {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ============================================
           NEW BOOKING PAGE DESIGN - Split Layout
           ============================================ */
        .booking-page {
            margin-top: 120px;
            min-height: calc(100vh - 120px);
            background: linear-gradient(135deg, #fdf6f3 0%, #f8e8e8 50%, #fffaf5 100%);
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 120px);
        }

        /* Left Side - Info Panel */
        .booking-left {
            background: linear-gradient(135deg, rgba(138, 28, 63, 0.95) 0%, rgba(70, 15, 35, 0.98) 100%), url('images/bridal makeup.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .booking-left::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .booking-left-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 500px;
        }

        .booking-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.4);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .booking-badge i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .booking-badge span {
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .booking-left-content h2 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .booking-left-content h2 span {
            color: var(--gold);
            font-style: italic;
        }

        .booking-left-content > p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .booking-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .booking-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-box i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .feature-text h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .feature-text p {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .booking-contact-quick {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .booking-contact-quick p {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-bottom: 10px;
        }

        .booking-contact-quick a {
            color: var(--gold);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .booking-contact-quick a:hover {
            color: white;
        }

        /* Right Side - Form Panel */
        .booking-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            overflow-y: auto;
        }

        .booking-form-card {
            width: 100%;
            max-width: 520px;
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(138, 28, 63, 0.1);
        }

        .form-card-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .step-indicator .step {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f0e8e5;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .step-indicator .step.active {
            background: linear-gradient(135deg, var(--burgundy), #a02050);
            color: white;
        }

        .step-indicator .step-line {
            width: 40px;
            height: 2px;
            background: #e0d8d5;
        }

        .form-card-header h3 {
            font-size: 1.6rem;
            color: var(--burgundy);
            margin-bottom: 8px;
        }

        .form-card-header p {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        /* New Form Styles */
        .booking-form-new .form-section {
            margin-bottom: 25px;
        }

        .form-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0e8e5;
        }

        .form-section-title i {
            color: var(--gold);
            font-size: 1rem;
        }

        .form-section-title span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--burgundy);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-field {
            position: relative;
            margin-bottom: 15px;
        }

        .form-field.full-width {
            grid-column: 1 / -1;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            padding: 16px 18px 16px 45px;
            border: 2px solid #e8e0dd;
            border-radius: 12px;
            font-family: var(--body-font);
            font-size: 0.95rem;
            background: #fafafa;
            color: var(--dark-text);
            transition: var(--transition);
        }

        .form-field textarea {
            padding-left: 18px;
            padding-top: 35px;
            min-height: 100px;
            resize: vertical;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--burgundy);
            background: white;
            box-shadow: 0 0 0 4px rgba(138, 28, 63, 0.08);
        }

        .form-field label {
            position: absolute;
            left: 45px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            pointer-events: none;
            background: transparent;
            padding: 0 5px;
        }

        .form-field textarea + label {
            top: 18px;
            left: 18px;
            transform: none;
        }

        .form-field input:focus + label,
        .form-field input:not(:placeholder-shown) + label,
        .form-field select:focus + label,
        .form-field select:valid + label,
        .form-field textarea:focus + label,
        .form-field textarea:not(:placeholder-shown) + label {
            top: 0;
            left: 15px;
            transform: translateY(-50%);
            font-size: 0.75rem;
            color: var(--burgundy);
            background: white;
            font-weight: 600;
        }

        .form-field .field-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #bbb;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .form-field input:focus ~ .field-icon,
        .form-field select:focus ~ .field-icon {
            color: var(--burgundy);
        }

        .form-field select {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a1c3f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        /* Submit Button */
        .submit-btn-new {
            width: 100%;
            padding: 18px 30px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            border-radius: 14px;
            font-family: var(--subheading-font);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .submit-btn-new:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .submit-btn-new .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .submit-btn-new .btn-content i {
            font-size: 1.4rem;
        }

        .submit-btn-new .btn-hover-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
            transition: left 0.3s ease;
        }

        .submit-btn-new:hover .btn-hover-effect {
            left: 0;
        }

        /* Form Footer */
        .form-footer {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #f0e8e5;
        }

        .secure-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.8rem;
            margin-bottom: 8px;
        }

        .secure-badge i {
            color: #27ae60;
        }

        .form-footer p {
            color: var(--light-text);
            font-size: 0.85rem;
        }

        /* Error & Success Messages */
        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .error-message i {
            font-size: 0.9rem;
        }

        .success-message {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        /* Contact Page Styles */
        .contact-hero {
            margin-top: 120px;
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .contact-hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .contact-content {
            padding: var(--section-padding);
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            background: var(--soft-pink);
            padding: 40px;
            border-radius: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--rose-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--burgundy);
        }

        .contact-details p {
            color: var(--light-text);
        }

        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Modern Salon Hours Section */
        .salon-hours-section {
            margin-top: 80px;
            text-align: center;
        }

        .hours-header {
            margin-bottom: 40px;
        }

        .hours-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--burgundy), #a02050);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(138, 28, 63, 0.3);
        }

        .hours-icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .hours-header h3 {
            font-size: 2.5rem;
            color: var(--burgundy);
            margin-bottom: 10px;
        }

        .hours-header p {
            color: var(--light-text);
            font-size: 1.1rem;
        }

        .hours-card {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(138, 28, 63, 0.1);
            overflow: hidden;
        }

        .hours-highlight {
            background: linear-gradient(135deg, var(--burgundy) 0%, #a02050 100%);
            padding: 35px 30px;
            color: white;
        }

        .highlight-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
        }

        .highlight-badge i {
            color: var(--gold);
        }

        .highlight-badge span {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .highlight-time {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .time-from, .time-to {
            font-size: 2.2rem;
            font-weight: 700;
            font-family: var(--heading-font);
        }

        .time-separator {
            font-size: 1rem;
            opacity: 0.7;
            text-transform: uppercase;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0;
            padding: 0;
            border-bottom: 1px solid #f0e8e5;
        }

        .day-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px 10px;
            border-right: 1px solid #f0e8e5;
            transition: all 0.3s ease;
        }

        .day-item:last-child {
            border-right: none;
        }

        .day-item:hover {
            background: var(--soft-pink);
        }

        .day-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--burgundy);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .day-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .day-dot.open {
            background: #27ae60;
            box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
        }

        .day-dot.closed {
            background: #e74c3c;
        }

        .day-time {
            font-size: 0.8rem;
            color: var(--light-text);
            white-space: nowrap;
        }

        .hours-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 20px 30px;
            background: #faf8f5;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .hours-note i {
            color: var(--gold);
            font-size: 1rem;
        }

        .hours-cta {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hours-cta .btn-primary,
        .hours-cta .btn-secondary {
            padding: 16px 35px;
            font-size: 1rem;
        }

        /* Responsive Salon Hours */
        @media (max-width: 768px) {
            .hours-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .day-item:nth-child(4) {
                border-right: none;
            }

            .day-item:nth-child(n+5) {
                border-top: 1px solid #f0e8e5;
            }

            .time-from, .time-to {
                font-size: 1.8rem;
            }

            .hours-header h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hours-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .day-item:nth-child(2n) {
                border-right: none;
            }

            .day-item:nth-child(n+3) {
                border-top: 1px solid #f0e8e5;
            }

            .day-item:nth-child(4) {
                border-right: 1px solid #f0e8e5;
            }

            .hours-highlight {
                padding: 25px 20px;
            }

            .time-from, .time-to {
                font-size: 1.5rem;
            }

            .hours-header h3 {
                font-size: 1.8rem;
            }

            .hours-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .hours-icon-wrapper i {
                font-size: 1.5rem;
            }

            .hours-note {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .hours-cta {
                flex-direction: column;
                align-items: center;
            }

            .hours-cta .btn-primary,
            .hours-cta .btn-secondary {
                width: 100%;
                max-width: 280px;
            }
        }

        /* Footer - Modern Design */
        .main-footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            color: #b8b8c8;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
        }

        .footer-top {
            padding: 80px 20px 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 0;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo-img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            padding: 5px;
        }

        .footer-logo i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-logo h3 {
            color: white;
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .footer-description {
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 0.95rem;
            color: #9a9ab0;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #b8b8c8;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--burgundy), #a02050);
            border-color: transparent;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(138, 28, 63, 0.3);
        }

        .footer-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: #9a9ab0;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .footer-links a::before {
            content: '';
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a:hover::before {
            width: 15px;
        }

        .footer-col .contact-info {
            background: linear-gradient(135deg, rgba(138, 28, 63, 0.15), rgba(212, 175, 55, 0.1));
            padding: 25px;
            border-radius: 16px;
            margin-top: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .footer-col .contact-info p {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
            color: #b8b8c8;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .footer-col .contact-info i {
            color: var(--gold);
            width: 20px;
            font-size: 1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-col .contact-info p:last-child {
            margin-bottom: 0;
        }

        .footer-bottom {
            text-align: center;
            padding: 25px 20px;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            color: #7a7a8c;
        }

        .footer-bottom p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-wrap: wrap;
        }

        .footer-bottom i.fa-heart {
            color: #e74c3c;
            animation: heartbeat 1.5s ease infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Floating Action Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            animation: jump 2s ease-in-out infinite;
            position: relative;
        }

        .floating-btn:nth-child(1) {
            animation-delay: 0s;
        }

        .floating-btn:nth-child(2) {
            animation-delay: 0.3s;
        }

        .floating-btn:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes jump {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            animation: none;
        }

        .floating-whatsapp {
            background: #25D366;
        }

        .floating-whatsapp:hover {
            background: #128C7E;
        }

        .floating-call {
            background: var(--burgundy);
        }

        .floating-call:hover {
            background: #6a0f2e;
        }

        .floating-book {
            background: var(--rose-gold);
            background: linear-gradient(135deg, #e0bfb8 0%, #d4a5a5 100%);
        }

        .floating-book:hover {
            background: linear-gradient(135deg, #d4a5a5 0%, #e0bfb8 100%);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .slide-title {
                font-size: 3rem;
            }

            .slide-description {
                font-size: 1.2rem;
            }

            .slide-content {
                padding: 50px 30px;
            }

            .slide-content::before {
                font-size: 1.6rem;
            }
            
            .testimonial-card {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding: 30px;
            }
            
            .client-image {
                width: 120px;
                height: 120px;
            }
            
            .about-hero h2, .services-hero h2, .gallery-hero h2, .booking-hero h2, .contact-hero h2 {
                font-size: 2.8rem;
            }

            /* Gallery Grid - Tablet: 2 columns */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 20px;
            }

            .gallery-section-heading h3 {
                font-size: 1.4rem;
            }

            /* Nail Art - Tablet adjustments */
            .nailart-image-wrapper {
                height: 240px;
            }

            .nailart-caption {
                padding: 12px 10px;
            }

            .nailart-caption h4 {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .main-header .container {
                display: flex;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
                padding: 12px 15px 12px 20px;
                gap: 15px;
            }

            .logo {
                flex: 1 1 auto;
                min-width: 0;
                display: flex;
                align-items: center;
            }

            .logo a {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
                min-width: 0;
            }

            .logo-icon {
                width: 65px;
                height: 65px;
                flex-shrink: 0;
            }

            .logo-text {
                flex: 1 1 auto;
                min-width: 0;
            }

            .logo-text h1 {
                font-size: 1.1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                margin: 0;
                line-height: 1.3;
            }

            .tagline {
                display: none;
            }

            .main-nav {
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                order: 2;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                flex-shrink: 0;
                cursor: pointer;
                z-index: 1001;
                background: transparent;
                border-radius: 8px;
                transition: var(--transition);
            }

            .mobile-menu-btn:hover {
                background: var(--soft-pink);
            }

            /* Mobile Menu Overlay - Show on mobile */
            .mobile-menu-overlay {
                display: block;
                pointer-events: none;
            }

            .mobile-menu-overlay.active {
                pointer-events: auto;
            }

            /* Modern Slide-in Drawer Menu */
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                max-width: 85%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding: 0;
                gap: 0;
                transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
                z-index: 999;
                overflow-y: auto;
                display: flex;
            }

            .nav-links.active {
                right: 0;
            }

            /* Mobile Menu Header */
            .nav-links::before {
                content: 'Menu';
                display: block;
                padding: 25px 25px 20px;
                font-family: var(--heading-font);
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--burgundy);
                border-bottom: 2px solid var(--soft-pink);
                background: linear-gradient(135deg, #faf8f5 0%, #f8e8e8 100%);
            }

            .nav-links li {
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                padding: 18px 25px;
                justify-content: flex-start;
                width: 100%;
                font-size: 1rem;
                gap: 15px;
                border-radius: 0;
                position: relative;
                overflow: hidden;
            }

            .nav-links a i {
                width: 24px;
                height: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                color: var(--burgundy);
                transition: var(--transition);
            }

            .nav-links a::after {
                display: none !important;
            }

            .nav-links a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 4px;
                height: 100%;
                background: var(--burgundy);
                transform: scaleY(0);
                transition: transform 0.2s ease;
            }

            .nav-links a.active {
                background: linear-gradient(90deg, var(--soft-pink) 0%, rgba(248, 232, 232, 0.3) 100%);
                color: var(--burgundy);
                font-weight: 600;
            }

            .nav-links a.active::before {
                transform: scaleY(1);
            }

            .nav-links a.active i {
                color: var(--burgundy);
            }

            .nav-links a:hover {
                background: linear-gradient(90deg, rgba(248, 232, 232, 0.5) 0%, transparent 100%);
            }

            .nav-links a:hover i {
                transform: scale(1.1);
            }

            /* Mobile Menu Footer - Contact Info */
            .nav-links::after {
                content: '';
                display: block;
                flex: 1;
            }

            .header-cta {
                display: none;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
                gap: 12px;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .logo-icon {
                width: 60px;
                height: 60px;
            }

            .logo-text h1 {
                font-size: 1.2rem;
                white-space: normal;
            }

            .tagline {
                font-size: 0.7rem;
                white-space: normal;
            }

            .logo {
                gap: 10px;
            }

            .main-header .container {
                padding: 12px 15px 12px 20px;
                flex-wrap: nowrap;
            }

            .main-nav {
                order: 2;
                width: auto;
                justify-content: flex-end;
            }

            .slide-title {
                font-size: 2.4rem;
                letter-spacing: 1px;
            }

            .slide-description {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .slide-content {
                padding: 40px 25px;
                margin: 0 15px;
            }

            .slide-content::before {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .slide-buttons .btn-primary,
            .slide-buttons .btn-secondary {
                padding: 14px 30px;
                font-size: 0.95rem;
            }

            .slider-controls {
                bottom: 30px;
            }

            .slider-prev, .slider-next {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px 30px;
            }

            .footer-col:first-child {
                grid-column: 1 / -1;
            }

            .footer-top {
                padding: 60px 20px 50px;
            }

            .footer-logo h3 {
                font-size: 1.4rem;
            }

            .footer-title {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            /* New Booking Page - Tablet */
            .booking-page {
                margin-top: 100px;
            }

            .booking-wrapper {
                grid-template-columns: 1fr;
            }

            .booking-left {
                padding: 50px 30px;
                min-height: auto;
            }

            .booking-left-content h2 {
                font-size: 2.2rem;
            }

            .booking-right {
                padding: 30px 20px;
            }

            .booking-form-card {
                padding: 30px 25px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .about-hero, .services-hero, .gallery-hero, .contact-hero {
                padding: 80px 20px;
            }

            .about-hero h2, .services-hero h2, .gallery-hero h2, .contact-hero h2 {
                font-size: 2.2rem;
            }

            /* Mobile Banner - Full width, only show active slide */
            .hero-slider {
                margin-top: 100px;
                height: auto;
                min-height: auto;
                background: none;
            }

            .slider-container {
                height: auto;
            }

            .slider-wrapper {
                position: relative;
            }

            .slide {
                display: none;
                position: relative;
                width: 100%;
                height: 0;
                padding-bottom: 56%;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                opacity: 1;
            }

            .slide.active {
                display: block;
            }

            /* Service Items - Tablet: Better image display */
            .service-item-image {
                height: 280px;
                background-size: cover;
                background-position: top center;
            }

            .services-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            /* Body scroll lock when menu is open */
            body.menu-open {
                overflow: hidden;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            /* New Booking Page - Mobile */
            .booking-page {
                margin-top: 80px;
                padding: 10px;
            }

            .booking-left {
                padding: 30px 20px;
            }

            .booking-badge {
                padding: 6px 14px;
                font-size: 0.75rem;
            }

            .booking-left h2 {
                font-size: 1.6rem;
                margin-bottom: 12px;
            }

            .booking-left > .booking-left-content > p {
                font-size: 0.9rem;
            }

            .booking-features {
                gap: 15px;
                margin: 25px 0;
            }

            .booking-feature {
                gap: 12px;
            }

            .feature-icon-box {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .feature-text h4 {
                font-size: 0.95rem;
            }

            .feature-text p {
                font-size: 0.8rem;
            }

            .booking-contact-quick {
                padding: 15px;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .booking-contact-quick a {
                font-size: 0.95rem;
            }

            .booking-right {
                padding: 20px 15px;
            }

            .booking-form-card {
                padding: 25px 20px;
                border-radius: 20px;
            }

            .form-card-header {
                margin-bottom: 25px;
            }

            .step-indicator .step {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }

            .step-line {
                width: 25px;
            }

            .form-card-header h3 {
                font-size: 1.3rem;
            }

            .form-card-header p {
                font-size: 0.85rem;
            }

            .form-section {
                margin-bottom: 20px;
                padding-bottom: 20px;
            }

            .form-section-title {
                font-size: 0.85rem;
                gap: 8px;
                margin-bottom: 15px;
            }

            .form-section-title i {
                font-size: 0.9rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .form-field {
                margin-bottom: 15px;
            }

            .form-field input,
            .form-field select,
            .form-field textarea {
                padding: 14px 16px 14px 45px;
                font-size: 0.95rem;
                border-radius: 10px;
            }

            .form-field label {
                font-size: 0.9rem;
                left: 45px;
            }

            .field-icon {
                left: 16px;
                font-size: 0.9rem;
            }

            .submit-btn-new {
                padding: 16px 25px;
                font-size: 1rem;
                border-radius: 12px;
            }

            .submit-btn-new i {
                font-size: 1.2rem;
            }

            .form-footer {
                margin-top: 20px;
                gap: 8px;
            }

            .secure-badge {
                font-size: 0.8rem;
            }

            .form-footer p {
                font-size: 0.75rem;
            }

            /* Service Items - Mobile: Show full images with faces visible */
            .service-item-image {
                height: 350px;
                background-size: cover;
                background-position: top center;
            }

            .service-item-header {
                padding: 15px 20px 0;
            }

            .service-item-name {
                font-size: 1.2rem;
            }

            .service-item-price {
                font-size: 1.1rem;
                padding: 4px 12px;
            }

            .service-item-desc {
                padding: 0 20px;
                font-size: 0.9rem;
            }

            .service-item-book {
                width: calc(100% - 40px);
                margin: 0 20px 20px;
            }

            .services-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-item {
                max-width: 100%;
            }

            /* Gallery Grid - Mobile: 1 column, full width */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 100%;
                padding: 0 15px;
            }

            .gallery-section-heading {
                padding: 20px 15px 10px;
                margin-top: 15px;
            }

            .gallery-section-heading h3 {
                font-size: 1.2rem;
                padding-bottom: 10px;
            }

            .gallery-section-heading h3::after {
                width: 60px;
            }

            /* Nail Art - Mobile adjustments */
            .nailart-image-wrapper {
                height: 300px;
            }

            .nailart-caption {
                padding: 14px 12px;
            }

            .nailart-caption h4 {
                font-size: 0.95rem;
            }

            .logo-icon {
                width: 55px;
                height: 55px;
            }

            .logo-text h1 {
                font-size: 1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                margin: 0;
                line-height: 1.3;
            }

            .tagline {
                display: none;
            }

            .logo {
                flex: 1 1 auto;
                min-width: 0;
                display: flex;
                align-items: center;
            }

            .logo a {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
                min-width: 0;
            }

            .logo-text {
                flex: 1 1 auto;
                min-width: 0;
            }

            .main-header .container {
                padding: 10px 12px 10px 18px;
                gap: 12px;
            }

            .main-nav {
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                order: 2;
            }

            .mobile-menu-btn {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }

            /* Smaller drawer on very small screens */
            .nav-links {
                width: 260px;
            }

            .nav-links::before {
                padding: 20px 20px 15px;
                font-size: 1.3rem;
            }

            .nav-links a {
                padding: 16px 20px;
                font-size: 0.95rem;
            }

            .nav-links a i {
                width: 22px;
                height: 22px;
                font-size: 1rem;
            }

            .floating-buttons {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }

            .floating-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            /* Mobile Banner - Full width (small screens) */
            .hero-slider {
                margin-top: 85px;
            }

            .slide.active {
                padding-bottom: 60%;
            }

            .slide-title {
                font-size: 1.9rem;
                letter-spacing: 0.5px;
            }

            .slide-description {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .slide-content {
                padding: 35px 20px;
            }

            .slide-content::before {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .slide-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .slide-buttons .btn-primary,
            .slide-buttons .btn-secondary {
                padding: 12px 28px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 220px;
            }

            .slider-prev, .slider-next {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .dot {
                width: 12px;
                height: 12px;
            }

            .btn-primary, .btn-secondary, .btn-whatsapp {
                width: 100%;
                max-width: 250px;
            }

            .services-grid, .features-grid {
                grid-template-columns: 1fr;
            }

            /* Footer Mobile */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }

            .footer-col:first-child {
                grid-column: 1;
            }

            .footer-top {
                padding: 50px 20px 40px;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-logo-img {
                width: 60px;
                height: 60px;
            }

            .footer-logo h3 {
                font-size: 1.3rem;
            }

            .footer-title {
                font-size: 1.1rem;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }

            .footer-col .contact-info {
                text-align: left;
            }

            .footer-bottom {
                padding: 20px 15px;
                font-size: 0.85rem;
            }

            .about-hero h2, .services-hero h2, .gallery-hero h2, .booking-hero h2, .contact-hero h2 {
                font-size: 1.8rem;
            }

            .category-filter, .gallery-filter {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }

            .filter-btn, .gallery-btn {
                padding: 8px 12px;
                font-size: 0.75rem;
                flex: 0 0 auto;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 10px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    gap: 4px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--primary-gold);
}

.mobile-bottom-nav .nav-item.active {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(212, 175, 55, 0.1));
}

.mobile-bottom-nav .nav-item:hover i,
.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-item span {
    white-space: nowrap;
}

/* Book Now button special styling */
.mobile-bottom-nav .nav-item.book-now,
.mobile-bottom-nav .nav-item.book-now.active,
.mobile-bottom-nav .nav-item.book-now:hover {
    background: linear-gradient(135deg, #B8860B, #D4AF37) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.mobile-bottom-nav .nav-item.book-now i,
.mobile-bottom-nav .nav-item.book-now.active i,
.mobile-bottom-nav .nav-item.book-now:hover i {
    color: #fff !important;
    font-size: 1.3rem !important;
    transform: none !important;
}

.mobile-bottom-nav .nav-item.book-now span,
.mobile-bottom-nav .nav-item.book-now.active span,
.mobile-bottom-nav .nav-item.book-now:hover span {
    color: #fff !important;
    font-size: 0.7rem !important;
}

.mobile-bottom-nav .nav-item.book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Add padding to body for mobile nav */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .main-footer {
        padding-bottom: 80px;
    }

    /* Hide floating buttons on mobile since we have bottom nav */
    .floating-buttons {
        display: none;
    }
}