/* ===================================
   SECTION BADGES - SEPARATED BY SECTION
   Each section has its own dedicated class
   =================================== */

/* ===== BASE BADGE STYLING (Generic fallback) ===== */
.section-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    background: rgba(248, 187, 47, 0.15) !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 3px solid var(--neon-gold) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(248, 187, 47, 0.5),
        inset 0 0 20px rgba(248, 187, 47, 0.1) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.section-badge span {
    color: var(--neon-gold) !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(248, 187, 47, 0.8),
        0 2px 5px rgba(0, 0, 0, 0.5) !important;
    text-transform: uppercase !important;
}

/* ===== HERO BADGE - MOVING BORDER ===== */
.hero-badge {
    display: inline-block !important;
    background: rgba(15, 23, 42, 0.8) !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    border: 3px solid transparent !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(248, 187, 47, 0.5),
        inset 0 0 20px rgba(248, 187, 47, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.hero-badge::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(90deg, #f8bb2f, #ffd700, #1e38ef, #4361ee, #f8bb2f) !important;
    background-size: 400% 100% !important;
    border-radius: 50px !important;
    z-index: -1 !important;
    animation: movingBorder 4s linear infinite !important;
    filter: blur(1px) !important;
}

.hero-badge span {
    color: var(--neon-gold) !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(248, 187, 47, 0.8) !important;
    text-transform: uppercase !important;
}

/* ===== CATEGORY BADGE - BLUE THEME ===== */
.category-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    background: rgba(30, 56, 239, 0.15) !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 3px solid var(--neon-blue) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(30, 56, 239, 0.5),
        inset 0 0 20px rgba(30, 56, 239, 0.1) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.category-badge span {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-gold)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

/* ===== PRODUCT BADGE - GOLD THEME ===== */
.product-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    background: rgba(248, 187, 47, 0.15) !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 3px solid var(--neon-gold) !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(248, 187, 47, 0.5),
        inset 0 0 20px rgba(248, 187, 47, 0.1) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.product-badge span {
    color: var(--neon-gold) !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(248, 187, 47, 0.8) !important;
    text-transform: uppercase !important;
}

/* ===== WHY BADGE - BLUE THEME ===== */
.why-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    background: rgba(30, 56, 239, 0.15) !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 3px solid var(--neon-blue) !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(30, 56, 239, 0.5) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.why-badge span {
    color: var(--neon-blue) !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(30, 56, 239, 0.8) !important;
    text-transform: uppercase !important;
}

/* ===== TESTIMONIAL BADGE - GOLD THEME ===== */
.testimonial-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    background: rgba(248, 187, 47, 0.15) !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    border: 3px solid var(--neon-gold) !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(248, 187, 47, 0.5) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
}

.testimonial-badge span {
    color: var(--neon-gold) !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-shadow: 0 0 15px rgba(248, 187, 47, 0.8) !important;
    text-transform: uppercase !important;
}

/* ===== ANIMATIONS ===== */

/* Pulse Animation */
@keyframes badgePulse {

    0%,
    100% {
        border-color: currentColor;
        box-shadow: 0 0 25px rgba(248, 187, 47, 0.5),
            inset 0 0 20px rgba(248, 187, 47, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(248, 187, 47, 0.8),
            0 0 60px rgba(248, 187, 47, 0.6),
            0 0 80px rgba(30, 56, 239, 0.3),
            inset 0 0 30px rgba(248, 187, 47, 0.2);
        transform: scale(1.03);
    }
}

/* Moving Border Animation (Hero only) */
@keyframes movingBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .section-badge,
    .hero-badge,
    .category-badge,
    .product-badge,
    .why-badge,
    .testimonial-badge {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }

    .hero-badge {
        padding: 10px 25px !important;
    }
}