/* ================================
   OFISENSE SCHOOL - CRAZY EFFECTS
   Matrix Rain + Holographic + Magnetic + Glitch
   ================================ */

/* ================================
   BOOT SCREEN - Terminal Loading
   ================================ */
.boot-screen {
    position: fixed;
    inset: 0;
    background: #0a0a0f;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.boot-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

body:not(.loading) {
    overflow: auto;
}

.boot-terminal {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #27CA40;
    max-width: 600px;
    width: 90%;
}

.boot-line {
    opacity: 0;
    transform: translateX(-20px);
    margin-bottom: 12px;
    animation: bootLineAppear 0.4s ease forwards;
}

.boot-line[data-delay="0"] { animation-delay: 0s; }
.boot-line[data-delay="300"] { animation-delay: 0.3s; }
.boot-line[data-delay="600"] { animation-delay: 0.6s; }
.boot-line[data-delay="900"] { animation-delay: 0.9s; }
.boot-line[data-delay="1200"] { animation-delay: 1.2s; }
.boot-line[data-delay="1500"] { animation-delay: 1.5s; }
.boot-line[data-delay="1800"] { animation-delay: 1.8s; }

@keyframes bootLineAppear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.boot-line.success {
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.boot-line.blink {
    animation: bootLineAppear 0.4s ease forwards, blinkText 1s ease-in-out infinite 2s;
    color: var(--text-muted);
}

@keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.boot-logo {
    opacity: 0;
    animation: bootLogoAppear 1s ease forwards 2s;
}

.boot-logo img {
    height: 80px;
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.5));
}

@keyframes bootLogoAppear {
    to {
        opacity: 1;
    }
}

/* ================================
   MATRIX RAIN CANVAS
   ================================ */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.35; /* More visible in hero */
    pointer-events: none;
    /* Fade effect controlled by JS based on scroll */
    transition: opacity 0.5s ease;
}

/* When scrolled past hero, dim the matrix (but still visible) */
body.scrolled-past-hero .matrix-canvas {
    opacity: 0.15;
}

body.scrolled-past-hero .floating-code-elements {
    opacity: 0.25;
}

/* ================================
   CURSOR EFFECTS
   ================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.cursor-trail {
    display: none; /* Hidden - using code trail instead */
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: width 0.2s, height 0.2s;
}

.cursor-trail.expanded {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

/* Code Trail Effect */
.code-trail-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: codeTrailFade 1s ease-out forwards;
    user-select: none;
}

@keyframes codeTrailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(180deg) translateY(-30px);
    }
}

/* ================================
   SCHOOL NAVIGATION
   ================================ */
.school-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
}

.school-logo-img {
    height: 55px !important;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.6));
}

.nav-logo:hover .nav-logo-text {
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.nav-logo:hover .school-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8));
}

.logo-divider {
    color: var(--text-dim);
    font-size: 1.5rem;
}

