/* Explain: Custom component styles for animations and 3D social media buttons. */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.hover\:pause:hover {
    animation-play-state: paused;
}

@keyframes drift {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.animate-drift {
    animation: drift 0.5s linear infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.social-3d-btn {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    text-decoration: none;
    box-shadow: 
        0 10px 15px -3px rgba(0,0,0,0.4),
        inset 0 4px 5px rgba(255,255,255,0.4),
        inset 0 -4px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-icon 3s ease-in-out infinite;
}

.social-3d-btn:hover {
    transform: scale(1.15) translateY(-5px);
    animation-play-state: paused;
}

.social-3d-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 0s;
}

.social-3d-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    animation-delay: 0.2s;
}

.social-3d-btn.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    animation-delay: 0.4s;
}

/* Custom DaisyUI Step Primary Color */
.steps .step-primary:before, 
.steps .step-primary:after {
    background-color: var(--primary-color) !important;
    color: white !important;
}