/* --- Base Styles --- */
body {
    min-height: 100dvh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #102216;
}

::-webkit-scrollbar-thumb {
    background: #11d452;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0ea841;
}

/* --- Tactical & Utility Styles --- */
.hero-texture {
    background-image: url('Images/hero-banner.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: contrast(1.25) brightness(0.9);
}

.red-glow {
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.tactical-border {
    border: 1px solid rgba(17, 212, 82, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s !important;
}

.stagger-2 {
    transition-delay: 0.2s !important;
}

.stagger-3 {
    transition-delay: 0.3s !important;
}

.stagger-4 {
    transition-delay: 0.4s !important;
}

.stagger-5 {
    transition-delay: 0.5s !important;
}

/* --- FAQ Styles --- */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* --- Mobile Components --- */
@media (max-width: 640px) {
    .mobile-float-cta {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 100;
        transform: translateY(100px);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .mobile-float-cta.visible {
        transform: translateY(0);
    }
}

/* --- Tactical Pricing Animations --- */
.btn-shine-effect {
    position: relative;
    overflow: hidden;
}

.btn-shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.radar-beam {
    background: linear-gradient(90deg, transparent, rgba(17, 212, 82, 0.2), transparent);
    background-size: 200% 100%;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#cookie-banner.cookie-visible {
    transform: translateY(0);
}