    .input-field, .btn-primary { transition: all 0.2s; }
    .input-field { width: 100%; padding: 0.5rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem; }
    .input-field:focus { ring: 2px; ring-color: #3b82f6; border-color: #3b82f6; }
    .error-message { color: #ef4444; font-size: 0.875rem; margin-top: 0.25rem; display: none; }

        :root {
            --primary: #d4af7a;
            --primary-dark: #b8945f;
            --primary-light: #e7d4bc;
            --secondary: #9e8374;
            --accent: #c9b2a4;
            --text-primary: #5a4b41;
            --text-secondary: #9e8374;
            --surface: #f9f5f0;
            --background: #fdfcfb;
            --success: #a78a7b;
            --warning: #e2cdbc;
        }

        /* Navigation */
        nav {
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        /* Mobile Menu - Right to Left */
        #mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            padding: 80px 30px 40px;
            overflow-y: auto;
        }

        #mobile-menu.active {
            right: 0;
        }

        #mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        #mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

      
        /* Cards */
        .card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Feature Icons */
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 122, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 32px;
            color: var(--primary);
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-header {
            padding: 25px;
            text-align: center;
            color: white;
        }
        .service-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}
.service-header h2 {
    font-size: 1.6rem;
    margin: 0;
}
        .service-content {
            padding: 25px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e9e1da;
            position: relative;
            padding-left: 30px;
            transition: padding-left 0.3s ease;
        }

        .service-list li:before {
            content: "•";
            color: var(--primary);
            font-size: 24px;
            position: absolute;
            left: 0;
            top: 7px;
            transition: color 0.3s ease;
        }

        .service-list li:hover {
            padding-left: 35px;
        }

        .service-list li:hover:before {
            color: var(--primary-dark);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        /* Category Colors */
        .hair-care .service-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        .skin-care .service-header {
            background: linear-gradient(135deg, #b39685, #9e8374);
        }

        .threading-waxing .service-header {
            background: linear-gradient(135deg, #c9b2a4, #b39685);
        }

        .hands-feet .service-header {
            background: linear-gradient(135deg, #d4bcab, #c9b2a4);
        }

        .bridal-makeup .service-header {
            background: linear-gradient(135deg, #e2cdbc, #d4bcab);
        }

        .other-services .service-header {
            background: linear-gradient(135deg, #9e8374, #7a6155);
        }

        /* Gallery */
     .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            height: 250px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            cursor: pointer;
            /* aspect-ratio: 4/5; */
        }

        /* .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        } */

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
            opacity: 0;
            transition: all 0.4s ease;
            transform: translateY(20px);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styling */
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-bottom: none;
            padding: 20px;
        }

        .btn-close {
            filter: invert(1);
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-top: 30px;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 80px;
            color: var(--primary-light);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
            font-family: Georgia, serif;
        }

     

        /* Utility Classes */
        .text-primary {
            color: var(--primary) !important;
        }

        .text-secondary {
            color: var(--secondary) !important;
        }

        .bg-surface {
            background-color: var(--surface) !important;
        }

        .bg-gradient-warm {
            background: linear-gradient(135deg, var(--surface) 0%, var(--primary-light) 100%);
        }

        .bg-gradient-sanctuary {
            background: linear-gradient(135deg, #f9f2eb 0%, #e2d1c3 100%);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .gallery-item {
                height: 200px;
            }
        }
 
.breadcrumb-section {
    position: relative;
    background: url('/assets/img/banner.jpg') center/cover no-repeat;
    padding: 150px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.65));
    z-index: 0;
    /* border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px; */
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    /*max-width: 800px;*/
    margin: auto;
    padding: 20px;
    color: var(--ligh);
}

.breadcrumb-content h1 {
    font-size: 3rem;
    font-weight: 700;
    /* font-family: 'Playfair Display', serif;
    color: var(--primary); */
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    list-style: none;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    margin: 0 10px;
    color: var(--light);
    opacity: 0.7;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        :root {
            --dark: #3a3a3a;
            --light: #ffffff;
            --gray: #f5f5f5;
            --text: #333333;
            --text-light: #777777;
            --transition: all 0.3s ease;
        }
      
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img,
        .gallery-item:hover video {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1.5rem;
            color: var(--light);
            opacity: 0;
            transition: var(--transition);
            transform: translateY(10px);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--light);
            font-size: 3rem;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .video-item .play-icon {
            opacity: 1;
        }
        
        .gallery-item:hover .play-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(212, 175, 135, 0.3);
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(212, 175, 135, 0.4);
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-content img,
        .lightbox-content video {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
        }
        
        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 1rem;
            font-size: 1.2rem;
        }
        
        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-lightbox:hover {
            color: var(--primary);
        }
        
        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        img.rlogo {
    width: 100%;
    height: 100px;
}
footer img.rlogo {
    filter: brightness(0) invert(1);
}
 
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1021;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    animation: none;
}

#back-to-top {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

#whatsapp-btn {
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #128C7E, #25D366);
}

#call-btn {
    bottom: 170px;
    right: 30px;
    background: linear-gradient(135deg, #2A8AC9, #0077B5);
}

@media (max-width: 768px) {

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    #whatsapp-btn {
        bottom: 90px;
    }

    #call-btn {
        bottom: 150px;
    }
}
