/* ===== ENHANCED HERO SECTION STYLES ===== */
/* Fast Video Compressor - Premium Hero Enhancement */
/* Add this CSS link after other CSS files in head-css.php */

/* Enhanced Hero Container */
.hero-enhanced {
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Animated Badge at Top - Fixed positioning */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1E90FF 0%, #3B82F6 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    animation: hero-badge-pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hero-badge i {
    font-size: 14px;
    color: #FFD700;
    animation: bolt-flash 1.5s ease-in-out infinite;
}

@keyframes bolt-flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes hero-badge-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 5px 20px rgba(30, 144, 255, 0.4);
        transform: translateY(-1px);
    }
}

/* Premium Gradient Title - FIXED FOR VISIBILITY */
.hero-gradient-title {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 30%, #1E40AF 60%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0F172A;
    /* Fallback for older browsers */
    font-weight: 800 !important;
    letter-spacing: -1px;
    line-height: 1.15 !important;
    font-size: 40px !important;
    position: relative;
    padding-bottom: 5px;
    margin-top: 0 !important;
}

/* Fallback for browsers that don't support gradient text */
@supports not (-webkit-background-clip: text) {
    .hero-gradient-title {
        color: #0F172A !important;
        background: none !important;
    }
}

/* Enhanced Description */
.hero-description {
    font-size: 17px !important;
    color: #475569 !important;
    line-height: 1.8 !important;
    max-width: 520px;
    margin-top: 15px !important;
}

.hero-description strong {
    color: #1E40AF;
    font-weight: 700;
    background: linear-gradient(135deg, #DBEAFE 0%, #EDE9FE 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Download Button Section */
.hero-download-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

/* Premium Compatibility Badge - SIMPLIFIED TO AVOID BUTTON CONFUSION */
.hero-compat-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 10px 0;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-compat-badge i.fa-windows {
    font-size: 20px;
    color: #0078D4;
}

.hero-compat-badge>span {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
}

/* Trust Indicator - CHANGED TO TEXT STYLE, NOT BUTTON */
.hero-compat-badge .trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    border-left: 2px solid #E2E8F0;
    padding-left: 12px;
    margin-left: 5px;
}

.hero-compat-badge .trust-indicator i {
    font-size: 14px;
    color: #10B981;
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-enhanced {
        text-align: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 14px;
        margin-top: 5px;
    }

    .hero-gradient-title {
        font-size: 34px !important;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 16px !important;
        max-width: 100%;
        margin: 12px auto 0 auto !important;
    }

    .hero-download-section {
        align-items: center;
        justify-content: center;
    }

    .hero-compat-badge {
        justify-content: center;
        text-align: center;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 15px;
        letter-spacing: 0.3px;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .hero-gradient-title {
        font-size: 26px !important;
        letter-spacing: -0.3px;
        line-height: 1.25 !important;
    }

    .hero-description {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .hero-description strong {
        padding: 1px 4px;
        font-size: 13px;
    }

    .hero-compat-badge {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
        margin-top: 15px;
    }

    .hero-compat-badge i.fa-windows {
        font-size: 18px;
    }

    .hero-compat-badge>span {
        font-size: 13px;
    }

    .hero-compat-badge .trust-indicator {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 5px;
        font-size: 12px;
    }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 400px) {
    .hero-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .hero-gradient-title {
        font-size: 22px !important;
    }

    .hero-description {
        font-size: 13px !important;
    }
}