.school-badge {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-home {
    opacity: 0.7;
    font-size: 0.85rem;
}

.nav-home:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

/* ================================
   MAGNETIC ELEMENT EFFECT
   ================================ */
.magnetic-element {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   SCHOOL HERO SECTION
   ================================ */
.school-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 150px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(233, 69, 96, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(233, 69, 96, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Code Elements */
.floating-code-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.code-float {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: var(--pink);
    opacity: 0;
    animation: codeFloat 12s ease-in-out infinite;
    text-shadow: 0 0 20px var(--pink), 0 0 40px var(--pink);
    font-weight: bold;
}

.c1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.c2 { top: 25%; right: 15%; animation-delay: 1.5s; font-size: 2.2rem; }
.c3 { top: 45%; left: 5%; animation-delay: 3s; font-size: 3rem; color: var(--purple); text-shadow: 0 0 20px var(--purple), 0 0 40px var(--purple); }
.c4 { top: 60%; right: 8%; animation-delay: 4.5s; font-size: 2.5rem; }
.c5 { bottom: 30%; left: 12%; animation-delay: 6s; font-size: 2.3rem; color: var(--purple); text-shadow: 0 0 20px var(--purple), 0 0 40px var(--purple); }
.c6 { bottom: 25%; right: 20%; animation-delay: 7.5s; font-size: 2.8rem; }
.c7 { top: 35%; right: 5%; animation-delay: 9s; font-size: 2.4rem; }
.c8 { bottom: 15%; left: 20%; animation-delay: 10.5s; font-size: 2.6rem; color: var(--purple); text-shadow: 0 0 20px var(--purple), 0 0 40px var(--purple); }

@keyframes codeFloat {
    0%, 100% { 
        opacity: 0;
        transform: translateY(20px) rotate(0deg) scale(0.8);
    }
    15% {
        opacity: 0.9;
        transform: translateY(0) rotate(5deg) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(-40px) rotate(-5deg) scale(1.1);
    }
    85% {
        opacity: 0.9;
        transform: translateY(-10px) rotate(3deg) scale(1);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-content-wrapper.hero-minimal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    width: 100vw;
    max-width: 100vw !important;
    padding: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 40px;
}

.hero-title-mega {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
}

/* Hero Text with Escaping Logos */
.hero-text-with-logos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Escaping Logos */
.escaping-logo {
    position: absolute;
    width: 90px;
    height: 90px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    z-index: 0;
    will-change: transform;
    pointer-events: auto;
}

.hero-title-compact {
    z-index: 5;
    position: relative;
    padding: 0 150px;
}

.escaping-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.escaping-logo:hover img {
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.9));
    transform: scale(1.3) rotate(15deg);
}

/* Position each logo spread across the entire hero - far from center text */
.escaping-logo:nth-child(1) { top: 8%; left: 3%; }
.escaping-logo:nth-child(2) { top: 5%; right: 5%; }
.escaping-logo:nth-child(3) { top: 35%; left: 1%; }
.escaping-logo:nth-child(4) { top: 30%; right: 2%; }
.escaping-logo:nth-child(5) { top: 65%; left: 2%; }
.escaping-logo:nth-child(6) { top: 70%; right: 3%; }
.escaping-logo:nth-child(7) { top: 15%; left: 12%; }
.escaping-logo:nth-child(8) { top: 12%; right: 10%; }
.escaping-logo:nth-child(9) { top: 55%; left: 8%; }
.escaping-logo:nth-child(10) { top: 50%; right: 6%; }
.escaping-logo:nth-child(11) { top: 80%; left: 10%; }
.escaping-logo:nth-child(12) { top: 85%; right: 8%; }
.escaping-logo:nth-child(13) { top: 25%; left: 6%; }
.escaping-logo:nth-child(14) { top: 20%; right: 4%; }
.escaping-logo:nth-child(15) { top: 45%; left: 4%; }
.escaping-logo:nth-child(16) { top: 40%; right: 8%; }

/* Varied sizes for visual interest - bigger logos */
.escaping-logo:nth-child(1) { width: 80px; height: 80px; }
.escaping-logo:nth-child(2) { width: 100px; height: 100px; }
.escaping-logo:nth-child(3) { width: 90px; height: 90px; }
.escaping-logo:nth-child(4) { width: 75px; height: 75px; }
.escaping-logo:nth-child(5) { width: 95px; height: 95px; }
.escaping-logo:nth-child(6) { width: 85px; height: 85px; }
.escaping-logo:nth-child(7) { width: 70px; height: 70px; }
.escaping-logo:nth-child(8) { width: 88px; height: 88px; }
.escaping-logo:nth-child(9) { width: 78px; height: 78px; }
.escaping-logo:nth-child(10) { width: 72px; height: 72px; }
.escaping-logo:nth-child(11) { width: 82px; height: 82px; }
.escaping-logo:nth-child(12) { width: 68px; height: 68px; }
.escaping-logo:nth-child(13) { width: 92px; height: 92px; }
.escaping-logo:nth-child(14) { width: 76px; height: 76px; }
.escaping-logo:nth-child(15) { width: 84px; height: 84px; }
.escaping-logo:nth-child(16) { width: 70px; height: 70px; }

.escaping-logo:nth-child(1) img { animation-delay: 0s; }
.escaping-logo:nth-child(2) img { animation-delay: 0.4s; }
.escaping-logo:nth-child(3) img { animation-delay: 0.8s; }
.escaping-logo:nth-child(4) img { animation-delay: 1.2s; }
.escaping-logo:nth-child(5) img { animation-delay: 1.6s; }
.escaping-logo:nth-child(6) img { animation-delay: 2s; }
.escaping-logo:nth-child(7) img { animation-delay: 0.2s; }
.escaping-logo:nth-child(8) img { animation-delay: 0.6s; }
.escaping-logo:nth-child(9) img { animation-delay: 1s; }
.escaping-logo:nth-child(10) img { animation-delay: 1.4s; }
.escaping-logo:nth-child(11) img { animation-delay: 0.3s; }
.escaping-logo:nth-child(12) img { animation-delay: 0.7s; }
.escaping-logo:nth-child(13) img { animation-delay: 1.1s; }
.escaping-logo:nth-child(14) img { animation-delay: 1.5s; }
.escaping-logo:nth-child(15) img { animation-delay: 1.9s; }
.escaping-logo:nth-child(16) img { animation-delay: 0.5s; }

/* Fleeing animation when cursor approaches */
.escaping-logo.fleeing {
    transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}

.escaping-logo.fleeing img {
    animation: logoPanic 0.2s ease-in-out;
    filter: drop-shadow(0 0 25px rgba(233, 69, 96, 0.9)) 
            drop-shadow(0 0 50px rgba(155, 93, 229, 0.5)) !important;
}

@keyframes logoPanic {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(20deg); }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(5deg); 
    }
}

/* Multiple Floating Logos Container */
.floating-logos-container {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* Individual Floating Logo Items */
.floating-logo-item {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-logo-item img {
    height: 60px;
    opacity: 0.4;
    filter: grayscale(50%) blur(1px);
    transition: all 0.4s ease;
}

.floating-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%) blur(0);
    transform: scale(1.3) rotate(10deg);
}

.floating-logo-item:hover {
    z-index: 100;
}

/* Logo positions and animations */
.logo-1 {
    top: 10%;
    left: 15%;
    animation: floatLogo1 8s ease-in-out infinite;
}

.logo-2 {
    top: 20%;
    right: 12%;
    animation: floatLogo2 9s ease-in-out infinite 1s;
}

.logo-3 {
    bottom: 25%;
    left: 10%;
    animation: floatLogo3 7s ease-in-out infinite 0.5s;
}

.logo-4 {
    bottom: 15%;
    right: 18%;
    animation: floatLogo4 10s ease-in-out infinite 2s;
}

.logo-5 {
    top: 50%;
    left: 5%;
    animation: floatLogo5 8s ease-in-out infinite 1.5s;
}

@keyframes floatLogo1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-3deg); }
    75% { transform: translate(15px, 5px) rotate(2deg); }
}

@keyframes floatLogo2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, 10px) rotate(-5deg); }
    66% { transform: translate(10px, -20px) rotate(3deg); }
}

@keyframes floatLogo3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -10px) rotate(8deg); }
}

@keyframes floatLogo4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -20px) rotate(-4deg); }
    75% { transform: translate(20px, 15px) rotate(6deg); }
}

@keyframes floatLogo5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40% { transform: translate(25px, 15px) rotate(10deg); }
    80% { transform: translate(-10px, -25px) rotate(-5deg); }
}

/* Ripple effect on hover */
.logo-ripple {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.floating-logo-item:hover .logo-ripple {
    opacity: 1;
    transform: scale(1.5);
    animation: rippleOut 0.8s ease-out forwards;
}

@keyframes rippleOut {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Main Center Logo */
.main-logo-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-main-logo {
    height: 150px;
    position: relative;
    z-index: 2;
    animation: logoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(233, 69, 96, 0.4));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* Orbiting Particles */
.logo-orbit {
    position: absolute;
    width: 280px;
    height: 280px;
    animation: orbitSpin 15s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.8);
}

.orbit-particle.p1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particlePulse 2s ease-in-out infinite;
}

.orbit-particle.p2 {
    bottom: 20%;
    left: 10%;
    animation: particlePulse 2s ease-in-out infinite 0.5s;
}

.orbit-particle.p3 {
    bottom: 20%;
    right: 10%;
    animation: particlePulse 2s ease-in-out infinite 1s;
}

@keyframes particlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    z-index: 20;
    font-size: 0.9rem;
    animation: fadeIn 1s ease 2s forwards;
    opacity: 0;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

/* Stats Section */
.stats-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.stats-section .hero-stats {
    margin-top: 0;
    animation: none;
    opacity: 1;
}

