/* 
   Pro Leads Media - UI/UX Styling & Transitions System
   Designed for smooth performance & responsiveness
*/

/* Scroll Animation Classes (Intersection Observer triggers .revealed) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay classes for grid items */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Button CTA Micro-interactions */
.btn-cta {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(123, 218, 0, 0.4), 0 0 15px 0 rgba(123, 218, 0, 0.3) !important;
}

.btn-cta:active {
    transform: scale(0.97) translateY(0);
}

.btn-secondary {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(74, 105, 132, 0.3) !important;
}

.btn-secondary:active {
    transform: scale(0.97) translateY(0);
}

/* Card Hover Micro-interactions (Bento cards, benefit cards, etc.) */
.hover-card-trigger {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hover-card-trigger:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #7BDA00 !important;
    box-shadow: 0 20px 30px -10px rgba(11, 27, 61, 0.7), 0 0 22px 0 rgba(123, 218, 0, 0.18) !important;
}

/* Form inputs styling */
.input-glow {
    transition: all 0.3s ease;
}
.input-glow:focus {
    box-shadow: 0 0 15px rgba(123, 218, 0, 0.25);
    border-color: #7BDA00 !important;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B1B3D;
}
::-webkit-scrollbar-thumb {
    background: #1A2F5B;
    border-radius: 9999px;
    border: 2px solid #0B1B3D;
}
::-webkit-scrollbar-thumb:hover {
    background: #7BDA00;
}
