/* LX Hair Lounge Global Design System Styles */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Sticky Navbar Transition */
.elementor-location-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.elementor-location-header.lx-scrolled-a69769e3 {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(46, 42, 38, 0.1);
}

/* Fade-up Animation for Sections */
.lx-fade-up-a69769e3 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lx-fade-up-a69769e3.lx-visible-a69769e3 {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Grid Animation */
.lx-stagger-item-a69769e3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lx-stagger-item-a69769e3.lx-visible-a69769e3 {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Zoom on Images and Cards */
.elementor-widget-image img,
.elementor-image img,
[class*="service-card"],
[class*="card"] {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-widget-image:hover img,
.elementor-image:hover img {
    transform: scale(1.05);
}

[class*="service-card"]:hover,
[class*="card"]:hover {
    transform: translateY(-8px);
}

/* Carousel Smooth Transitions */
.swiper-slide {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Rounded Corners and Soft Shadows */
.elementor-widget-image img,
[class*="card"],
.elementor-carousel-image {
    border-radius: 12px;
    overflow: hidden;
}

/* WhatsApp Floating Button */
.lx-whatsapp-float-a69769e3 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

body.admin-bar .lx-whatsapp-float-a69769e3 {
    bottom: calc(30px + var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .lx-whatsapp-float-a69769e3 {
        bottom: calc(30px + 46px);
    }
}

.lx-whatsapp-btn-a69769e3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: lx-pulse-a69769e3 2s ease-in-out infinite;
}

.lx-whatsapp-btn-a69769e3:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes lx-pulse-a69769e3 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lx-whatsapp-float-a69769e3 {
        bottom: 20px;
        right: 20px;
    }
    
    .lx-whatsapp-btn-a69769e3 {
        width: 50px;
        height: 50px;
    }
    
    .lx-whatsapp-btn-a69769e3 svg {
        width: 24px;
        height: 24px;
    }
}