/* WhatsApp Floating Button Animation */
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-pulse {
    animation: pulse-orange 2s infinite;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0B0B;
}
::-webkit-scrollbar-thumb {
    background: #1F1F1F;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F16739;
}

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

/* Glassmorphism/Borders */
.glass-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(241, 103, 57, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

/* Link Underline Animation */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #F16739;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Footer Link Animation */
.footer-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: #F16739;
    transform: translateX(5px);
}

/* WhatsApp Hover Micro-animation */
.whatsapp-float:hover i {
    transform: scale(1.2) rotate(10deg);
}
.whatsapp-float i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Button Shimmer Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
}
.btn-shimmer:hover::before {
    left: 100%;
}

/* Hide x-cloak elements */
[x-cloak] { display: none !important; }

/* Cookie Modal Custom Style */
.cookie-modal-enter { opacity: 0; transform: translateY(20px); }
.cookie-modal-enter-active { opacity: 1; transform: translateY(0); transition: all 0.5s ease-out; }

/* Ensure AOS doesn't hide content if it fails to trigger */
[data-aos] {
    transition-property: transform, opacity;
}
html:not(.no-js) [data-aos] {
    opacity: 0;
}
html:not(.no-js) [data-aos].aos-animate {
    opacity: 1;
}