/* Compact Title */
.hero-title-compact {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.hero-title-compact .line-1 {
    display: block;
    color: var(--text);
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.5s forwards;
    margin-bottom: 15px;
}

.hero-title-compact .line-2 {
    display: block;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    opacity: 0;
    animation: scaleReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats at Bottom */
.hero-stats-bottom {
    margin-top: auto;
    padding-top: 60px;
}

/* Glitch Badge */
.glitch-badge {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.badge-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.3); }
    50% { box-shadow: 0 0 40px rgba(155, 93, 229, 0.5); }
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: #ff0080;
    animation: glitch1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
    color: #00ffff;
    animation: glitch2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.line-1 {
    color: var(--text);
    opacity: 0;
    animation: titleReveal 1s ease 0.3s forwards;
}

.line-2 {
    opacity: 0;
    animation: titleReveal 1s ease 0.6s forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.gradient-shimmer {
    background: linear-gradient(
        90deg,
        var(--orange) 0%,
        var(--pink) 25%,
        var(--purple) 50%,
        var(--pink) 75%,
        var(--orange) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Mega Gradient - Epic Title */
.mega-gradient {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--pink) 30%,
        var(--purple) 60%,
        var(--pink) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: megaGradient 4s ease-in-out infinite, textGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.5));
}

@keyframes megaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(233, 69, 96, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(155, 93, 229, 0.8)); }
}

/* Reveal Text Animation */
.reveal-text {
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    animation: revealSlide 1.5s ease 0.5s forwards;
}

@keyframes revealSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-101%); }
}

/* Line animations */
.hero-title-mega .line-1 {
    opacity: 0;
    animation: fadeSlideDown 1s ease 0.3s forwards;
}

.hero-title-mega .line-2 {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

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

@keyframes scaleReveal {
    from {
        opacity: 0;
        transform: scale(0.8) rotateX(20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-neon.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

.btn-neon.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.6);
}

.btn-neon.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-neon.primary:hover::before {
    transform: translateX(100%);
}

.btn-neon.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-neon.secondary:hover {
    border-color: var(--pink);
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Stats Orbs */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
    margin-top: 80px;
}

.stat-orb {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-orb:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--pink);
    transform: translateY(-5px);
}

.orb-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid transparent;
    border-radius: 23px;
    background: linear-gradient(var(--dark), var(--dark)) padding-box,
                var(--gradient) border-box;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-orb:hover .orb-ring {
    opacity: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scroll Indicator - Stats Section */
.stats-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    z-index: 20;
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 60px; opacity: 0.5; }
}

/* ================================
   INTRO SECTION
   ================================ */
.intro-section {
    padding: 100px 40px 80px;
    position: relative;
    z-index: 1;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intro-highlight {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ================================
   WHO SECTION - Floating Cards
   ================================ */
.who-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 2.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Typography Icons - Moving Text */
.title-icon-text {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 10px 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid var(--pink);
    border-radius: 10px;
    position: relative;
    display: inline-block;
}

.title-icon-text.animated-icon {
    animation: iconGlitch 3s ease-in-out infinite;
}

@keyframes iconGlitch {
    0%, 90%, 100% { 
        transform: translateY(0) skewX(0deg);
        opacity: 1;
    }
    92% { 
        transform: translateY(-2px) skewX(-5deg);
        opacity: 0.8;
    }
    94% { 
        transform: translateY(2px) skewX(5deg);
        opacity: 0.9;
    }
    96% { 
        transform: translateY(-1px) skewX(-2deg);
        opacity: 0.7;
    }
    98% { 
        transform: translateY(1px) skewX(2deg);
        opacity: 1;
    }
}

/* Card Icon Text */
.card-icon-text {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.card-icon-text.rotating-text {
    animation: textRotate3D 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes textRotate3D {
    0%, 100% { 
        transform: perspective(500px) rotateY(0deg) rotateX(0deg);
    }
    25% { 
        transform: perspective(500px) rotateY(15deg) rotateX(5deg);
    }
    50% { 
        transform: perspective(500px) rotateY(0deg) rotateX(0deg);
    }
    75% { 
        transform: perspective(500px) rotateY(-15deg) rotateX(-5deg);
    }
}

/* Format Icon Text */
.format-icon-text {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

/* Orb Icon Text (for courses) */
.orb-icon-text {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    z-index: 2;
}

/* Abstract Code Visual */
.abstract-visual {
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.1), rgba(155, 93, 229, 0.1)) !important;
}

.abstract-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 600;
}

.code-line {
    color: var(--text-muted);
    opacity: 0;
    animation: codeReveal 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 0.8s; }

.code-line.highlight {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: codeReveal 0.5s ease forwards, codePulse 2s ease-in-out infinite 1s;
}

@keyframes codeReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes codePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Floating Card Effect */
.floating-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card[data-delay="1"] { animation-delay: 0.5s; }
.floating-card[data-delay="2"] { animation-delay: 1s; }
.floating-card[data-delay="3"] { animation-delay: 1.5s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    25% { transform: translateY(-10px) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(0) rotateX(0) rotateY(0); }
    75% { transform: translateY(-5px) rotateX(-2deg) rotateY(2deg); }
}

.floating-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--pink);
    box-shadow: 
        0 30px 60px rgba(233, 69, 96, 0.3),
        0 0 100px rgba(155, 93, 229, 0.2);
    animation-play-state: paused;
}

/* Hologram Effect */
.card-hologram {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(233, 69, 96, 0.1) 45%,
        rgba(155, 93, 229, 0.1) 50%,
        transparent 55%
    );
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-card:hover .card-hologram {
    opacity: 1;
    animation: hologramSweep 2s linear infinite;
}

@keyframes hologramSweep {
    0% { background-position: 200% 200%; }
    100% { background-position: -100% -100%; }
}

.card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    opacity: 0;
    filter: blur(60px);
    transition: opacity 0.5s;
}

.floating-card:hover .card-glow {
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   WHO SECTION V2 - Vertical Cascade
   ================================ */
.who-section-v2 {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.who-cascade {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Central vertical line */
.who-cascade::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--primary), var(--purple), transparent);
    transform: translateX(-50%);
}

.cascade-item {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cascade-item.cascade-left {
    flex-direction: row-reverse;
    transform: translateX(100px);
}

.cascade-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.cascade-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 120px;
    text-align: center;
    animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.3); }
}

.cascade-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cascade-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cascade-card:hover::before {
    opacity: 1;
}

