/* /Components/About/AboutContactSection.razor.rz.scp.css */
/* ============================================
   ABOUT CONTACT SECTION - PREMIUM INTERACTIVE DESIGN
   ============================================ */

:root[b-p6is2er8wc] {
    --deep-blue: #0A0E27;
    --midnight-blue: #141939;
    --royal-purple: #7C3AED;
    --electric-purple: #A855F7;
    --gold: #FFD700;
    --bright-gold: #FFA500;
    --white: #FFFFFF;
}

/* ============================================
   MAIN SECTION CONTAINER
   ============================================ */

.contact-section-premium[b-p6is2er8wc] {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(180deg,
        #0A0E27 0%,
        #0f1230 50%,
        #0A0E27 100%
    );
    overflow: hidden;
}

/* ============================================
   ANIMATED BACKGROUND CIRCLES
   ============================================ */

.contact-gradient-bg[b-p6is2er8wc] {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.4;
}

.gradient-circle[b-p6is2er8wc] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: circleFloat-b-p6is2er8wc 30s ease-in-out infinite;
}

.circle-1[b-p6is2er8wc] {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2[b-p6is2er8wc] {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -80px;
    animation-delay: 10s;
}

.circle-3[b-p6is2er8wc] {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 20s;
}

@keyframes circleFloat-b-p6is2er8wc {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(40px, -40px);
    }
    66% {
        transform: translate(-30px, 30px);
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header-contact[b-p6is2er8wc] {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge-contact[b-p6is2er8wc] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(168, 85, 247, 0.15)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-icon-contact[b-p6is2er8wc] {
    color: var(--electric-purple);
    stroke-width: 2px;
}

.header-badge-contact span[b-p6is2er8wc] {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.section-title-contact[b-p6is2er8wc] {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description-contact[b-p6is2er8wc] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTACT CONTENT GRID
   ============================================ */

.contact-content-premium[b-p6is2er8wc] {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* ============================================
   CONTACT CARD WITH INTERACTIVE EFFECTS
   ============================================ */

.contact-card-premium[b-p6is2er8wc] {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
}

.contact-card-premium:hover[b-p6is2er8wc] {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4),
                0 0 50px rgba(255, 215, 0, 0.15);
}

/* ============================================
   ANIMATED BORDER GRADIENT
   ============================================ */

.card-border-gradient[b-p6is2er8wc] {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.6),
        rgba(168, 85, 247, 0.6),
        rgba(255, 215, 0, 0.6)
    );
    background-size: 200% 200%;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: gradientRotate-b-p6is2er8wc 4s ease-in-out infinite;
}

.contact-card-premium:hover .card-border-gradient[b-p6is2er8wc] {
    opacity: 1;
}

@keyframes gradientRotate-b-p6is2er8wc {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   CARD HOVER GLOW
   ============================================ */

.card-hover-glow[b-p6is2er8wc] {
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.3),
        rgba(168, 85, 247, 0.3),
        transparent
    );
    border-radius: 28px;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
}

.contact-card-premium:hover .card-hover-glow[b-p6is2er8wc] {
    opacity: 1;
    animation: glowBreath-b-p6is2er8wc 3s ease-in-out infinite;
}

@keyframes glowBreath-b-p6is2er8wc {
    0%, 100% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   CONTACT ICON WITH RIPPLE EFFECT
   ============================================ */

.contact-icon-premium[b-p6is2er8wc] {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.15),
        rgba(168, 85, 247, 0.15)
    );
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    transition: all 0.4s ease;
}

.contact-card-premium:hover .contact-icon-premium[b-p6is2er8wc] {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.icon-ripple[b-p6is2er8wc] {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.4);
    opacity: 0;
    animation: rippleEffect-b-p6is2er8wc 2s ease-out infinite;
}

.contact-card-premium:hover .icon-ripple[b-p6is2er8wc] {
    opacity: 1;
}

@keyframes rippleEffect-b-p6is2er8wc {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   CARD CONTENT
   ============================================ */

.contact-title[b-p6is2er8wc] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-card-premium:hover .contact-title[b-p6is2er8wc] {
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-link[b-p6is2er8wc] {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    text-align: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.contact-link:hover[b-p6is2er8wc] {
    color: var(--gold);
    transform: translateX(3px);
}

.contact-subtitle[b-p6is2er8wc] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ============================================
   OFFICE HOURS LIST
   ============================================ */

.hours-list[b-p6is2er8wc] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hour-item[b-p6is2er8wc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hour-item:hover[b-p6is2er8wc] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.2);
}

.day[b-p6is2er8wc] {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.time[b-p6is2er8wc] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Orbitron', 'Inter', sans-serif;
}

.time.closed[b-p6is2er8wc] {
    color: rgba(239, 68, 68, 0.8);
}

/* ============================================
   SOCIAL CONNECT SECTION
   ============================================ */

.social-connect-section[b-p6is2er8wc] {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-heading[b-p6is2er8wc] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.social-links-premium[b-p6is2er8wc] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link-premium[b-p6is2er8wc] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-link-premium:hover[b-p6is2er8wc] {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3),
                0 0 40px rgba(255, 215, 0, 0.2);
}

.social-link-premium svg[b-p6is2er8wc] {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-link-premium:hover svg[b-p6is2er8wc] {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.social-link-premium span[b-p6is2er8wc] {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .contact-content-premium[b-p6is2er8wc] {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section-premium[b-p6is2er8wc] {
        padding: 5rem 0 7rem;
    }

    .section-header-contact[b-p6is2er8wc] {
        margin-bottom: 3.5rem;
    }

    .contact-content-premium[b-p6is2er8wc] {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .contact-card-premium[b-p6is2er8wc] {
        padding: 2.5rem 2rem;
    }

    .contact-icon-premium[b-p6is2er8wc] {
        width: 75px;
        height: 75px;
    }

    .contact-title[b-p6is2er8wc] {
        font-size: 1.5rem;
    }

    .social-links-premium[b-p6is2er8wc] {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-section-premium[b-p6is2er8wc] {
        padding: 4rem 0 6rem;
    }

    .header-badge-contact[b-p6is2er8wc] {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }

    .header-badge-contact span[b-p6is2er8wc] {
        font-size: 0.75rem;
    }

    .section-description-contact[b-p6is2er8wc] {
        font-size: 1.1rem;
    }

    .contact-card-premium[b-p6is2er8wc] {
        padding: 2rem 1.5rem;
    }

    .contact-icon-premium[b-p6is2er8wc] {
        width: 70px;
        height: 70px;
    }

    .contact-icon-premium svg[b-p6is2er8wc] {
        width: 28px;
        height: 28px;
    }

    .contact-link[b-p6is2er8wc] {
        font-size: 1rem;
    }

    .hour-item[b-p6is2er8wc] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-link-premium[b-p6is2er8wc] {
        min-width: 100px;
        padding: 1.25rem;
    }

    .social-link-premium svg[b-p6is2er8wc] {
        width: 28px;
        height: 28px;
    }

    .gradient-circle[b-p6is2er8wc] {
        filter: blur(100px);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .contact-card-premium[b-p6is2er8wc],
    .contact-icon-premium[b-p6is2er8wc],
    .card-border-gradient[b-p6is2er8wc],
    .card-hover-glow[b-p6is2er8wc],
    .icon-ripple[b-p6is2er8wc],
    .social-link-premium[b-p6is2er8wc],
    .circle-1[b-p6is2er8wc],
    .circle-2[b-p6is2er8wc],
    .circle-3[b-p6is2er8wc] {
        animation: none !important;
        transition: none !important;
    }

    .contact-card-premium:hover[b-p6is2er8wc],
    .social-link-premium:hover[b-p6is2er8wc] {
        transform: none;
    }
}
/* /Components/About/AboutHeroSection.razor.rz.scp.css */
/* ============================================
   ABOUT HERO SECTION - PREMIUM DESIGN
   ============================================ */

:root[b-n8vibx7pe5] {
    --deep-blue: #0A0E27;
    --midnight-blue: #141939;
    --royal-purple: #7C3AED;
    --electric-purple: #A855F7;
    --gold: #FFD700;
    --bright-gold: #FFA500;
    --white: #FFFFFF;
}

/* ============================================
   MAIN HERO CONTAINER
   ============================================ */

.about-hero-premium[b-n8vibx7pe5] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg,
        #0A0E27 0%,
        #141939 25%,
        #1a1f4d 50%,
        #141939 75%,
        #0A0E27 100%
    );
    perspective: 1200px;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================
   GRADIENT MESH BACKGROUND
   ============================================ */

.hero-gradient-mesh[b-n8vibx7pe5] {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb[b-n8vibx7pe5] {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat-b-n8vibx7pe5 20s ease-in-out infinite;
}

.gradient-orb-1[b-n8vibx7pe5] {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2[b-n8vibx7pe5] {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.gradient-orb-3[b-n8vibx7pe5] {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.gradient-orb-4[b-n8vibx7pe5] {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(20, 25, 57, 0.6) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes orbFloat-b-n8vibx7pe5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 60px) scale(1.05);
    }
}

/* ============================================
   3D ORB SYSTEM
   ============================================ */

.orb-system-about[b-n8vibx7pe5] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease-out;
}

.central-orb[b-n8vibx7pe5] {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core[b-n8vibx7pe5] {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: orbPulse-b-n8vibx7pe5 3s ease-in-out infinite;
}

@keyframes orbPulse-b-n8vibx7pe5 {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8));
    }
}

.orb-ring[b-n8vibx7pe5] {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: ringRotate-b-n8vibx7pe5 15s linear infinite;
}

.orb-ring-1[b-n8vibx7pe5] {
    width: 220px;
    height: 220px;
    border-color: rgba(124, 58, 237, 0.3);
    animation-duration: 20s;
}

.orb-ring-2[b-n8vibx7pe5] {
    width: 260px;
    height: 260px;
    border-color: rgba(255, 215, 0, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orb-ring-3[b-n8vibx7pe5] {
    width: 300px;
    height: 300px;
    border-color: rgba(168, 85, 247, 0.15);
    animation-duration: 30s;
}

@keyframes ringRotate-b-n8vibx7pe5 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================
   FLOATING SYMBOLS
   ============================================ */

.floating-symbol[b-n8vibx7pe5] {
    position: absolute;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.symbol-dove[b-n8vibx7pe5] {
    top: 15%;
    left: 15%;
    animation: floatSymbol-b-n8vibx7pe5 8s ease-in-out infinite;
    animation-delay: 0s;
}

.symbol-bible[b-n8vibx7pe5] {
    top: 65%;
    left: 20%;
    animation: floatSymbol-b-n8vibx7pe5 10s ease-in-out infinite;
    animation-delay: 2s;
}

.symbol-heart[b-n8vibx7pe5] {
    top: 30%;
    right: 18%;
    animation: floatSymbol-b-n8vibx7pe5 9s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes floatSymbol-b-n8vibx7pe5 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(3deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
    75% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ============================================
   PREMIUM PARTICLES
   ============================================ */

.premium-particles[b-n8vibx7pe5] {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle-light[b-n8vibx7pe5] {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleRise-b-n8vibx7pe5 18s linear infinite;
}

.particle-light-1[b-n8vibx7pe5] {
    left: 15%;
    animation-delay: 0s;
}

.particle-light-2[b-n8vibx7pe5] {
    left: 30%;
    animation-delay: 3s;
}

.particle-light-3[b-n8vibx7pe5] {
    left: 50%;
    animation-delay: 6s;
}

.particle-light-4[b-n8vibx7pe5] {
    left: 65%;
    animation-delay: 9s;
}

.particle-light-5[b-n8vibx7pe5] {
    left: 80%;
    animation-delay: 12s;
}

.particle-light-6[b-n8vibx7pe5] {
    left: 40%;
    animation-delay: 15s;
}

@keyframes particleRise-b-n8vibx7pe5 {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) scale(1.2);
        opacity: 0;
    }
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero-content-premium[b-n8vibx7pe5] {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

/* ============================================
   MINISTRY BADGE
   ============================================ */

.ministry-badge-premium[b-n8vibx7pe5] {
    position: relative;
    display: inline-flex;
    margin-bottom: 2.5rem;
}

.badge-glow[b-n8vibx7pe5] {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(168, 85, 247, 0.4));
    border-radius: 50px;
    filter: blur(12px);
    opacity: 0.6;
    animation: badgeGlow-b-n8vibx7pe5 3s ease-in-out infinite;
}

@keyframes badgeGlow-b-n8vibx7pe5 {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.badge-content[b-n8vibx7pe5] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(168, 85, 247, 0.15)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-icon[b-n8vibx7pe5] {
    color: var(--gold);
    animation: iconPulse-b-n8vibx7pe5 2.5s ease-in-out infinite;
}

@keyframes iconPulse-b-n8vibx7pe5 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(90deg);
    }
}

/* ============================================
   HERO TITLE
   ============================================ */

.hero-title-premium[b-n8vibx7pe5] {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.title-line-premium[b-n8vibx7pe5] {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
}

.gradient-text-gold[b-n8vibx7pe5] {
    background: linear-gradient(135deg,
        #FFD700 0%,
        #FFA500 25%,
        #FFD700 50%,
        #FFA500 75%,
        #FFD700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift-b-n8vibx7pe5 4s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

@keyframes gradientShift-b-n8vibx7pe5 {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* ============================================
   SCRIPTURE QUOTE
   ============================================ */

.scripture-quote-premium[b-n8vibx7pe5] {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-mark[b-n8vibx7pe5] {
    position: absolute;
    font-size: 6rem;
    font-family: Georgia, serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.quote-mark-open[b-n8vibx7pe5] {
    top: 0.5rem;
    left: 1rem;
}

.quote-mark-close[b-n8vibx7pe5] {
    bottom: -1rem;
    right: 1rem;
}

.quote-text[b-n8vibx7pe5] {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.quote-citation[b-n8vibx7pe5] {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ============================================
   HERO STATS
   ============================================ */

.hero-stats-premium[b-n8vibx7pe5] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card[b-n8vibx7pe5] {
    position: relative;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1),
        rgba(168, 85, 247, 0.05)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.stat-card:hover[b-n8vibx7pe5] {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-card-glow[b-n8vibx7pe5] {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.3),
        rgba(168, 85, 247, 0.3)
    );
    border-radius: 20px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:hover .stat-card-glow[b-n8vibx7pe5] {
    opacity: 1;
}

.stat-number-premium[b-n8vibx7pe5] {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label-premium[b-n8vibx7pe5] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.stat-divider-premium[b-n8vibx7pe5] {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.3) 50%,
        transparent
    );
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator-about[b-n8vibx7pe5] {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollBounce-b-n8vibx7pe5 2s ease-in-out infinite;
}

.scroll-mouse[b-n8vibx7pe5] {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel[b-n8vibx7pe5] {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel-b-n8vibx7pe5 1.5s ease-in-out infinite;
}

@keyframes scrollWheel-b-n8vibx7pe5 {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.scroll-text[b-n8vibx7pe5] {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@keyframes scrollBounce-b-n8vibx7pe5 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .orb-system-about[b-n8vibx7pe5] {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .floating-symbol[b-n8vibx7pe5] {
        transform: scale(0.85);
    }

    .hero-stats-premium[b-n8vibx7pe5] {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-premium[b-n8vibx7pe5] {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .orb-system-about[b-n8vibx7pe5],
    .floating-symbol[b-n8vibx7pe5] {
        display: none;
    }

    .hero-content-premium[b-n8vibx7pe5] {
        padding: 1.5rem;
    }

    .scripture-quote-premium[b-n8vibx7pe5] {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .quote-mark[b-n8vibx7pe5] {
        font-size: 4rem;
    }

    .hero-stats-premium[b-n8vibx7pe5] {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider-premium[b-n8vibx7pe5] {
        display: none;
    }

    .stat-card[b-n8vibx7pe5] {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator-about[b-n8vibx7pe5] {
        bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .ministry-badge-premium .badge-content[b-n8vibx7pe5] {
        padding: 0.875rem 2rem;
        font-size: 0.75rem;
        gap: 0.625rem;
    }

    .badge-icon[b-n8vibx7pe5] {
        width: 16px;
        height: 16px;
    }

    .scripture-quote-premium[b-n8vibx7pe5] {
        padding: 1.5rem 1.25rem;
    }

    .quote-text[b-n8vibx7pe5] {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .stat-number-premium[b-n8vibx7pe5] {
        font-size: 2.5rem;
    }

    .stat-label-premium[b-n8vibx7pe5] {
        font-size: 0.75rem;
    }

    .gradient-orb[b-n8vibx7pe5] {
        filter: blur(80px);
    }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal-fade[b-n8vibx7pe5] {
    opacity: 0;
    animation: revealFade-b-n8vibx7pe5 1s ease-out 0.3s forwards;
}

@keyframes revealFade-b-n8vibx7pe5 {
    to {
        opacity: 1;
    }
}

.reveal-scale[b-n8vibx7pe5] {
    opacity: 0;
    transform: scale(0.95);
    animation: revealScale-b-n8vibx7pe5 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes revealScale-b-n8vibx7pe5 {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal-slide-up[b-n8vibx7pe5] {
    opacity: 0;
    transform: translateY(30px);
    animation: revealSlideUp-b-n8vibx7pe5 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

@keyframes revealSlideUp-b-n8vibx7pe5 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/About/AboutMissionSection.razor.rz.scp.css */
/* ============================================
   ABOUT MISSION SECTION - PREMIUM DESIGN
   ============================================ */

:root[b-imhnhhgc4q] {
    --deep-blue: #0A0E27;
    --midnight-blue: #141939;
    --royal-purple: #7C3AED;
    --electric-purple: #A855F7;
    --gold: #FFD700;
    --bright-gold: #FFA500;
    --white: #FFFFFF;
}

/* ============================================
   MAIN SECTION CONTAINER
   ============================================ */

.mission-section-premium[b-imhnhhgc4q] {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg,
        #0A0E27 0%,
        #141939 50%,
        #0A0E27 100%
    );
    overflow: hidden;
}

/* ============================================
   BACKGROUND GRADIENTS
   ============================================ */

.mission-gradient-bg[b-imhnhhgc4q] {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.6;
}

.gradient-sphere[b-imhnhhgc4q] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: sphereFloat-b-imhnhhgc4q 25s ease-in-out infinite;
}

.sphere-1[b-imhnhhgc4q] {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.sphere-2[b-imhnhhgc4q] {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 10s;
}

@keyframes sphereFloat-b-imhnhhgc4q {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(60px, -60px);
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header-premium[b-imhnhhgc4q] {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge-premium[b-imhnhhgc4q] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg,
        rgba(239, 68, 68, 0.15),
        rgba(220, 38, 38, 0.15)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-shimmer[b-imhnhhgc4q] {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.4) 50%,
        transparent
    );
    border-radius: 50px;
    filter: blur(8px);
    animation: shimmer-b-imhnhhgc4q 3s ease-in-out infinite;
}

@keyframes shimmer-b-imhnhhgc4q {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.badge-heart-icon[b-imhnhhgc4q] {
    position: relative;
    z-index: 1;
    color: #EF4444;
    animation: heartBeat-b-imhnhhgc4q 2s ease-in-out infinite;
}

@keyframes heartBeat-b-imhnhhgc4q {
    0%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.05);
    }
}

.header-badge-premium span[b-imhnhhgc4q] {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.section-title-premium[b-imhnhhgc4q] {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text-gold[b-imhnhhgc4q] {
    background: linear-gradient(135deg,
        #FFD700 0%,
        #FFA500 50%,
        #FFD700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow-b-imhnhhgc4q 4s ease-in-out infinite;
}

@keyframes gradientFlow-b-imhnhhgc4q {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.section-description-premium[b-imhnhhgc4q] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   MISSION CONTENT LAYOUT
   ============================================ */

.mission-content-premium[b-imhnhhgc4q] {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ============================================
   MISSION STATEMENT CARD
   ============================================ */

.mission-statement-premium[b-imhnhhgc4q] {
    position: relative;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.08),
        rgba(168, 85, 247, 0.05)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.statement-shimmer[b-imhnhhgc4q] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.8) 30%,
        rgba(245, 158, 11, 0.8) 50%,
        rgba(255, 215, 0, 0.8) 70%,
        transparent
    );
    animation: topShimmer-b-imhnhhgc4q 3s ease-in-out infinite;
}

@keyframes topShimmer-b-imhnhhgc4q {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.quote-mark-large[b-imhnhhgc4q] {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
}

.statement-text[b-imhnhhgc4q] {
    position: relative;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-weight: 300;
    margin: 0 0 2rem;
    padding-left: 1.5rem;
}

.statement-signature[b-imhnhhgc4q] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line[b-imhnhhgc4q] {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.statement-signature span[b-imhnhhgc4q] {
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ============================================
   PILLARS GRID
   ============================================ */

.pillars-grid[b-imhnhhgc4q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pillar-card[b-imhnhhgc4q] {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pillar-card:hover[b-imhnhhgc4q] {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.pillar-card-glow[b-imhnhhgc4q] {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.3),
        rgba(168, 85, 247, 0.3)
    );
    border-radius: 24px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pillar-card:hover .pillar-card-glow[b-imhnhhgc4q] {
    opacity: 1;
}

.pillar-icon-premium[b-imhnhhgc4q] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.icon-bg-glow[b-imhnhhgc4q] {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover .icon-bg-glow[b-imhnhhgc4q] {
    opacity: 1;
    animation: iconGlowPulse-b-imhnhhgc4q 2s ease-in-out infinite;
}

@keyframes iconGlowPulse-b-imhnhhgc4q {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.pillar-title[b-imhnhhgc4q] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.pillar-description[b-imhnhhgc4q] {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pillar-feature-tag[b-imhnhhgc4q] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
}

.pillar-feature-tag svg[b-imhnhhgc4q] {
    color: var(--gold);
}

/* ============================================
   STATS AND VISUAL
   ============================================ */

.mission-stats-visual[b-imhnhhgc4q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-grid-premium[b-imhnhhgc4q] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-premium[b-imhnhhgc4q] {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-card-premium:hover[b-imhnhhgc4q] {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25);
}

.stat-icon-premium[b-imhnhhgc4q] {
    margin: 0 auto 1rem;
    color: var(--gold);
}

.stat-number-premium[b-imhnhhgc4q] {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-premium[b-imhnhhgc4q] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   MISSION GRAPHIC
   ============================================ */

.mission-graphic-premium[b-imhnhhgc4q] {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-rings[b-imhnhhgc4q] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-ring[b-imhnhhgc4q] {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
}

.ring-1[b-imhnhhgc4q] {
    width: 200px;
    height: 200px;
    border-color: rgba(255, 255, 255, 0.1);
    animation: ringRotate-b-imhnhhgc4q 20s linear infinite;
}

.ring-2[b-imhnhhgc4q] {
    width: 260px;
    height: 260px;
    border-color: rgba(124, 58, 237, 0.2);
    animation: ringRotate-b-imhnhhgc4q 30s linear infinite reverse;
}

.ring-3[b-imhnhhgc4q] {
    width: 320px;
    height: 320px;
    border-color: rgba(255, 215, 0, 0.15);
    animation: ringRotate-b-imhnhhgc4q 40s linear infinite;
}

@keyframes ringRotate-b-imhnhhgc4q {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.graphic-cross[b-imhnhhgc4q] {
    position: relative;
    z-index: 2;
    animation: crossPulse-b-imhnhhgc4q 4s ease-in-out infinite;
}

@keyframes crossPulse-b-imhnhhgc4q {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.7));
    }
}

.orbit-particles[b-imhnhhgc4q] {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-particle[b-imhnhhgc4q] {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.particle-1[b-imhnhhgc4q] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particlePulse-b-imhnhhgc4q 2s ease-in-out infinite;
}

.particle-2[b-imhnhhgc4q] {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: particlePulse-b-imhnhhgc4q 2s ease-in-out infinite 0.5s;
}

.particle-3[b-imhnhhgc4q] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particlePulse-b-imhnhhgc4q 2s ease-in-out infinite 1s;
}

.particle-4[b-imhnhhgc4q] {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: particlePulse-b-imhnhhgc4q 2s ease-in-out infinite 1.5s;
}

@keyframes particlePulse-b-imhnhhgc4q {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .mission-stats-visual[b-imhnhhgc4q] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-graphic-premium[b-imhnhhgc4q] {
        height: 250px;
    }

    .graphic-ring[b-imhnhhgc4q] {
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .mission-section-premium[b-imhnhhgc4q] {
        padding: 5rem 0;
    }

    .section-header-premium[b-imhnhhgc4q] {
        margin-bottom: 3.5rem;
    }

    .mission-content-premium[b-imhnhhgc4q] {
        gap: 3rem;
    }

    .pillars-grid[b-imhnhhgc4q] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid-premium[b-imhnhhgc4q] {
        grid-template-columns: 1fr;
    }

    .mission-statement-premium[b-imhnhhgc4q] {
        padding: 2.5rem 2rem;
    }

    .quote-mark-large[b-imhnhhgc4q] {
        font-size: 6rem;
    }

    .mission-graphic-premium[b-imhnhhgc4q] {
        height: 220px;
    }

    .graphic-ring[b-imhnhhgc4q] {
        transform: scale(0.7);
    }
}

@media (max-width: 640px) {
    .header-badge-premium[b-imhnhhgc4q] {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }

    .badge-heart-icon[b-imhnhhgc4q] {
        width: 16px;
        height: 16px;
    }

    .header-badge-premium span[b-imhnhhgc4q] {
        font-size: 0.75rem;
    }

    .section-description-premium[b-imhnhhgc4q] {
        font-size: 1.1rem;
    }

    .mission-statement-premium[b-imhnhhgc4q] {
        padding: 2rem 1.5rem;
    }

    .statement-text[b-imhnhhgc4q] {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .pillar-card[b-imhnhhgc4q] {
        padding: 2rem 1.5rem;
    }

    .stat-card-premium[b-imhnhhgc4q] {
        padding: 1.5rem 1.25rem;
    }

    .stat-number-premium[b-imhnhhgc4q] {
        font-size: 2rem;
    }

    .gradient-sphere[b-imhnhhgc4q] {
        filter: blur(100px);
    }
}
/* /Components/About/AboutValuesSection.razor.rz.scp.css */
/* ============================================
   ABOUT VALUES SECTION - PREMIUM 3D DESIGN
   ============================================ */

:root[b-udaq6pw4zz] {
    --deep-blue: #0A0E27;
    --midnight-blue: #141939;
    --royal-purple: #7C3AED;
    --electric-purple: #A855F7;
    --gold: #FFD700;
    --bright-gold: #FFA500;
    --white: #FFFFFF;
}

/* ============================================
   MAIN SECTION CONTAINER
   ============================================ */

.values-section-premium[b-udaq6pw4zz] {
    position: relative;
    padding: 8rem 0;
    background: radial-gradient(ellipse at top,
        #141939 0%,
        #0A0E27 50%,
        #141939 100%
    );
    overflow: hidden;
}

/* ============================================
   ANIMATED BACKGROUND WAVES
   ============================================ */

.values-gradient-bg[b-udaq6pw4zz] {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.5;
}

.gradient-wave[b-udaq6pw4zz] {
    position: absolute;
    width: 200%;
    height: 400px;
    filter: blur(100px);
}

.wave-1[b-udaq6pw4zz] {
    background: linear-gradient(90deg,
        transparent,
        rgba(124, 58, 237, 0.4) 25%,
        rgba(168, 85, 247, 0.4) 50%,
        rgba(124, 58, 237, 0.4) 75%,
        transparent
    );
    top: -100px;
    left: -50%;
    animation: waveMove-b-udaq6pw4zz 20s ease-in-out infinite;
}

.wave-2[b-udaq6pw4zz] {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.3) 25%,
        rgba(245, 158, 11, 0.3) 50%,
        rgba(255, 215, 0, 0.3) 75%,
        transparent
    );
    bottom: -100px;
    right: -50%;
    animation: waveMove-b-udaq6pw4zz 25s ease-in-out infinite reverse;
}

@keyframes waveMove-b-udaq6pw4zz {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(10%) translateY(-20px);
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header-values[b-udaq6pw4zz] {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge-values[b-udaq6pw4zz] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.15),
        rgba(245, 158, 11, 0.15)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-icon-values[b-udaq6pw4zz] {
    color: var(--gold);
    animation: starSpin-b-udaq6pw4zz 4s linear infinite;
}

@keyframes starSpin-b-udaq6pw4zz {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.header-badge-values span[b-udaq6pw4zz] {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.section-title-values[b-udaq6pw4zz] {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description-values[b-udaq6pw4zz] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   VALUES GRID WITH 3D EFFECTS
   ============================================ */

.values-grid-premium[b-udaq6pw4zz] {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

/* ============================================
   VALUE CARD WITH 3D TILT EFFECT
   ============================================ */

.value-card-premium[b-udaq6pw4zz] {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
}

.value-card-premium:hover[b-udaq6pw4zz] {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.4),
                0 0 60px rgba(255, 215, 0, 0.2);
}

/* ============================================
   CARD SHIMMER EFFECT
   ============================================ */

.card-shimmer-effect[b-udaq6pw4zz] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1) 50%,
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.value-card-premium:hover .card-shimmer-effect[b-udaq6pw4zz] {
    left: 100%;
}

/* ============================================
   CARD GLOW BACKGROUND
   ============================================ */

.card-glow-bg[b-udaq6pw4zz] {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.3),
        rgba(168, 85, 247, 0.3)
    );
    border-radius: 28px;
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.value-card-premium:hover .card-glow-bg[b-udaq6pw4zz] {
    opacity: 1;
    animation: glowPulse-b-udaq6pw4zz 2s ease-in-out infinite;
}

@keyframes glowPulse-b-udaq6pw4zz {
    0%, 100% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   ICON CONTAINER WITH 3D DEPTH
   ============================================ */

.value-icon-container[b-udaq6pw4zz] {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.value-card-premium:hover .value-icon-container[b-udaq6pw4zz] {
    transform: translateZ(30px);
    animation: iconFloat-b-udaq6pw4zz 3s ease-in-out infinite;
}

@keyframes iconFloat-b-udaq6pw4zz {
    0%, 100% {
        transform: translateZ(30px) translateY(0);
    }
    50% {
        transform: translateZ(30px) translateY(-10px);
    }
}

.icon-glow-ring[b-udaq6pw4zz] {
    position: absolute;
    inset: -12px;
    background: conic-gradient(
        from 0deg,
        rgba(255, 215, 0, 0.4),
        rgba(168, 85, 247, 0.4),
        rgba(255, 215, 0, 0.4)
    );
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    animation: ringRotate-b-udaq6pw4zz 4s linear infinite;
    transition: opacity 0.4s ease;
}

.value-card-premium:hover .icon-glow-ring[b-udaq6pw4zz] {
    opacity: 1;
}

@keyframes ringRotate-b-udaq6pw4zz {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.value-icon-svg[b-udaq6pw4zz] {
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transition: transform 0.4s ease;
}

.value-card-premium:hover .value-icon-svg[b-udaq6pw4zz] {
    transform: scale(1.1) rotate(5deg);
}

/* ============================================
   CARD CONTENT
   ============================================ */

.value-title[b-udaq6pw4zz] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-align: center;
    transition: color 0.3s ease;
}

.value-card-premium:hover .value-title[b-udaq6pw4zz] {
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-description[b-udaq6pw4zz] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 2rem;
}

/* ============================================
   VALUE NUMBER BADGE
   ============================================ */

.value-number[b-udaq6pw4zz] {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Inter', sans-serif;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.2),
        rgba(168, 85, 247, 0.2)
    );
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.value-card-premium:hover .value-number[b-udaq6pw4zz] {
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    border-color: rgba(255, 215, 0, 0.5);
    color: var(--deep-blue);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* ============================================
   3D TILT EFFECT ENHANCEMENT
   ============================================ */

.tilt-card[b-udaq6pw4zz] {
    --rotate-x: 0deg;
    --rotate-y: 0deg;
}

.tilt-card:hover[b-udaq6pw4zz] {
    transform: perspective(1000px)
                rotateX(var(--rotate-x, 0deg))
                rotateY(var(--rotate-y, 0deg))
                translateY(-15px)
                scale(1.02);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .values-grid-premium[b-udaq6pw4zz] {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .value-card-premium[b-udaq6pw4zz] {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .values-section-premium[b-udaq6pw4zz] {
        padding: 5rem 0;
    }

    .section-header-values[b-udaq6pw4zz] {
        margin-bottom: 3.5rem;
    }

    .values-grid-premium[b-udaq6pw4zz] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card-premium[b-udaq6pw4zz] {
        padding: 2.5rem 2rem;
    }

    .value-icon-container[b-udaq6pw4zz] {
        width: 85px;
        height: 85px;
    }

    .value-title[b-udaq6pw4zz] {
        font-size: 1.5rem;
    }

    .value-description[b-udaq6pw4zz] {
        font-size: 1rem;
    }

    .value-number[b-udaq6pw4zz] {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .values-section-premium[b-udaq6pw4zz] {
        padding: 4rem 0;
    }

    .header-badge-values[b-udaq6pw4zz] {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }

    .badge-icon-values[b-udaq6pw4zz] {
        width: 16px;
        height: 16px;
    }

    .header-badge-values span[b-udaq6pw4zz] {
        font-size: 0.75rem;
    }

    .section-description-values[b-udaq6pw4zz] {
        font-size: 1.1rem;
    }

    .value-card-premium[b-udaq6pw4zz] {
        padding: 2rem 1.5rem;
    }

    .value-icon-container[b-udaq6pw4zz] {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }

    .value-icon-svg[b-udaq6pw4zz] {
        width: 40px;
        height: 40px;
    }

    .gradient-wave[b-udaq6pw4zz] {
        filter: blur(80px);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .value-card-premium[b-udaq6pw4zz],
    .value-icon-container[b-udaq6pw4zz],
    .card-shimmer-effect[b-udaq6pw4zz],
    .icon-glow-ring[b-udaq6pw4zz],
    .value-icon-svg[b-udaq6pw4zz],
    .value-number[b-udaq6pw4zz],
    .wave-1[b-udaq6pw4zz],
    .wave-2[b-udaq6pw4zz],
    .badge-icon-values[b-udaq6pw4zz] {
        animation: none !important;
        transition: none !important;
    }

    .value-card-premium:hover[b-udaq6pw4zz] {
        transform: none;
    }
}
/* /Components/Footer/SiteFooter.razor.rz.scp.css */
/* ============================================
   FOOTER - Premium Glassmorphism Design
   ============================================ */

/* CSS Variables */
.site-footer[b-4708mtxtl1] {
    --deep-blue: #0A0E27;
    --dark-blue: #0F1729;
    --blue-900: #1A2332;
    --gold-500: #F59E0B;
    --gold-400: #FBBF24;
    --gold-300: #FCD34D;
    --cyan-400: #22D3EE;
    --white: #FFFFFF;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
    --gradient-blue: linear-gradient(180deg, #0A0E27 0%, #1A2332 100%);
    --gradient-premium: linear-gradient(135deg, #22D3EE 0%, #3B82F6 50%, #8B5CF6 100%);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MAIN FOOTER CONTAINER
   ============================================ */

.site-footer[b-4708mtxtl1] {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #0F1729 50%, #1A2332 100%);
    color: var(--text-primary);
    padding: 100px 0 0;
    overflow: hidden;
    margin-top: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Decorations */
.footer-bg[b-4708mtxtl1] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Gradient Mesh Background */
.footer-gradient[b-4708mtxtl1] {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -30%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 15% 50%, rgba(34, 211, 238, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 40%);
}

.footer-overlay[b-4708mtxtl1] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.4) 40%, rgba(10, 14, 39, 0.8) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
}

/* Enhanced Particles */
.footer-particles[b-4708mtxtl1] {
    position: absolute;
    inset: 0;
}

.particle[b-4708mtxtl1] {
    position: absolute;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat-b-4708mtxtl1 12s ease-in-out infinite;
    animation-delay: var(--delay);
    pointer-events: none;
}

.particle:nth-child(odd)[b-4708mtxtl1] {
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 0%, transparent 70%);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.particle:nth-child(even)[b-4708mtxtl1] {
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, transparent 70%);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
}

@keyframes particleFloat-b-4708mtxtl1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -50px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(40px, -30px) scale(1.4);
        opacity: 0.5;
    }
}

/* ============================================
   FOOTER CONTAINER
   ============================================ */

.footer-container[b-4708mtxtl1] {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   MAIN FOOTER CONTENT
   ============================================ */

.footer-main[b-4708mtxtl1] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-main[b-4708mtxtl1]::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 200px;
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.footer-section[b-4708mtxtl1] {
    animation: fadeInUp-b-4708mtxtl1 1s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1)[b-4708mtxtl1] { animation-delay: 0.15s; }
.footer-section:nth-child(2)[b-4708mtxtl1] { animation-delay: 0.3s; }
.footer-section:nth-child(3)[b-4708mtxtl1] { animation-delay: 0.45s; }
.footer-section:nth-child(4)[b-4708mtxtl1] { animation-delay: 0.6s; }

@keyframes fadeInUp-b-4708mtxtl1 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BRAND SECTION
   ============================================ */

.footer-brand[b-4708mtxtl1] {
    max-width: 450px;
}

.brand-logo[b-4708mtxtl1] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover[b-4708mtxtl1] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.logo-icon[b-4708mtxtl1] {
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(251, 191, 36, 0.4));
    animation: logoGlow-b-4708mtxtl1 4s ease-in-out infinite;
}

@keyframes logoGlow-b-4708mtxtl1 {
    0%, 100% {
        filter: drop-shadow(0 6px 16px rgba(251, 191, 36, 0.4));
    }
    50% {
        filter: drop-shadow(0 8px 28px rgba(251, 191, 36, 0.7));
        transform: scale(1.05);
    }
}

.brand-text[b-4708mtxtl1] {
    flex: 1;
}

.brand-name[b-4708mtxtl1] {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.faith-text[b-4708mtxtl1] {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.tv-text[b-4708mtxtl1] {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.brand-tagline[b-4708mtxtl1] {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-description[b-4708mtxtl1] {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding-left: 4px;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links[b-4708mtxtl1] {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-link[b-4708mtxtl1] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.social-link[b-4708mtxtl1]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.social-link[b-4708mtxtl1]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link i[b-4708mtxtl1] {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: all 0.4s ease;
}

.social-link:hover[b-4708mtxtl1] {
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow:
        0 12px 32px rgba(251, 191, 36, 0.25),
        0 0 0 6px rgba(251, 191, 36, 0.1);
}

.social-link:hover[b-4708mtxtl1]::before {
    opacity: 0.15;
}

.social-link:hover[b-4708mtxtl1]::after {
    opacity: 0.2;
    transform: scale(1);
}

.social-link:hover i[b-4708mtxtl1] {
    color: #FBBF24;
    transform: scale(1.1);
}

.social-tooltip[b-4708mtxtl1] {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.9);
    background: rgba(17, 24, 39, 0.98);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.social-tooltip[b-4708mtxtl1]::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(17, 24, 39, 0.98);
}

.social-link:hover .social-tooltip[b-4708mtxtl1] {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 32px 0;
    letter-spacing: 0.5px;
}

.title-icon[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FBBF24;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.section-title:hover .title-icon[b-4708mtxtl1] {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.title-icon svg[b-4708mtxtl1] {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER NAVIGATION
   ============================================ */

.footer-nav[b-4708mtxtl1] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0;
    position: relative;
    width: fit-content;
}

.link-icon[b-4708mtxtl1] {
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #FBBF24;
}

.link-text[b-4708mtxtl1] {
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover[b-4708mtxtl1] {
    color: var(--white);
}

.footer-link:hover .link-icon[b-4708mtxtl1] {
    opacity: 1;
    transform: translateX(0);
}

.footer-link:hover .link-text[b-4708mtxtl1] {
    transform: translateX(6px);
    font-weight: 600;
}

.footer-link[b-4708mtxtl1]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.footer-link:hover[b-4708mtxtl1]::after {
    width: 100%;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.footer-newsletter[b-4708mtxtl1] {
    max-width: 380px;
}

.newsletter-description[b-4708mtxtl1] {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form[b-4708mtxtl1] {
    margin-bottom: 20px;
}

.input-wrapper[b-4708mtxtl1] {
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-input[b-4708mtxtl1] {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.newsletter-input[b-4708mtxtl1]::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus[b-4708mtxtl1] {
    outline: none;
    border-color: rgba(251, 191, 36, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 4px rgba(251, 191, 36, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.newsletter-btn[b-4708mtxtl1] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 14px;
    color: #0A0E27;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.newsletter-btn[b-4708mtxtl1]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-btn[b-4708mtxtl1]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.newsletter-btn:hover[b-4708mtxtl1] {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 32px rgba(251, 191, 36, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.newsletter-btn:hover[b-4708mtxtl1]::before {
    opacity: 1;
}

.newsletter-btn:hover[b-4708mtxtl1]::after {
    opacity: 0.3;
    transform: scale(1.5);
}

.newsletter-btn:active[b-4708mtxtl1] {
    transform: translateY(-1px) scale(1);
}

.btn-text[b-4708mtxtl1],
.btn-icon[b-4708mtxtl1] {
    position: relative;
    z-index: 1;
}

.btn-icon[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.newsletter-btn:hover .btn-icon[b-4708mtxtl1] {
    transform: translateX(6px);
}

/* Newsletter Features */
.newsletter-features[b-4708mtxtl1] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover[b-4708mtxtl1] {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
}

.feature-item svg[b-4708mtxtl1] {
    flex-shrink: 0;
    color: #10B981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.footer-bottom[b-4708mtxtl1] {
    padding: 40px 0;
    animation: fadeInUp-b-4708mtxtl1 1s ease-out 0.75s forwards;
    opacity: 0;
    background: rgba(10, 14, 39, 0.4);
}

.footer-bottom-content[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.copyright-section[b-4708mtxtl1] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.copyright[b-4708mtxtl1] {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.made-with[b-4708mtxtl1] {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.heart-icon[b-4708mtxtl1] {
    display: inline-flex;
    color: #EF4444;
    animation: heartbeat-b-4708mtxtl1 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

@keyframes heartbeat-b-4708mtxtl1 {
    0%, 100% {
        transform: scale(1);
    }
    12%, 32% {
        transform: scale(1.15);
    }
    22%, 42% {
        transform: scale(1);
    }
}

/* Footer Legal Links */
.footer-legal[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-link[b-4708mtxtl1] {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link[b-4708mtxtl1]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.legal-link:hover[b-4708mtxtl1] {
    color: #FBBF24;
}

.legal-link:hover[b-4708mtxtl1]::after {
    width: 100%;
}

.separator[b-4708mtxtl1] {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .footer-main[b-4708mtxtl1] {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px;
    }

    .footer-newsletter[b-4708mtxtl1] {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .site-footer[b-4708mtxtl1] {
        padding: 80px 0 0;
        margin-top: 100px;
    }

    .footer-container[b-4708mtxtl1] {
        padding: 0 24px;
    }

    .footer-main[b-4708mtxtl1] {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 50px;
    }

    .footer-brand[b-4708mtxtl1],
    .footer-newsletter[b-4708mtxtl1] {
        max-width: 100%;
    }

    .footer-bottom-content[b-4708mtxtl1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-legal[b-4708mtxtl1] {
        flex-wrap: wrap;
    }

    .social-links[b-4708mtxtl1] {
        justify-content: flex-start;
    }

    .brand-logo[b-4708mtxtl1] {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .site-footer[b-4708mtxtl1] {
        padding: 60px 0 0;
        margin-top: 80px;
    }

    .footer-container[b-4708mtxtl1] {
        padding: 0 20px;
    }

    .footer-main[b-4708mtxtl1] {
        gap: 40px;
        padding-bottom: 40px;
    }

    .brand-name[b-4708mtxtl1] {
        font-size: 20px;
    }

    .section-title[b-4708mtxtl1] {
        font-size: 16px;
    }

    .input-wrapper[b-4708mtxtl1] {
        flex-direction: column;
    }

    .newsletter-btn[b-4708mtxtl1] {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom[b-4708mtxtl1] {
        padding: 32px 0;
    }

    .footer-legal[b-4708mtxtl1] {
        gap: 12px;
        font-size: 13px;
    }

    .separator[b-4708mtxtl1] {
        display: none;
    }

    .legal-link[b-4708mtxtl1]::after {
        content: '•';
        margin-left: 12px;
        color: rgba(255, 255, 255, 0.2);
    }

    .legal-link:last-child[b-4708mtxtl1]::after {
        display: none;
    }

    .brand-logo[b-4708mtxtl1] {
        padding: 16px;
        border-radius: 16px;
    }

    .social-link[b-4708mtxtl1] {
        width: 48px;
        height: 48px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .site-footer *[b-4708mtxtl1],
    .site-footer *[b-4708mtxtl1]::before,
    .site-footer *[b-4708mtxtl1]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* /Components/Header/SiteHeader.razor.rz.scp.css */
/* ==================== PREMIUM NAVIGATION ==================== */
.nav-header-premium[b-rrwd4hfifd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll State - Adds shadow and changes background on scroll */
.nav-header-premium.scrolled[b-rrwd4hfifd] {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-header-premium.scrolled .nav-bg-blur[b-rrwd4hfifd] {
    background: rgba(10, 14, 39, 0.95);
}

/* Glassmorphism Background with Gradient */
.nav-bg-blur[b-rrwd4hfifd] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.85) 0%,
        rgba(20, 25, 60, 0.85) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Animated Bottom Glow Line */
.nav-glow-line[b-rrwd4hfifd] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.6) 30%,
        rgba(245, 158, 11, 0.6) 50%,
        rgba(255, 215, 0, 0.6) 70%,
        transparent
    );
    opacity: 0.8;
    animation: glowPulse-b-rrwd4hfifd 3s ease-in-out infinite;
}

@keyframes glowPulse-b-rrwd4hfifd {
    0%, 100% {
        opacity: 0.5;
        filter: blur(2px);
    }
    50% {
        opacity: 1;
        filter: blur(4px);
    }
}

/* Container */
.nav-container[b-rrwd4hfifd] {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* ==================== LOGO SECTION ==================== */
.nav-logo-wrapper[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-logo-wrapper[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #FFD700, #F59E0B);
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo-wrapper:hover[b-rrwd4hfifd]::before {
    height: 100%;
}

.nav-logo-wrapper:hover[b-rrwd4hfifd] {
    transform: translateX(6px);
}

.logo-orb[b-rrwd4hfifd] {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 14px;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-orb[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-logo-wrapper:hover .logo-orb[b-rrwd4hfifd]::before {
    opacity: 1;
}

.nav-logo-wrapper:hover .logo-orb[b-rrwd4hfifd] {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.logo-glow[b-rrwd4hfifd] {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #FFD700, #F59E0B);
    border-radius: 16px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    animation: logoGlowRotate-b-rrwd4hfifd 8s linear infinite;
}

@keyframes logoGlowRotate-b-rrwd4hfifd {
    0% { filter: blur(12px) hue-rotate(0deg); }
    100% { filter: blur(12px) hue-rotate(360deg); }
}

.nav-logo-wrapper:hover .logo-glow[b-rrwd4hfifd] {
    opacity: 0.6;
}

.logo-cross[b-rrwd4hfifd] {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
    transition: filter 0.4s ease;
}

.nav-logo-wrapper:hover .logo-cross[b-rrwd4hfifd] {
    filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.6));
}

.logo-text-wrapper[b-rrwd4hfifd] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-text-main[b-rrwd4hfifd] {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-text-sub[b-rrwd4hfifd] {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==================== DESKTOP NAVIGATION ==================== */
.nav-links-desktop[b-rrwd4hfifd] {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

@media (min-width: 1024px) {
    .nav-links-desktop[b-rrwd4hfifd] {
        display: flex;
    }
}

.nav-link-premium[b-rrwd4hfifd] {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
}

.nav-link-premium[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-link-premium:hover[b-rrwd4hfifd]::before {
    opacity: 1;
}

.nav-link-premium:hover[b-rrwd4hfifd] {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.nav-link-premium.active[b-rrwd4hfifd] {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
}

.nav-link-premium.active[b-rrwd4hfifd]::before {
    opacity: 1;
}

.nav-link-text[b-rrwd4hfifd] {
    position: relative;
    z-index: 1;
}

/* Active Indicator - Enhanced with glow */
.nav-link-indicator[b-rrwd4hfifd] {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #F59E0B, #FFD700);
    background-size: 200% 100%;
    border-radius: 3px 3px 0 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    animation: indicatorShimmer-b-rrwd4hfifd 2s ease-in-out infinite;
}

@keyframes indicatorShimmer-b-rrwd4hfifd {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-link-premium.active .nav-link-indicator[b-rrwd4hfifd],
.nav-link-premium:hover .nav-link-indicator[b-rrwd4hfifd] {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-premium:hover .nav-link-indicator[b-rrwd4hfifd] {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* ==================== ACTION BUTTONS ==================== */
.nav-actions-premium[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn[b-rrwd4hfifd] {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.action-btn[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-btn:hover[b-rrwd4hfifd]::before {
    opacity: 1;
}

.action-btn:hover[b-rrwd4hfifd] {
    background: rgba(255, 255, 255, 0.12);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.action-btn:active[b-rrwd4hfifd] {
    transform: translateY(0) scale(0.98);
}

.action-btn-glow[b-rrwd4hfifd] {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    border-radius: 14px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.action-btn:hover .action-btn-glow[b-rrwd4hfifd] {
    opacity: 1;
    animation: glowPulse-b-rrwd4hfifd 2s ease-in-out infinite;
}

/* Live Indicator Button - Enhanced */
.live-indicator-btn[b-rrwd4hfifd] {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.12));
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    border-radius: 24px;
    color: #EF4444;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.live-indicator-btn[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: liveShimmer-b-rrwd4hfifd 3s ease-in-out infinite;
}

@keyframes liveShimmer-b-rrwd4hfifd {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@media (min-width: 768px) {
    .live-indicator-btn[b-rrwd4hfifd] {
        display: flex;
    }
}

.live-indicator-btn:hover[b-rrwd4hfifd] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.live-indicator-btn:active[b-rrwd4hfifd] {
    transform: translateY(0) scale(0.98);
}

.live-pulse[b-rrwd4hfifd] {
    width: 10px;
    height: 10px;
    background: #EF4444;
    border-radius: 50%;
    position: relative;
    animation: livePulse-b-rrwd4hfifd 2s ease-in-out infinite;
}

.live-pulse[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: #EF4444;
    border-radius: 50%;
    opacity: 0.4;
    animation: livePulseRing-b-rrwd4hfifd 2s ease-in-out infinite;
}

@keyframes livePulse-b-rrwd4hfifd {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
        box-shadow: 0 0 16px rgba(239, 68, 68, 0.8);
    }
}

@keyframes livePulseRing-b-rrwd4hfifd {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger-premium[b-rrwd4hfifd] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .hamburger-premium[b-rrwd4hfifd] {
        display: none;
    }
}

.hamburger-premium:hover[b-rrwd4hfifd] {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line[b-rrwd4hfifd] {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-premium.active .hamburger-line:nth-child(1)[b-rrwd4hfifd] {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-premium.active .hamburger-line:nth-child(2)[b-rrwd4hfifd] {
    opacity: 0;
}

.hamburger-premium.active .hamburger-line:nth-child(3)[b-rrwd4hfifd] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-overlay[b-rrwd4hfifd] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active[b-rrwd4hfifd] {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel[b-rrwd4hfifd] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    max-width: 85vw;
    background: linear-gradient(160deg, rgba(10, 14, 39, 0.98), rgba(20, 25, 60, 0.98), rgba(15, 20, 50, 0.98));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-left: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-panel[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.08), transparent);
    pointer-events: none;
}

.mobile-nav-panel.active[b-rrwd4hfifd] {
    transform: translateX(0);
}

.mobile-nav-header[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-title[b-rrwd4hfifd] {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close-btn[b-rrwd4hfifd] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover[b-rrwd4hfifd] {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.mobile-nav-links[b-rrwd4hfifd] {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-link[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.125rem 1.5rem;
    margin: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 3px solid transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link[b-rrwd4hfifd]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255, 215, 0, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav-link:hover[b-rrwd4hfifd]::before {
    opacity: 1;
}

.mobile-nav-link:hover[b-rrwd4hfifd] {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-left-color: rgba(255, 215, 0, 0.5);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.1);
}

.mobile-nav-link.active[b-rrwd4hfifd] {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(245, 158, 11, 0.1));
    color: #FFD700;
    border-left-color: #FFD700;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.mobile-nav-link.active[b-rrwd4hfifd]::before {
    opacity: 1;
}

.mobile-nav-link svg[b-rrwd4hfifd] {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-link:hover svg[b-rrwd4hfifd],
.mobile-nav-link.active svg[b-rrwd4hfifd] {
    transform: scale(1.1) rotate(-5deg);
}

.mobile-nav-link span[b-rrwd4hfifd] {
    flex: 1;
    position: relative;
    z-index: 1;
}

.mobile-link-arrow[b-rrwd4hfifd] {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: rgba(255, 215, 0, 0.7);
    font-size: 1.125rem;
}

.mobile-nav-link:hover .mobile-link-arrow[b-rrwd4hfifd] {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link.active .mobile-link-arrow[b-rrwd4hfifd] {
    opacity: 1;
    transform: translateX(0);
    color: #FFD700;
}

.mobile-nav-footer[b-rrwd4hfifd] {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links[b-rrwd4hfifd] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-icon-mobile[b-rrwd4hfifd] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon-mobile:hover[b-rrwd4hfifd] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    transform: translateY(-2px);
}

.mobile-footer-text[b-rrwd4hfifd] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
}

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay[b-rrwd4hfifd] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active[b-rrwd4hfifd] {
    opacity: 1;
    visibility: visible;
}

.search-container[b-rrwd4hfifd] {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(20, 25, 60, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-overlay.active .search-container[b-rrwd4hfifd] {
    transform: translateY(0);
}

.search-header[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.search-header h3[b-rrwd4hfifd] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.search-close-btn[b-rrwd4hfifd] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-btn:hover[b-rrwd4hfifd] {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.search-input-wrapper[b-rrwd4hfifd] {
    position: relative;
    margin-bottom: 2rem;
}

.search-icon[b-rrwd4hfifd] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.search-input-premium[b-rrwd4hfifd] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-premium[b-rrwd4hfifd]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input-premium:focus[b-rrwd4hfifd] {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.search-suggestions-label[b-rrwd4hfifd] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.search-tag-list[b-rrwd4hfifd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag[b-rrwd4hfifd] {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover[b-rrwd4hfifd] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1023px) {
    .nav-container[b-rrwd4hfifd] {
        padding: 0.875rem 1rem;
    }

    .logo-text-sub[b-rrwd4hfifd] {
        display: none;
    }
}

@media (max-width: 640px) {
    .logo-orb[b-rrwd4hfifd] {
        width: 40px;
        height: 40px;
    }

    .logo-cross[b-rrwd4hfifd] {
        width: 24px;
        height: 24px;
    }

    .logo-text-main[b-rrwd4hfifd] {
        font-size: 1.125rem;
    }

    .action-btn[b-rrwd4hfifd] {
        width: 36px;
        height: 36px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ya5m5sazy2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ya5m5sazy2] {
    flex: 1;
}

.sidebar[b-ya5m5sazy2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ya5m5sazy2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ya5m5sazy2]  a, .top-row[b-ya5m5sazy2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ya5m5sazy2]  a:hover, .top-row[b-ya5m5sazy2]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ya5m5sazy2]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ya5m5sazy2] {
        justify-content: space-between;
    }

    .top-row[b-ya5m5sazy2]  a, .top-row[b-ya5m5sazy2]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ya5m5sazy2] {
        flex-direction: row;
    }

    .sidebar[b-ya5m5sazy2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ya5m5sazy2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ya5m5sazy2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ya5m5sazy2], article[b-ya5m5sazy2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ==================== PREMIUM NAVIGATION ==================== */
.nav-header-premium[b-qwx48bps1j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll State - Adds shadow and changes background on scroll */
.nav-header-premium.scrolled[b-qwx48bps1j] {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-header-premium.scrolled .nav-bg-blur[b-qwx48bps1j] {
    background: rgba(10, 14, 39, 0.95);
}

/* Glassmorphism Background with Gradient */
.nav-bg-blur[b-qwx48bps1j] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.85) 0%,
        rgba(20, 25, 60, 0.85) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Animated Bottom Glow Line */
.nav-glow-line[b-qwx48bps1j] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.6) 30%,
        rgba(245, 158, 11, 0.6) 50%,
        rgba(255, 215, 0, 0.6) 70%,
        transparent
    );
    opacity: 0.8;
    animation: glowPulse-b-qwx48bps1j 3s ease-in-out infinite;
}

@keyframes glowPulse-b-qwx48bps1j {
    0%, 100% {
        opacity: 0.5;
        filter: blur(2px);
    }
    50% {
        opacity: 1;
        filter: blur(4px);
    }
}

/* Container */
.nav-container[b-qwx48bps1j] {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* ==================== LOGO SECTION ==================== */
.nav-logo-wrapper[b-qwx48bps1j] {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-logo-wrapper[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #FFD700, #F59E0B);
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo-wrapper:hover[b-qwx48bps1j]::before {
    height: 100%;
}

.nav-logo-wrapper:hover[b-qwx48bps1j] {
    transform: translateX(6px);
}

.logo-orb[b-qwx48bps1j] {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 14px;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-orb[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-logo-wrapper:hover .logo-orb[b-qwx48bps1j]::before {
    opacity: 1;
}

.nav-logo-wrapper:hover .logo-orb[b-qwx48bps1j] {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.logo-glow[b-qwx48bps1j] {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #FFD700, #F59E0B);
    border-radius: 16px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    animation: logoGlowRotate-b-qwx48bps1j 8s linear infinite;
}

@keyframes logoGlowRotate-b-qwx48bps1j {
    0% { filter: blur(12px) hue-rotate(0deg); }
    100% { filter: blur(12px) hue-rotate(360deg); }
}

.nav-logo-wrapper:hover .logo-glow[b-qwx48bps1j] {
    opacity: 0.6;
}

.logo-cross[b-qwx48bps1j] {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
    transition: filter 0.4s ease;
}

.nav-logo-wrapper:hover .logo-cross[b-qwx48bps1j] {
    filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.6));
}

.logo-text-wrapper[b-qwx48bps1j] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-text-main[b-qwx48bps1j] {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-text-sub[b-qwx48bps1j] {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==================== DESKTOP NAVIGATION ==================== */
.nav-links-desktop[b-qwx48bps1j] {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

@media (min-width: 1024px) {
    .nav-links-desktop[b-qwx48bps1j] {
        display: flex;
    }
}

.nav-link-premium[b-qwx48bps1j] {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
}

.nav-link-premium[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-link-premium:hover[b-qwx48bps1j]::before {
    opacity: 1;
}

.nav-link-premium:hover[b-qwx48bps1j] {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.nav-link-premium.active[b-qwx48bps1j] {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
}

.nav-link-premium.active[b-qwx48bps1j]::before {
    opacity: 1;
}

.nav-link-text[b-qwx48bps1j] {
    position: relative;
    z-index: 1;
}

/* Active Indicator - Enhanced with glow */
.nav-link-indicator[b-qwx48bps1j] {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #F59E0B, #FFD700);
    background-size: 200% 100%;
    border-radius: 3px 3px 0 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    animation: indicatorShimmer-b-qwx48bps1j 2s ease-in-out infinite;
}

@keyframes indicatorShimmer-b-qwx48bps1j {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-link-premium.active .nav-link-indicator[b-qwx48bps1j],
.nav-link-premium:hover .nav-link-indicator[b-qwx48bps1j] {
    transform: translateX(-50%) scaleX(1);
}

.nav-link-premium:hover .nav-link-indicator[b-qwx48bps1j] {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* ==================== ACTION BUTTONS ==================== */
.nav-actions-premium[b-qwx48bps1j] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn[b-qwx48bps1j] {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.action-btn[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-btn:hover[b-qwx48bps1j]::before {
    opacity: 1;
}

.action-btn:hover[b-qwx48bps1j] {
    background: rgba(255, 255, 255, 0.12);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.action-btn:active[b-qwx48bps1j] {
    transform: translateY(0) scale(0.98);
}

.action-btn-glow[b-qwx48bps1j] {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    border-radius: 14px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.action-btn:hover .action-btn-glow[b-qwx48bps1j] {
    opacity: 1;
    animation: glowPulse-b-qwx48bps1j 2s ease-in-out infinite;
}

/* Live Indicator Button - Enhanced */
.live-indicator-btn[b-qwx48bps1j] {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.12));
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    border-radius: 24px;
    color: #EF4444;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.live-indicator-btn[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: liveShimmer-b-qwx48bps1j 3s ease-in-out infinite;
}

@keyframes liveShimmer-b-qwx48bps1j {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@media (min-width: 768px) {
    .live-indicator-btn[b-qwx48bps1j] {
        display: flex;
    }
}

.live-indicator-btn:hover[b-qwx48bps1j] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.live-indicator-btn:active[b-qwx48bps1j] {
    transform: translateY(0) scale(0.98);
}

.live-pulse[b-qwx48bps1j] {
    width: 10px;
    height: 10px;
    background: #EF4444;
    border-radius: 50%;
    position: relative;
    animation: livePulse-b-qwx48bps1j 2s ease-in-out infinite;
}

.live-pulse[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: #EF4444;
    border-radius: 50%;
    opacity: 0.4;
    animation: livePulseRing-b-qwx48bps1j 2s ease-in-out infinite;
}

@keyframes livePulse-b-qwx48bps1j {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
        box-shadow: 0 0 16px rgba(239, 68, 68, 0.8);
    }
}

@keyframes livePulseRing-b-qwx48bps1j {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger-premium[b-qwx48bps1j] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .hamburger-premium[b-qwx48bps1j] {
        display: none;
    }
}

.hamburger-premium:hover[b-qwx48bps1j] {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line[b-qwx48bps1j] {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-premium.active .hamburger-line:nth-child(1)[b-qwx48bps1j] {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-premium.active .hamburger-line:nth-child(2)[b-qwx48bps1j] {
    opacity: 0;
}

.hamburger-premium.active .hamburger-line:nth-child(3)[b-qwx48bps1j] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-overlay[b-qwx48bps1j] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active[b-qwx48bps1j] {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel[b-qwx48bps1j] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    max-width: 85vw;
    background: linear-gradient(160deg, rgba(10, 14, 39, 0.98), rgba(20, 25, 60, 0.98), rgba(15, 20, 50, 0.98));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-left: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-panel[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.08), transparent);
    pointer-events: none;
}

.mobile-nav-panel.active[b-qwx48bps1j] {
    transform: translateX(0);
}

.mobile-nav-header[b-qwx48bps1j] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-title[b-qwx48bps1j] {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close-btn[b-qwx48bps1j] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover[b-qwx48bps1j] {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.mobile-nav-links[b-qwx48bps1j] {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-link[b-qwx48bps1j] {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.125rem 1.5rem;
    margin: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 3px solid transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link[b-qwx48bps1j]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255, 215, 0, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav-link:hover[b-qwx48bps1j]::before {
    opacity: 1;
}

.mobile-nav-link:hover[b-qwx48bps1j] {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-left-color: rgba(255, 215, 0, 0.5);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.1);
}

.mobile-nav-link.active[b-qwx48bps1j] {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(245, 158, 11, 0.1));
    color: #FFD700;
    border-left-color: #FFD700;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.mobile-nav-link.active[b-qwx48bps1j]::before {
    opacity: 1;
}

.mobile-nav-link svg[b-qwx48bps1j] {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-link:hover svg[b-qwx48bps1j],
.mobile-nav-link.active svg[b-qwx48bps1j] {
    transform: scale(1.1) rotate(-5deg);
}

.mobile-nav-link span[b-qwx48bps1j] {
    flex: 1;
    position: relative;
    z-index: 1;
}

.mobile-link-arrow[b-qwx48bps1j] {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: rgba(255, 215, 0, 0.7);
    font-size: 1.125rem;
}

.mobile-nav-link:hover .mobile-link-arrow[b-qwx48bps1j] {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link.active .mobile-link-arrow[b-qwx48bps1j] {
    opacity: 1;
    transform: translateX(0);
    color: #FFD700;
}

.mobile-nav-footer[b-qwx48bps1j] {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links[b-qwx48bps1j] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-icon-mobile[b-qwx48bps1j] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon-mobile:hover[b-qwx48bps1j] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    transform: translateY(-2px);
}

.mobile-footer-text[b-qwx48bps1j] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0;
}

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay[b-qwx48bps1j] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active[b-qwx48bps1j] {
    opacity: 1;
    visibility: visible;
}

.search-container[b-qwx48bps1j] {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(20, 25, 60, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-overlay.active .search-container[b-qwx48bps1j] {
    transform: translateY(0);
}

.search-header[b-qwx48bps1j] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.search-header h3[b-qwx48bps1j] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.search-close-btn[b-qwx48bps1j] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-btn:hover[b-qwx48bps1j] {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.search-input-wrapper[b-qwx48bps1j] {
    position: relative;
    margin-bottom: 2rem;
}

.search-icon[b-qwx48bps1j] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.search-input-premium[b-qwx48bps1j] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-premium[b-qwx48bps1j]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input-premium:focus[b-qwx48bps1j] {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.search-suggestions-label[b-qwx48bps1j] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.search-tag-list[b-qwx48bps1j] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag[b-qwx48bps1j] {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover[b-qwx48bps1j] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1023px) {
    .nav-container[b-qwx48bps1j] {
        padding: 0.875rem 1rem;
    }

    .logo-text-sub[b-qwx48bps1j] {
        display: none;
    }
}

@media (max-width: 640px) {
    .logo-orb[b-qwx48bps1j] {
        width: 40px;
        height: 40px;
    }

    .logo-cross[b-qwx48bps1j] {
        width: 24px;
        height: 24px;
    }

    .logo-text-main[b-qwx48bps1j] {
        font-size: 1.125rem;
    }

    .action-btn[b-qwx48bps1j] {
        width: 36px;
        height: 36px;
    }
}
/* /Pages/Programs.razor.rz.scp.css */
/* ============================================
   PROGRAMS PAGE - WORLD-CLASS UI/UX DESIGN
   ============================================ */

/* CSS Variables */
:root[b-0ooyh2jaw0] {
    --deep-blue: #0A0E27;
    --dark-blue: #0F1729;
    --blue-900: #1A2332;
    --gold-500: #F59E0B;
    --gold-400: #FBBF24;
    --gold-300: #FCD34D;
    --cyan-400: #22D3EE;
    --cyan-300: #67E8F9;
    --white: #FFFFFF;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FCD34D 100%);
    --gradient-blue: linear-gradient(180deg, #0A0E27 0%, #1A2332 100%);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   HERO SECTION - PREMIUM DESIGN
   ============================================ */

.programs-hero[b-0ooyh2jaw0] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0A0E27 0%, #0F1729 50%, #1A2332 100%);
    overflow: hidden;
    padding: 160px 24px 120px;
}

/* Background System */
.hero-bg[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated Gradient Mesh */
.gradient-mesh[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.5;
}

.mesh-blob[b-0ooyh2jaw0] {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: blobFloat-b-0ooyh2jaw0 25s ease-in-out infinite;
    will-change: transform;
}

.blob-1[b-0ooyh2jaw0] {
    width: 600px;
    height: 600px;
    top: -250px;
    left: -150px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent);
    animation-delay: 0s;
}

.blob-2[b-0ooyh2jaw0] {
    width: 700px;
    height: 700px;
    top: 20%;
    right: -250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent);
    animation-delay: 5s;
}

.blob-3[b-0ooyh2jaw0] {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 25%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent);
    animation-delay: 10s;
}

.blob-4[b-0ooyh2jaw0] {
    width: 650px;
    height: 650px;
    bottom: 15%;
    right: 15%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent);
    animation-delay: 15s;
}

@keyframes blobFloat-b-0ooyh2jaw0 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 50% 50%;
    }
    25% {
        transform: translate(60px, -60px) scale(1.15) rotate(90deg);
        border-radius: 40% 60% 50% 50%;
    }
    50% {
        transform: translate(-40px, 40px) scale(0.85) rotate(180deg);
        border-radius: 60% 40% 60% 40%;
    }
    75% {
        transform: translate(50px, -30px) scale(1.08) rotate(270deg);
        border-radius: 50% 50% 40% 60%;
    }
}

/* Grid Overlay */
.grid-overlay[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    pointer-events: none;
}

/* Radial Spotlight */
.radial-spotlight[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 120% 80% at 50% 40%,
        rgba(251, 191, 36, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Enhanced Particles */
.particles-layer[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle[b-0ooyh2jaw0] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.7) 0%, transparent 70%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat-b-0ooyh2jaw0 18s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.particle-large[b-0ooyh2jaw0] {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.8) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
    animation-duration: 22s;
}

@keyframes particleFloat-b-0ooyh2jaw0 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(60px, -60px) scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.7);
        opacity: 0.6;
    }
    75% {
        transform: translate(50px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

/* Animated Lines */
.animated-lines[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
}

.line[b-0ooyh2jaw0] {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
    width: 100%;
}

.line-1[b-0ooyh2jaw0] {
    top: 25%;
    animation: lineSlide-b-0ooyh2jaw0 15s linear infinite;
}

.line-2[b-0ooyh2jaw0] {
    top: 50%;
    animation: lineSlide-b-0ooyh2jaw0 20s linear infinite reverse;
    animation-delay: 5s;
}

.line-3[b-0ooyh2jaw0] {
    top: 75%;
    animation: lineSlide-b-0ooyh2jaw0 18s linear infinite;
    animation-delay: 10s;
}

@keyframes lineSlide-b-0ooyh2jaw0 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Hero Container */
.hero-container[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
}

.hero-content[b-0ooyh2jaw0] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Badge */
.badge-wrapper[b-0ooyh2jaw0] {
    margin-bottom: 40px;
}

.badge-pill[b-0ooyh2jaw0] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(30px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-icon[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.badge-icon svg[b-0ooyh2jaw0] {
    width: 18px;
    height: 18px;
}

.badge-text[b-0ooyh2jaw0] {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.badge-pulse[b-0ooyh2jaw0] {
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    animation: badgePulse-b-0ooyh2jaw0 3s ease-in-out infinite;
}

@keyframes badgePulse-b-0ooyh2jaw0 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.5;
    }
}

/* Advanced Typography Hero Title */
.hero-title[b-0ooyh2jaw0] {
    font-size: clamp(56px, 8vw, 88px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 36px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.title-line[b-0ooyh2jaw0] {
    display: block;
    overflow: hidden;
}

.title-word[b-0ooyh2jaw0] {
    display: inline-block;
    margin: 0 12px;
    animation: fadeInUp-b-0ooyh2jaw0 1s ease-out backwards;
}

.title-word:nth-child(1)[b-0ooyh2jaw0] {
    animation-delay: 0.1s;
}

.title-word:nth-child(2)[b-0ooyh2jaw0] {
    animation-delay: 0.2s;
}

.title-gradient-line[b-0ooyh2jaw0] {
    position: relative;
    margin-top: 8px;
}

.title-gradient[b-0ooyh2jaw0] {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.3));
    position: relative;
}

.title-gradient:nth-child(1)[b-0ooyh2jaw0] {
    animation-delay: 0.3s;
}

.title-gradient:nth-child(2)[b-0ooyh2jaw0] {
    animation-delay: 0.4s;
}

.title-decoration[b-0ooyh2jaw0] {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn-b-0ooyh2jaw0 1s ease-out 0.6s forwards;
}

.decoration-underline[b-0ooyh2jaw0] {
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4));
}

@keyframes fadeInUp-b-0ooyh2jaw0 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-0ooyh2jaw0 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Subtitle */
.hero-subtitle[b-0ooyh2jaw0] {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 48px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Stats Bar */
.hero-stats[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    margin-bottom: 60px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: var(--gold-400);
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon[b-0ooyh2jaw0] {
    background: rgba(251, 191, 36, 0.15);
    transform: scale(1.1);
}

.stat-content[b-0ooyh2jaw0] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value[b-0ooyh2jaw0] {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label[b-0ooyh2jaw0] {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider[b-0ooyh2jaw0] {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Scroll Indicator */
.scroll-indicator[b-0ooyh2jaw0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover[b-0ooyh2jaw0] {
    opacity: 1;
    transform: translateY(4px);
}

.scroll-icon[b-0ooyh2jaw0] {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel[b-0ooyh2jaw0] {
    width: 4px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 4px;
    animation: scrollBounce-b-0ooyh2jaw0 2s ease-in-out infinite;
}

@keyframes scrollBounce-b-0ooyh2jaw0 {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

.scroll-text[b-0ooyh2jaw0] {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PROGRAMS SECTION - WORLD-CLASS DESIGN
   ============================================ */

.programs-section[b-0ooyh2jaw0] {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #1A2332 0%, #0F1729 50%, #0A0E27 100%);
    position: relative;
}

.programs-section[b-0ooyh2jaw0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.3) 50%, transparent 100%);
}

.programs-container[b-0ooyh2jaw0] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header[b-0ooyh2jaw0] {
    text-align: center;
    margin-bottom: 80px;
}

.header-content[b-0ooyh2jaw0] {
    margin-bottom: 48px;
}

.header-badge[b-0ooyh2jaw0] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--gold-400);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-badge svg[b-0ooyh2jaw0] {
    stroke: var(--gold-400);
}

.section-title[b-0ooyh2jaw0] {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-highlight[b-0ooyh2jaw0] {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.section-subtitle[b-0ooyh2jaw0] {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY FILTERS
   ============================================ */

.category-filters[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn[b-0ooyh2jaw0] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.filter-btn[b-0ooyh2jaw0]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-btn:hover[b-0ooyh2jaw0] {
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.filter-btn.active[b-0ooyh2jaw0] {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
    color: var(--gold-400);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}

.filter-icon[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.filter-icon svg[b-0ooyh2jaw0] {
    stroke: currentColor;
}

.filter-text[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
}

.filter-count[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.filter-btn.active .filter-count[b-0ooyh2jaw0] {
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold-400);
}

/* ============================================
   PROGRAMS GRID
   ============================================ */

.programs-grid[b-0ooyh2jaw0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 36px;
    margin-bottom: 60px;
}

/* ============================================
   PROGRAM CARD - ENHANCED
   ============================================ */

.program-card[b-0ooyh2jaw0] {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

/* Card Glow Effect */
.card-glow[b-0ooyh2jaw0] {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.program-card:hover .card-glow[b-0ooyh2jaw0] {
    opacity: 1;
}

.program-card[b-0ooyh2jaw0]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover[b-0ooyh2jaw0] {
    transform: translateY(-12px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(251, 191, 36, 0.15),
        0 0 40px rgba(251, 191, 36, 0.1);
}

.program-card:hover[b-0ooyh2jaw0]::before {
    opacity: 1;
}

/* ============================================
   PROGRAM THUMBNAIL - ENHANCED
   ============================================ */

.program-thumbnail[b-0ooyh2jaw0] {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(34, 211, 238, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumbnail-overlay[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.7) 100%);
}

.thumbnail-gradient[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .thumbnail-gradient[b-0ooyh2jaw0] {
    opacity: 1;
}

/* Play Button Overlay */
.play-overlay[b-0ooyh2jaw0] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
}

.program-card:hover .play-overlay[b-0ooyh2jaw0] {
    opacity: 1;
}

.play-button[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    color: #0A0E27;
    transform: scale(0.8);
    transition: var(--transition-bounce);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
}

.program-card:hover .play-button[b-0ooyh2jaw0] {
    transform: scale(1);
}

.play-button:hover[b-0ooyh2jaw0] {
    transform: scale(1.1);
}

.program-icon[b-0ooyh2jaw0] {
    position: relative;
    z-index: 2;
    font-size: 100px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.program-card:hover .program-icon[b-0ooyh2jaw0] {
    transform: scale(1.2) rotate(8deg);
}

/* Badges */
.featured-badge[b-0ooyh2jaw0] {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gold-gradient);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #0A0E27;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
    animation: pulse-b-0ooyh2jaw0 2.5s ease-in-out infinite;
}

.new-badge[b-0ooyh2jaw0] {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.5);
    overflow: hidden;
}

.badge-shine[b-0ooyh2jaw0] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-b-0ooyh2jaw0 2s ease-in-out infinite;
}

@keyframes shine-b-0ooyh2jaw0 {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse-b-0ooyh2jaw0 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.featured-badge svg[b-0ooyh2jaw0],
.new-badge svg[b-0ooyh2jaw0] {
    width: 14px;
    height: 14px;
}

/* ============================================
   PROGRAM CONTENT - ENHANCED
   ============================================ */

.program-content[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
    padding: 32px;
}

/* Meta Information */
.program-meta[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.program-type[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-dot[b-0ooyh2jaw0] {
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
    animation: dotPulse-b-0ooyh2jaw0 2s ease-in-out infinite;
}

@keyframes dotPulse-b-0ooyh2jaw0 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.program-duration[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.program-duration svg[b-0ooyh2jaw0] {
    width: 14px;
    height: 14px;
}

/* Title */
.program-title[b-0ooyh2jaw0] {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.program-card:hover .program-title[b-0ooyh2jaw0] {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.program-description[b-0ooyh2jaw0] {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.program-tags[b-0ooyh2jaw0] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag[b-0ooyh2jaw0] {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.tag:hover[b-0ooyh2jaw0] {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--gold-400);
}

/* ============================================
   PROGRAM FOOTER - ENHANCED
   ============================================ */

.program-footer[b-0ooyh2jaw0] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Engagement */
.program-engagement[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.engagement-item[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.engagement-item:hover[b-0ooyh2jaw0] {
    color: var(--gold-400);
}

.engagement-item svg[b-0ooyh2jaw0] {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.engagement-item:hover svg[b-0ooyh2jaw0] {
    opacity: 1;
    fill: var(--gold-400);
}

.engagement-item.rating[b-0ooyh2jaw0] {
    color: var(--gold-400);
}

.engagement-item.rating svg[b-0ooyh2jaw0] {
    fill: var(--gold-400);
    opacity: 1;
}

.engagement-divider[b-0ooyh2jaw0] {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* Action Buttons */
.action-buttons[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.watch-button[b-0ooyh2jaw0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 12px;
    color: #0A0E27 !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.watch-button.primary[b-0ooyh2jaw0] {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #0A0E27 !important;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.watch-button:hover[b-0ooyh2jaw0] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.button-text[b-0ooyh2jaw0] {
    color: #0A0E27 !important;
    font-weight: 700;
}

.button-icon[b-0ooyh2jaw0] {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    fill: #0A0E27 !important;
}

.watch-button:hover .button-icon[b-0ooyh2jaw0] {
    transform: translateX(4px);
}

.icon-button[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.icon-button:hover[b-0ooyh2jaw0] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--gold-400);
    transform: translateY(-2px);
}

/* ============================================
   LOAD MORE SECTION
   ============================================ */

.load-more-section[b-0ooyh2jaw0] {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.load-more-btn[b-0ooyh2jaw0] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.btn-content[b-0ooyh2jaw0] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-shine[b-0ooyh2jaw0] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover[b-0ooyh2jaw0] {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.2);
}

.load-more-btn:hover .btn-shine[b-0ooyh2jaw0] {
    left: 100%;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state[b-0ooyh2jaw0] {
    text-align: center;
    padding: 120px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.empty-icon[b-0ooyh2jaw0] {
    margin-bottom: 32px;
    color: var(--text-muted);
    opacity: 0.5;
}

.empty-icon svg[b-0ooyh2jaw0] {
    stroke: currentColor;
}

.empty-title[b-0ooyh2jaw0] {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.empty-text[b-0ooyh2jaw0] {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.reset-filters-btn[b-0ooyh2jaw0] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 12px;
    color: #0A0E27;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.reset-filters-btn:hover[b-0ooyh2jaw0] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.reset-filters-btn svg[b-0ooyh2jaw0] {
    width: 18px;
    height: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .programs-grid[b-0ooyh2jaw0] {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 28px;
    }

    .hero-stats[b-0ooyh2jaw0] {
        gap: 24px;
        padding: 24px 32px;
    }

    .category-filters[b-0ooyh2jaw0] {
        gap: 8px;
    }

    .filter-btn[b-0ooyh2jaw0] {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .hero-stats[b-0ooyh2jaw0] {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider[b-0ooyh2jaw0] {
        display: none;
    }

    .category-filters[b-0ooyh2jaw0] {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .programs-hero[b-0ooyh2jaw0] {
        min-height: 80vh;
        padding: 140px 20px 80px;
    }

    .hero-title[b-0ooyh2jaw0] {
        font-size: 48px;
        margin-bottom: 28px;
    }

    .title-word[b-0ooyh2jaw0] {
        margin: 0 6px;
    }

    .hero-subtitle[b-0ooyh2jaw0] {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .hero-stats[b-0ooyh2jaw0] {
        flex-direction: column;
        gap: 20px;
        padding: 24px 28px;
        width: 100%;
        max-width: 400px;
    }

    .stat-item[b-0ooyh2jaw0] {
        width: 100%;
        justify-content: flex-start;
    }

    .section-header[b-0ooyh2jaw0] {
        margin-bottom: 60px;
    }

    .section-title[b-0ooyh2jaw0] {
        font-size: 36px;
    }

    .programs-section[b-0ooyh2jaw0] {
        padding: 80px 0 100px;
    }

    .programs-grid[b-0ooyh2jaw0] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-thumbnail[b-0ooyh2jaw0] {
        height: 220px;
    }

    .program-icon[b-0ooyh2jaw0] {
        font-size: 80px;
    }

    .program-footer[b-0ooyh2jaw0] {
        flex-direction: column;
        align-items: stretch;
    }

    .action-buttons[b-0ooyh2jaw0] {
        flex-direction: column;
    }

    .watch-button[b-0ooyh2jaw0] {
        width: 100%;
    }

    .badge-pill[b-0ooyh2jaw0] {
        padding: 12px 24px;
    }

    .badge-text[b-0ooyh2jaw0] {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title[b-0ooyh2jaw0] {
        font-size: 38px;
    }

    .hero-subtitle[b-0ooyh2jaw0] {
        font-size: 16px;
    }

    .program-content[b-0ooyh2jaw0] {
        padding: 24px;
    }

    .program-title[b-0ooyh2jaw0] {
        font-size: 22px;
    }

    .program-description[b-0ooyh2jaw0] {
        font-size: 14px;
    }

    .programs-section[b-0ooyh2jaw0] {
        padding: 60px 0 80px;
    }

    .scroll-indicator[b-0ooyh2jaw0] {
        display: none;
    }

    .filter-btn[b-0ooyh2jaw0] {
        padding: 10px 16px;
        font-size: 12px;
    }

    .filter-icon[b-0ooyh2jaw0] {
        font-size: 16px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *[b-0ooyh2jaw0],
    *[b-0ooyh2jaw0]::before,
    *[b-0ooyh2jaw0]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
