/* style.css */
/* Custom styles to enhance Tailwind */
.whatsapp-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Gallery lightbox transition */
#lightbox {
    transition: opacity 0.3s ease;
}

/* Testimonial slider */
.testimonial-track {
    display: flex;
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
}

/* FAQ transitions */
.faq-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Hero section full viewport height */
header {
    min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 0 1rem;
    }
}
/* Navigation Styles */
nav {
    transition: all 0.3s ease;
}

#mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.block {
    max-height: 300px;
}

/* Sticky header when scrolling */
.sticky-nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

/* Active link style */
.active-link {
    color: #dc2626 !important;
    font-weight: 600;
}