.cascade-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 
        0 0 30px rgba(233, 69, 96, 0.4),
        0 0 60px rgba(155, 93, 229, 0.3),
        0 0 90px rgba(233, 69, 96, 0.2),
        inset 0 0 30px rgba(233, 69, 96, 0.1);
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.15), rgba(155, 93, 229, 0.1));
}

.cascade-card:hover h3 {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.cascade-icon {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 10px 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--pink);
    border-radius: 10px;
    min-width: auto;
    text-align: center;
    transition: all 0.3s ease;
}

.cascade-card:hover .cascade-icon {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.cascade-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.cascade-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.cascade-line {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: var(--gradient);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .who-cascade::before {
        display: none;
    }
    
    .cascade-item,
    .cascade-item.cascade-left {
        flex-direction: column;
        transform: translateY(50px);
    }
    
    .cascade-item.visible {
        transform: translateY(0);
    }
    
    .cascade-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .cascade-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cascade-line {
        display: none;
    }
}

/* ================================
   WHO SECTION V3 - Stacked Terminal Rectangles
   ================================ */
.stacked-who {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.stacked-who .section-container {
    max-width: 900px;
}

.who-stacked-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.who-stacked-terminal {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInStacked 0.8s ease forwards;
}

/* Staggered animations */
.who-stacked-terminal[data-index="1"] { animation-delay: 0.1s; }
.who-stacked-terminal[data-index="2"] { animation-delay: 0.3s; }
.who-stacked-terminal[data-index="3"] { animation-delay: 0.5s; }
.who-stacked-terminal[data-index="4"] { animation-delay: 0.7s; }

@keyframes slideInStacked {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Continuous floating animation after slide-in */
.who-stacked-terminal.visible {
    animation: slideInStacked 0.8s ease forwards, floatStacked 4s ease-in-out infinite 1s;
}

@keyframes floatStacked {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

.stacked-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    min-width: 80px;
    text-align: center;
    transition: all 0.4s ease;
}

.who-stacked-terminal:hover .stacked-number {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary);
}

.stacked-terminal-box {
    flex: 1;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.who-stacked-terminal:hover .stacked-terminal-box {
    border-color: var(--primary);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(233, 69, 96, 0.3);
    transform: translateX(-10px);
}

.stacked-body {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 25px;
    padding: 30px !important;
    position: relative;
}

.stacked-icon {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 12px 20px;
    border: 2px solid var(--pink);
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    /* Same gradient text as HOW, FAQ */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-stacked-terminal:hover .stacked-icon {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.stacked-text {
    flex: 1;
}

.stacked-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-display);
}

.stacked-text .terminal-output {
    color: #27CA40;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Courier New', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .who-stacked-terminal {
        flex-direction: column;
        gap: 15px;
    }
    
    .stacked-number {
        font-size: 3rem;
    }
    
    .stacked-body {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================
   COURSES SECTION - 3D Holographic Cards
   ================================ */
.courses-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(155, 93, 229, 0.05), transparent);
}

.courses-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    perspective: 2000px;
}

/* Holographic Card */
.holographic-card {
    position: relative;
    height: 520px;
    cursor: pointer;
}

.card-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.holographic-card.flipped .card-3d-wrapper {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.15), rgba(155, 93, 229, 0.15));
    border-color: var(--pink);
}

/* Card Front */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.education-badge {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.vibe-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    animation: vibePulse 1s ease-in-out infinite;
}

@keyframes vibePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.8); }
}

.card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-orb {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    animation: orbFloat 4s ease-in-out infinite;
}

.automation-orb {
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.5);
}

.education-orb {
    background: linear-gradient(135deg, var(--purple), var(--violet));
    box-shadow: 0 20px 60px rgba(155, 93, 229, 0.5);
}

.vibe-orb {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.dev-orb {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.5);
}

.dev-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.popular-badge {
    background: var(--gradient);
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.orb-icon {
    font-size: 3rem;
    z-index: 2;
}

.orb-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring.r2 { animation-delay: 0.5s; }
.ring.r3 { animation-delay: 1s; }

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.vibe-title {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vibeShimmer 2s linear infinite;
}

@keyframes vibeShimmer {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.card-desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tags .tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-flip-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--pink);
    font-size: 0.9rem;
    margin-top: auto;
}

.flip-icon {
    animation: flipHint 2s ease-in-out infinite;
}

@keyframes flipHint {
    0%, 100% { transform: rotateY(0); }
    50% { transform: rotateY(180deg); }
}

/* Card Back */
.card-back h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.learn-list {
    list-style: none;
    margin-bottom: 25px;
}

.learn-list li {
    padding: 10px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.learn-list li::before {
    content: '✓';
    color: var(--pink);
    font-weight: bold;
}

.card-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.card-cta {
    display: block;
    text-align: center;
    background: var(--gradient);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: auto;
}

.card-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

/* Hologram Effect */
.hologram-effect {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(233, 69, 96, 0.1) 50%,
        rgba(155, 93, 229, 0.1) 60%,
        transparent 100%
    );
    background-size: 400% 400%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.holographic-card:hover .hologram-effect {
    opacity: 1;
    animation: hologramMove 3s ease-in-out infinite;
}

@keyframes hologramMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* Vibe Card Special Effects */
.vibe-card {
    position: relative;
}

.vibe-particles {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.vibe-particles::before,
.vibe-particles::after {
    content: '✦';
    position: absolute;
    font-size: 12px;
    color: #a855f7;
    animation: particleDrift 4s ease-in-out infinite;
}

.vibe-particles::before { top: 0; left: 20%; animation-delay: 0s; }
.vibe-particles::after { bottom: 10%; right: 20%; animation-delay: 2s; }

@keyframes particleDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
    25% { opacity: 1; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
    75% { opacity: 1; }
}

.vibe-glow-extra {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2), transparent 70%);
    pointer-events: none;
    filter: blur(30px);
    animation: vibeGlow 3s ease-in-out infinite;
}

@keyframes vibeGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Explodable Course Cards */
.explodable-course {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.explodable-course:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--pink);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

.explodable-course .course-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.explodable-course .card-visual {
    margin-bottom: 10px;
}

