html {
    scroll-behavior: smooth;
}

/* Button Pulse Effect on Hover */
@keyframes btn-pulse-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 89, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 168, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 89, 0);
    }
}

@keyframes btn-pulse-anim-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-slide {
    transition: all 0.3s ease;
}

.btn-slide:hover {
    animation: btn-pulse-anim 0.8s ease-out;
    transform: scale(1.02);
}

.btn-slide-gold {
    transition: all 0.3s ease;
}

.btn-slide-gold:hover {
    animation: btn-pulse-anim-white 0.8s ease-out;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b5925e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a2b4b;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Trigger class to start animation */
.visible .fade-in-up {
    opacity: 1;
    animation-play-state: running;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out forwards;
}

/* Gradient Text Animation (Liquid Wave) */
@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient-text {
    background: linear-gradient(-45deg, #b5925e, #d4b07a, #ffffff, #d4b07a, #b5925e);
    background-size: 300% 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-wave 4s ease infinite;
}

.animate-gradient-text-secondary {
    background: linear-gradient(-45deg, #ffffff, #c9cde1, #ffffff, #b4d3f9, #ffffff);
    background-size: 300% 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-wave 6s ease infinite;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.animate-whatsapp-pulse {
    animation: whatsapp-pulse 2s infinite;
}