


.card-responsive {
  contain: layout paint;
}


.checkbox:checked+.label .ball{transform:translateX(1.5rem)}.font-italic{font-style:italic}@media (max-width:768px){.tablet-grid-1{grid-template-columns:1fr!important}.tablet-stack{flex-direction:column!important}.tablet-text-center{text-align:center!important}}.btn-responsive{padding:.75rem 1.5rem;font-size:.875rem}.card-responsive{transition:transform .3s,box-shadow .3s}.card-responsive:hover{transform:translateY(-4px)}.form-input-responsive{padding:.75rem 1rem;font-size:.875rem}img{max-width:100%;height:auto}.section-padding{padding-top:3rem;padding-bottom:3rem}@media (min-width:768px){.btn-responsive{padding:.875rem 1.75rem;font-size:1rem}.form-input-responsive{padding:.875rem 1rem;font-size:1rem}.section-padding{padding-top:4rem;padding-bottom:4rem}}@media (min-width:1024px){.section-padding{padding-top:6rem;padding-bottom:6rem}}.nav-logo{max-height:4rem}@media (max-width:640px){.hero-section{padding-top:4rem!important;padding-bottom:4rem!important}.mobile-px-3{padding-left:.75rem!important;padding-right:.75rem!important}.mobile-text-center{text-align:center!important}.mobile-stack{flex-direction:column!important}.mobile-full-width{width:100%!important}.mobile-mb-4{margin-bottom:1rem!important}.mobile-py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.nav-logo{max-height:3rem}}

    .hero-slider {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-slide.active {
        opacity: 1;
    }

    .hero-content {
        transition: opacity 0.8s ease-in-out;
    }

    .hero-content.active {
        opacity: 1;
    }

    .hero-slider-prev:hover,
    .hero-slider-next:hover {
        background-color: rgba(255, 255, 255, 0.4) !important;
        transform: translateY(-50%) scale(1.1);
    }

    .hero-slider-dot.active {
        background-color: white !important;
        transform: scale(1.2);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .hero-slider-prev,
        .hero-slider-next {
            display: none;
        }
    }
    
    /* Logo overlay styling */
    .image-logo-overlay {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 110px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        padding: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        opacity: .8;
    }
    
    .image-logo-overlay img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* For dark mode */
    .dark .image-logo-overlay {
        background: rgba(15, 23, 42, 0.9); /* slate-900 */
        border: 1px solid rgba(100, 116, 139, 0.5); /* slate-600 */
    }
    
    /* Adjust for mobile */
    @media (max-width: 640px) {
        .image-logo-overlay {
            width: 90px;
            height: 32px;
            top: 8px;
            right: 8px;
            padding: 3px;
        }
    }
    
    /* For hero section images (if needed) */
    .hero-slide .image-logo-overlay {
        background: rgba(255, 255, 255, 0.95);
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }

    
    
     /* WhatsApp floating button - Always visible */
    #whatsapp-float {
        animation: floatIn 0.5s ease-out;
        position: fixed !important;
        bottom: 24px !important;
        left: 16px !important;
        z-index: 9999 !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    @keyframes floatIn {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Ensure content doesn't get hidden behind floating button on mobile */
    @media (max-width: 640px) {
        body {
            padding-bottom: 80px;
        }
    }