.explodable-course .visual-orb {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.explodable-course .orb-icon-text {
    font-size: 1.2rem;
}

.explodable-course .card-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.explodable-course .card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.explodable-course .card-flip-hint {
    color: var(--pink);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Shake animation for clicking */
@keyframes shakeCard {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-10px) rotate(-2deg); }
    20% { transform: translateX(10px) rotate(2deg); }
    30% { transform: translateX(-10px) rotate(-2deg); }
    40% { transform: translateX(10px) rotate(2deg); }
    50% { transform: translateX(-5px) rotate(-1deg); }
    60% { transform: translateX(5px) rotate(1deg); }
    70% { transform: translateX(-3px) rotate(0deg); }
    80% { transform: translateX(3px) rotate(0deg); }
    90% { transform: translateX(-1px) rotate(0deg); }
}

.explodable-course.shaking {
    animation: shakeCard 0.6s ease-in-out;
}

/* Course Popup */
.course-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.course-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.course-popup .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(10px);
}

.course-popup .popup-content {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.98), rgba(10, 10, 15, 0.98));
    border: 2px solid var(--pink);
    border-radius: 30px;
    padding: 50px;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    width: 90%;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 100px rgba(233, 69, 96, 0.4);
}

.course-popup.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-close:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 35px;
}

.popup-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
}

.popup-orb.automation-orb { background: var(--gradient); }
.popup-orb.education-orb { background: linear-gradient(135deg, var(--purple), var(--violet)); }
.popup-orb.dev-orb { background: linear-gradient(135deg, #10b981, #059669); }
.popup-orb.vibe-orb { background: linear-gradient(135deg, #8b5cf6, #a855f7); }

.popup-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.popup-tagline {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.popup-body {
    color: var(--text);
}

.popup-section {
    margin-bottom: 30px;
}

.popup-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.popup-section ul {
    list-style: none;
    padding: 0;
}

.popup-section ul li {
    padding: 8px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-section ul li::before {
    content: '✓';
    color: var(--pink);
    font-weight: bold;
}

/* Syllabus Design */
.popup-syllabus {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.syllabus-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-right: 3px solid var(--pink);
}

.syllabus-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 40px;
}

.syllabus-content h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.syllabus-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Coming Soon Badge */
.popup-coming-soon {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    border: 2px dashed rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    margin-bottom: 25px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popup-coming-soon p {
    color: var(--text);
    font-size: 1.1rem;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-right: 3px solid #a855f7;
}

/* Popup CTA */
.popup-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-cta p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.popup-btn {
    display: inline-block;
    padding: 15px 40px;
}

.vibe-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
}

.vibe-popup {
    border-color: #a855f7;
    box-shadow: 0 30px 100px rgba(139, 92, 246, 0.4);
}

/* Custom Scrollbar for Popup */
.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 3px;
}

@media (max-width: 1200px) {
    .courses-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .courses-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .popup-content {
        padding: 30px 25px;
    }
    
    .syllabus-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================================
   FORMAT SECTION
   ================================ */
.format-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.format-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.format-card:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--pink);
    transform: translateY(-10px);
}

.format-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.format-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulseRing 2s ease-out infinite;
}

.format-card:hover .icon-pulse {
    animation-play-state: running;
}

@keyframes iconPulseRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.format-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.format-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .format-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   FORMAT SECTION V2 - Orbit Design
   ================================ */
.format-section-v2 {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.format-orbit-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center element */
.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: centerPulse 4s ease-in-out infinite;
}

.center-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.4;
}

.center-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.4), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Orbit items container */
.orbit-items {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Individual orbit items */
.orbit-item {
    position: absolute;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.orbit-item.visible {
    opacity: 1;
}

/* Position each item */
.orbit-item.item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item.item-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.orbit-item.item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item.item-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.orbit-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 30px;
    text-align: center;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.4s ease;
    animation: cardFloat 5s ease-in-out infinite;
}

.orbit-item.item-1 .orbit-card { animation-delay: 0s; }
.orbit-item.item-2 .orbit-card { animation-delay: 1.25s; }
.orbit-item.item-3 .orbit-card { animation-delay: 2.5s; }
.orbit-item.item-4 .orbit-card { animation-delay: 3.75s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

.orbit-card:hover {
    transform: scale(1.1) translateY(-5px) !important;
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
}

.orbit-icon {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(233, 69, 96, 0.15);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.orbit-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.orbit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Connector lines from cards to center */
.orbit-connector {
    position: absolute;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.3;
}

.orbit-item.item-1 .orbit-connector {
    width: 3px;
    height: 80px;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, var(--primary));
}

.orbit-item.item-2 .orbit-connector {
    width: 80px;
    height: 3px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(270deg, transparent, var(--primary));
}

.orbit-item.item-3 .orbit-connector {
    width: 3px;
    height: 80px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, transparent, var(--primary));
}

.orbit-item.item-4 .orbit-connector {
    width: 80px;
    height: 3px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, var(--primary));
}

@media (max-width: 768px) {
    .format-orbit-container {
        min-height: auto;
    }
    
    .orbit-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 40px;
    }
    
    .orbit-items {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
    }
    
    .orbit-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .orbit-connector {
        display: none;
    }
    
    .orbit-card {
        max-width: 100%;
    }
}

/* ================================
   FORMAT SECTION V3 - Neon Flip Cards
   ================================ */
.format-section-v3 {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.neon-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.neon-card {
    position: relative;
    height: 280px;
    cursor: pointer;
}

.neon-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.neon-card:hover .neon-card-inner {
    transform: rotateY(180deg);
}

.neon-front,
.neon-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.neon-front {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.neon-back {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    transform: rotateY(180deg);
}

.neon-icon {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 10px 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--pink);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: iconGlitch 3s ease-in-out infinite;
}

.neon-front h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.neon-back p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Neon Glow Effects */
.neon-glow {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.neon-pink {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    box-shadow: 
        0 0 30px var(--primary),
        0 0 60px var(--primary),
        0 0 90px var(--pink);
}

.neon-purple {
    background: linear-gradient(135deg, var(--purple), #7B2CBF);
    box-shadow: 
        0 0 30px var(--purple),
        0 0 60px var(--purple),
        0 0 90px #7B2CBF;
}

.neon-orange {
    background: linear-gradient(135deg, var(--orange), var(--primary));
    box-shadow: 
        0 0 30px var(--orange),
        0 0 60px var(--orange),
        0 0 90px var(--primary);
}

.neon-card:hover .neon-glow {
    opacity: 0.8;
    animation: neonExplode 0.8s ease-out forwards;
}

@keyframes neonExplode {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

/* All cards get their own glow color */
.neon-card:nth-child(1) .neon-glow {
    background: linear-gradient(135deg, #E94560, #FF6B4A);
    box-shadow: 0 0 40px #E94560, 0 0 80px #E94560, 0 0 120px #FF6B4A;
}

.neon-card:nth-child(2) .neon-glow {
    background: linear-gradient(135deg, #9B5DE5, #7B2CBF);
    box-shadow: 0 0 40px #9B5DE5, 0 0 80px #9B5DE5, 0 0 120px #7B2CBF;
}

.neon-card:nth-child(3) .neon-glow {
    background: linear-gradient(135deg, #FF6B4A, #E94560);
    box-shadow: 0 0 40px #FF6B4A, 0 0 80px #FF6B4A, 0 0 120px #E94560;
}

.neon-card:nth-child(4) .neon-glow {
    background: linear-gradient(135deg, #E94560, #9B5DE5);
    box-shadow: 0 0 40px #E94560, 0 0 80px #E94560, 0 0 120px #9B5DE5;
}

/* Entrance animation */
.neon-card {
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.neon-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.neon-card:nth-child(1) { transition-delay: 0.1s; }
.neon-card:nth-child(2) { transition-delay: 0.2s; }
.neon-card:nth-child(3) { transition-delay: 0.3s; }
.neon-card:nth-child(4) { transition-delay: 0.4s; }

@media (max-width: 900px) {
    .neon-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .neon-cards-container {
        grid-template-columns: 1fr;
    }
    
    .neon-card {
        height: 220px;
    }
}

/* ================================
   PATH SECTION - Constellation
   ================================ */
.path-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.constellation-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.constellation-path {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
    padding: 60px 0;
}

/* Connecting Line - Hidden, using star-connectors instead */
.constellation-path::before {
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--pink),
        var(--purple),
        var(--pink),
        transparent
    );
    transform: translateY(-50%);
    opacity: 0.3;
}

.path-star {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.star-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(30px);
    animation: starGlow 3s ease-in-out infinite;
}

.star-1 .star-glow { animation-delay: 0s; }
.star-2 .star-glow { animation-delay: 0.5s; }
.star-3 .star-glow { animation-delay: 1s; }
.star-4 .star-glow { animation-delay: 1.5s; }

@keyframes starGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.star-core {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.path-star:hover .star-core {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.7);
}

.star-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.star-info {
    text-align: center;
    max-width: 150px;
}

.star-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.star-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.star-connector {
    position: absolute;
    left: 100%;
    top: 40px;
    width: 80px;
    height: 3px;
    background: linear-gradient(270deg, var(--pink), var(--purple));
    border-radius: 2px;
}

/* In RTL, star-1 is on the right, so it shouldn't have connector going further right */
.star-1 .star-connector {
    display: none;
}

@media (max-width: 900px) {
    .constellation-path {
        flex-direction: column;
        gap: 60px;
    }
    
    .constellation-path::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            transparent,
            var(--pink),
            var(--purple),
            var(--pink),
            transparent
        );
    }
    
    .star-connector {
        display: none;
    }
}

/* ================================
   INSTRUCTOR SECTION
   ================================ */
.instructor-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.03), transparent);
}

.instructor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.instructor-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 40px;
}

.frame-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid;
    border-color: var(--pink);
    opacity: 0.3;
}

.d1 { top: 0; right: 0; border-bottom: none; border-left: none; }
.d2 { bottom: 0; left: 0; border-top: none; border-right: none; }
.d3 { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50px;
    height: 50px;
    border-color: var(--purple);
}

.instructor-image-placeholder {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.placeholder-icon {
    font-size: 6rem;
}

.placeholder-rings {
    position: absolute;
    inset: -20px;
}

.p-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed var(--pink);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.p-ring:nth-child(2) {
    inset: -15px;
    border-color: var(--purple);
    animation-direction: reverse;
    animation-duration: 25s;
}

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

.instructor-content {
    position: relative;
}

.instructor-badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.instructor-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instructor-title {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.instructor-quote {
    position: relative;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 3px solid var(--pink);
    border-radius: 0 15px 15px 0;
    margin-bottom: 30px;
}

.quote-mark {
    font-size: 2rem;
    color: var(--pink);
    line-height: 1;
}

.instructor-quote p {
    font-size: 1.2rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin: 10px 0;
}

.instructor-points {
    list-style: none;
}

.instructor-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text);
}

.point-icon {
    color: var(--pink);
    font-weight: bold;
}

@media (max-width: 900px) {
    .instructor-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor-quote {
        border-right: none;
        border-top: 3px solid var(--pink);
        border-radius: 0 0 15px 15px;
    }
    
    .instructor-points li {
        justify-content: center;
    }
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    opacity: 0.1;
    filter: blur(80px);
}

.c1 { width: 400px; height: 400px; top: 10%; left: -10%; }
.c2 { width: 300px; height: 300px; bottom: 20%; right: -5%; }
.c3 { width: 200px; height: 200px; top: 40%; right: 30%; }

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-bubble {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.5s ease;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.testimonial-bubble:nth-child(2) { animation-delay: 1s; }
.testimonial-bubble:nth-child(3) { animation-delay: 2s; }
.testimonial-bubble:nth-child(4) { animation-delay: 3s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.testimonial-bubble:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--pink);
    box-shadow: 0 30px 60px rgba(233, 69, 96, 0.3);
    animation-play-state: paused;
}

.bubble-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.5s;
}

.testimonial-bubble:hover .bubble-glow {
    opacity: 0.2;
}

.bubble-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2.5rem;
}

/* Styled Avatar with Initials - Circle Profile */
.author-avatar-styled {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.avatar-initials {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--purple)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.testimonial-bubble:hover .author-avatar-styled {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--text);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.faq-item:hover {
    background: rgba(233, 69, 96, 0.05);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.q-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-question span:last-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    padding-right: 50px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-answer p {
        padding-right: 0;
    }
}

/* ================================
   FAQ SECTION V2 - TERMINAL STYLE
   ================================ */
.faq-section-v2 {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.terminal-faq {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(233, 69, 96, 0.1);
}

.terminal-header {
    background: linear-gradient(90deg, rgba(50, 50, 60, 0.9), rgba(40, 40, 50, 0.9));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.t-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.t-btn.red { background: #FF5F56; }
.t-btn.yellow { background: #FFBD2E; }
.t-btn.green { background: #27CA40; }

.terminal-title {
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 30px;
    font-family: 'Courier New', monospace;
}

.faq-command {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.faq-command:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.command-line {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.command-line:hover {
    background: rgba(233, 69, 96, 0.1);
}

.prompt {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary);
}

.cmd-text {
    color: var(--text);
    font-size: 1.1rem;
    flex: 1;
}

.cursor-blink {
    color: var(--primary);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.command-output {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.faq-command.open .command-output {
    max-height: 200px;
    opacity: 1;
    padding: 15px 15px 15px 45px;
}

.faq-command.open .command-line {
    background: rgba(233, 69, 96, 0.15);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.2);
}

.faq-command.open .prompt {
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

.command-output p {
    color: #27CA40;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
}

.command-output p::before {
    content: '> ';
    color: var(--purple);
}

/* Glowing effect when open */
.faq-command.open {
    animation: terminalGlow 2s ease-in-out infinite;
}

@keyframes terminalGlow {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 30px rgba(233, 69, 96, 0.2); }
}

@media (max-width: 600px) {
    .terminal-body {
        padding: 20px;
    }
    
    .cmd-text {
        font-size: 1rem;
    }
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--dark), var(--darker));
}

.contact-bg-grid {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(233, 69, 96, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(233, 69, 96, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch-hover:hover {
    animation: textGlitch 0.3s ease-in-out;
}

@keyframes textGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-icon {
    color: var(--pink);
    font-weight: bold;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direct-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.direct-link:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--pink);
    transform: translateX(-5px);
}

.link-icon {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 45px;
    backdrop-filter: blur(20px);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--text-dim);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.8rem;
    color: var(--pink);
    background: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.input-glow {
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    background: var(--gradient);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow,
.form-group select:focus ~ .input-glow {
    opacity: 0.15;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.btn-submit {
    position: relative;
    width: 100%;
    padding: 20px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 15px;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-submit:hover::before {
    transform: translateX(100%);
}

.btn-loading,
.btn-success {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-loading {
    opacity: 1;
}

.btn-submit.success .btn-success {
    opacity: 1;
}

.btn-submit.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-direct {
        align-items: center;
    }
}

/* ================================
   SHARED TERMINAL STYLES
   ================================ */
.terminal-window {
    background: rgba(10, 10, 20, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(233, 69, 96, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(30, 30, 40, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.t-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.t-btn.red { background: #ff5f56; }
.t-btn.yellow { background: #ffbd2e; }
.t-btn.green { background: #27c93f; }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.terminal-body {
    padding: 25px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.prompt {
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary);
}

.cmd {
    color: var(--purple);
}

.cursor-blink {
    display: inline-block;
    width: 10px;
    background: var(--primary);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ================================
   TERMINAL STATS
   ================================ */
.terminal-stats {
    padding: 30px 40px 60px; /* Less padding on top */
    margin-top: -30px; /* Pull up */
}

.stats-terminal {
    max-width: 700px;
    margin: 0 auto;
}

.stats-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-line {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-line:hover {
    background: rgba(233, 69, 96, 0.1);
    transform: translateX(-10px);
}

.stat-line .output {
    color: #27CA40;
    flex: 1;
}

.stat-line .stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #27CA40;
    text-shadow: 0 0 15px #27CA40;
}

.stat-line .stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* ================================
   TERMINAL INSTRUCTOR PROFILE
   ================================ */
.terminal-instructor .section-container {
    max-width: 900px;
}

.profile-terminal {
    margin-top: 40px;
}

.profile-body {
    color: #eee;
}

.profile-line {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.profile-key {
    color: var(--purple);
    min-width: 80px;
}

.profile-value {
    color: rgba(255, 255, 255, 0.85);
}

.profile-value.name-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.profile-value.quote-value {
    color: #27CA40;
    font-style: italic;
}

.profile-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    text-align: center;
}

.profile-output {
    margin-top: 15px;
    padding-right: 30px;
}

.output-line {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 10px;
}

.output-line .check {
    color: #27CA40;
    text-shadow: 0 0 10px #27CA40;
}

/* ================================
   TERMINAL LEARNING PATH - TIMELINE
   ================================ */
.path-timeline .section-container {
    max-width: 900px;
}

.timeline-queue {
    position: relative;
    margin-top: 60px;
    padding-right: 100px;
}

.timeline-line {
    position: absolute;
    right: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent,
        var(--primary) 10%,
        var(--purple) 50%,
        var(--primary) 90%,
        transparent
    );
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.step-marker {
    position: absolute;
    right: -65px;
    width: 70px;
    height: 70px;
    background: var(--darker);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Step marker color variants */
.step-marker.loading {
    border-color: #ffbd2e;
    box-shadow: 0 0 30px rgba(255, 189, 46, 0.5);
}

.step-marker.processing {
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(155, 93, 229, 0.5);
}

.step-marker.building {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

.step-marker.complete {
    border-color: #27CA40;
    box-shadow: 0 0 30px rgba(39, 202, 64, 0.5);
}

.marker-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* Marker number colors matching status */
.step-marker.loading .marker-num {
    color: #ffbd2e;
    text-shadow: 0 0 15px #ffbd2e, 0 0 30px #ffbd2e;
}

.step-marker.processing .marker-num {
    color: var(--purple);
    text-shadow: 0 0 15px var(--purple), 0 0 30px var(--purple);
}

.step-marker.building .marker-num {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
}

.step-marker.complete .marker-num {
    color: #27CA40;
    text-shadow: 0 0 15px #27CA40, 0 0 30px #27CA40;
}

/* Pulse color matching */
.step-marker.loading .marker-pulse {
    border-color: #ffbd2e;
}

.step-marker.processing .marker-pulse {
    border-color: var(--purple);
}

.step-marker.building .marker-pulse {
    border-color: var(--primary);
}

.step-marker.complete .marker-pulse {
    border-color: #27CA40;
}

.marker-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-terminal {
    flex: 1;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-terminal:hover {
    transform: translateX(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 69, 96, 0.2);
}

.terminal-mini-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    background: rgba(30, 30, 40, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.mini-dot:nth-child(2) { background: #ffbd2e; }
.mini-dot:nth-child(3) { background: #27c93f; }

.mini-title {
    margin-right: auto;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.step-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.cmd-line {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.typing-cmd {
    color: var(--purple);
}

.step-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-badge.loading {
    background: rgba(255, 189, 46, 0.2);
    color: #ffbd2e;
    border: 1px solid rgba(255, 189, 46, 0.4);
}

.status-badge.processing {
    background: rgba(155, 93, 229, 0.2);
    color: var(--purple);
    border: 1px solid rgba(155, 93, 229, 0.4);
}

.status-badge.building {
    background: rgba(233, 69, 96, 0.2);
    color: var(--primary);
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.status-badge.success {
    background: rgba(39, 202, 64, 0.2);
    color: #27CA40;
    border: 1px solid rgba(39, 202, 64, 0.4);
    animation: successGlow 1.5s ease-in-out infinite;
}

@keyframes successGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(39, 202, 64, 0.3); }
    50% { box-shadow: 0 0 25px rgba(39, 202, 64, 0.6); }
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-queue {
        padding-right: 60px;
    }
    
    .step-marker {
        right: -45px;
        width: 50px;
        height: 50px;
    }
    
    .marker-num {
        font-size: 1.2rem;
    }
    
    .timeline-line {
        right: 22px;
    }
}

/* ================================
   TERMINAL FLIP CARDS - HOW TO LEARN
   ================================ */
.terminal-format .section-container {
    max-width: 1200px;
}

.terminal-flip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    perspective: 1000px;
}

.terminal-flip-card {
    height: 300px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.terminal-flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-front {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-back {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(180deg);
}

.flip-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100% - 40px);
}

.flip-icon {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    padding: 15px 25px;
    border: 3px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flip-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
}

.flip-cmd {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 5px;
}

.back-body {
    justify-content: center;
    padding: 25px;
}

.output-text {
    color: #27CA40;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-msg {
    color: var(--primary);
    font-weight: bold;
    animation: blink 1s infinite;
}

/* Color variants for glow */
.terminal-flip-card[data-color="pink"]:hover .flip-front,
.terminal-flip-card[data-color="pink"]:hover .flip-back {
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.4);
    border-color: var(--primary);
}

.terminal-flip-card[data-color="purple"]:hover .flip-front,
.terminal-flip-card[data-color="purple"]:hover .flip-back {
    box-shadow: 0 0 40px rgba(155, 93, 229, 0.4);
    border-color: var(--purple);
}

.terminal-flip-card[data-color="orange"]:hover .flip-front,
.terminal-flip-card[data-color="orange"]:hover .flip-back {
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.4);
    border-color: orange;
}

.terminal-flip-card[data-color="green"]:hover .flip-front,
.terminal-flip-card[data-color="green"]:hover .flip-back {
    box-shadow: 0 0 40px rgba(39, 202, 64, 0.4);
    border-color: #27CA40;
}

/* Responsive */
@media (max-width: 1000px) {
    .terminal-flip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .terminal-flip-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-flip-card {
        height: 250px;
    }
}

/* ================================
   TERMINAL TESTIMONIALS
   ================================ */
.terminal-testimonials .section-container {
    max-width: 900px;
}

.testimonials-terminal {
    margin-top: 40px;
}

.reviews-body {
    max-height: 500px;
    overflow-y: auto;
}

.reviews-body::-webkit-scrollbar {
    width: 8px;
}

.reviews-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.reviews-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.review-entry {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-right: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.review-entry:hover {
    background: rgba(233, 69, 96, 0.08);
    transform: translateX(-5px);
}

.review-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.timestamp {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.user-tag {
    color: var(--primary);
    font-weight: bold;
}

.role-tag {
    color: var(--purple);
    background: rgba(155, 93, 229, 0.2);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.review-content {
    display: flex;
    gap: 10px;
}

.review-content .prompt {
    color: #27CA40;
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.review-typing {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.typing-text {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================
   TERMINAL CONTACT FORM
   ================================ */
.terminal-form {
    background: rgba(10, 10, 20, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(233, 69, 96, 0.1);
}

.terminal-body-form {
    padding: 30px;
    font-family: 'Courier New', monospace;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.terminal-input-line:focus-within {
    background: rgba(233, 69, 96, 0.1);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
}

.terminal-input-line .prompt {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary);
}

.terminal-input-line .cmd-label {
    color: var(--purple);
    font-size: 0.95rem;
    white-space: nowrap;
}

.terminal-input-line input,
.terminal-input-line select,
.terminal-input-line textarea {
    flex: 1;
    background: transparent;
    border: none;
    color: #27CA40;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    outline: none;
}

.terminal-input-line input::placeholder,
.terminal-input-line textarea::placeholder {
    color: rgba(39, 202, 64, 0.4);
}

.terminal-input-line select {
    cursor: pointer;
}

.terminal-input-line select option {
    background: #1a1a2e;
    color: #27CA40;
}

.terminal-input-line .cursor-blink {
    color: var(--primary);
    animation: cursorBlink 1s step-end infinite;
}

.terminal-input-line.textarea-line {
    align-items: flex-start;
}

.terminal-input-line textarea {
    resize: none;
}

/* Terminal Submit Button */
.terminal-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(155, 93, 229, 0.2));
    border: 2px solid var(--primary);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.terminal-submit .prompt {
    color: var(--primary);
    font-weight: bold;
}

.terminal-submit .submit-text {
    color: var(--text);
}

.terminal-submit .submit-icon {
    font-size: 1.3rem;
}

.terminal-submit:hover {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.4), rgba(155, 93, 229, 0.4));
    box-shadow: 
        0 0 30px rgba(233, 69, 96, 0.4),
        0 0 60px rgba(233, 69, 96, 0.2);
    transform: translateY(-3px);
}

.terminal-submit .submit-loading,
.terminal-submit .submit-success {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: inherit;
    opacity: 0;
    pointer-events: none;
}

.terminal-submit.loading .submit-loading {
    opacity: 1;
}

.terminal-submit.success .submit-success {
    opacity: 1;
    background: linear-gradient(135deg, rgba(39, 202, 64, 0.3), rgba(39, 202, 64, 0.1));
}

.submit-loading {
    color: var(--primary);
}

.submit-loading .dots {
    animation: dotsAnim 1.5s infinite;
}

@keyframes dotsAnim {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.success-text {
    color: #27CA40;
    font-weight: bold;
    text-shadow: 0 0 10px #27CA40;
}

/* ================================
   FOOTER
   ================================ */
.school-footer {
    padding: 60px 40px;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-school-logo {
    height: 140px !important;
}

.school-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.back-to-main {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-main:hover {
    color: var(--orange);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE NAVIGATION
   ================================ */
@media (max-width: 768px) {
    .school-nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .school-hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-neon {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

