:root {
    /* Color Palette */
    --primary-blue: #0D4DFF;
    --primary-blue-glow: rgba(13, 77, 255, 0.4);
    --dark-navy: #101828;
    --light-bg: #F7F9FC;
    --white: #FFFFFF;
    --soft-gray-border: #E4E7EC;
    --success-green: #039855;
    --danger-red: #D92D20;
    --text-main: #475467;
    --text-heading: #101828;
    
    /* Spacing & Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --container-width: 1200px;
    --container-sm-width: 800px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-deep: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    
    /* Animation Easing */
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.6s var(--ease-premium);
    --transition-slow: 1s var(--ease-premium);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: var(--container-sm-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(90deg, #0D4DFF 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align p {
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #003ECC;
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-blue-glow);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-heading);
    border: 1px solid var(--soft-gray-border);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-full {
    width: 100%;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--soft-gray-border);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 54px; /* Premium height for 80px nav */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white background on light navbar */
    transition: transform 0.3s var(--ease-premium);
}

.logo:hover .nav-logo-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 42px;
    }
}

.logo-accent {
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-heading);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(13, 77, 255, 0.05), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 77, 255, 0.08);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Hero Visual */
.visual-wrapper {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.float-card {
    position: absolute;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

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

.card-1 { top: 10%; left: -40px; animation-delay: 0s; }
.card-2 { bottom: 20%; right: -20px; animation-delay: 1s; }
.card-3 { bottom: -30px; left: 20%; animation-delay: 2s; }

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-heading);
}

.progress-bar {
    width: 100px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 4px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 10px;
    width: 0; /* Animate this via JS or class */
    transition: width 1.5s var(--ease-premium);
}

.reveal-progress .progress-fill {
    width: 85%;
}

/* Qualification Section */
.qualify-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.qualify-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray-border);
    transition: 0.3s;
}

.qualify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-circle.success { background: rgba(3, 152, 85, 0.1); color: var(--success-green); }
.icon-circle.danger { background: rgba(217, 45, 32, 0.1); color: var(--danger-red); }
.icon-circle.primary { background: rgba(13, 77, 255, 0.1); color: var(--primary-blue); }

.qualify-card h3 { font-size: 1.5rem; }

.qualify-card ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qualify-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.what-you-get {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
}

.what-you-get h3, .what-you-get .card-header i { color: var(--white); }
.what-you-get .icon-circle.primary { background: rgba(255, 255, 255, 0.2); }

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

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--soft-gray-border);
}

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

.text-primary { color: var(--primary-blue); }

/* Learn Roadmap Section */
.learn-roadmap-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    padding: 120px 0;
}

.roadmap-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.grid-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13, 77, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 77, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.glow-orb.learn-orb-1 { width: 600px; height: 600px; background: rgba(13, 77, 255, 0.08); top: -200px; left: -100px; filter: blur(120px); border-radius: 50%; position: absolute; }
.glow-orb.learn-orb-2 { width: 400px; height: 400px; background: rgba(0, 194, 255, 0.08); bottom: -100px; right: -100px; filter: blur(100px); border-radius: 50%; position: absolute; }

.roadmap-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13, 77, 255, 0.08);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(13, 77, 255, 0.1);
}

.learn-dashboard-root {
    position: relative;
    margin-top: 60px;
}

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

.learn-module-card {
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all 0.5s var(--ease-premium);
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
    overflow: hidden;
    height: 100%;
}

.learn-module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(13, 77, 255, 0.03) 100%);
    opacity: 0;
    transition: 0.5s;
}

.learn-module-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 40px 80px rgba(10, 31, 68, 0.12);
}

.learn-module-card:hover::before {
    opacity: 1;
}

.module-large { grid-column: span 2; }
.module-wide { grid-column: span 4; }

.module-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: -10px;
}

.level-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-main);
    opacity: 0.6;
    letter-spacing: 0.15em;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 100px;
}

.progress-indicator {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
}

.progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--soft-gray-border);
    position: relative;
}

.progress-dot.active {
    background: var(--primary-blue);
}

.progress-dot.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary-blue-glow);
    animation: dotPulse 2s infinite;
}

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

.progress-line {
    height: 1px;
    flex-grow: 1;
    background: var(--soft-gray-border);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.module-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(13, 77, 255, 0.06);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.5s var(--ease-premium);
    flex-shrink: 0;
}

.learn-module-card:hover .module-icon-box {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px var(--primary-blue-glow);
}

.accent-blue { background: rgba(0, 194, 255, 0.06); color: #00C2FF; }
.learn-module-card:hover .accent-blue { background: #00C2FF; }

.accent-purple { background: rgba(147, 51, 234, 0.06); color: #9333EA; }
.learn-module-card:hover .accent-purple { background: #9333EA; }

.accent-gold { background: rgba(255, 165, 0, 0.06); color: #F59E0B; }
.learn-module-card:hover .accent-gold { background: #F59E0B; }

.learn-module-card h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-heading);
}

.learn-module-card p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

.module-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-pill {
    padding: 6px 14px;
    background: #f8fafc;
    border: 1px solid var(--soft-gray-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-heading);
    transition: 0.3s;
}

.learn-module-card:hover .skill-pill {
    border-color: rgba(13, 77, 255, 0.2);
    background: var(--white);
    transform: scale(1.05);
}

.module-visual-accent {
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 8rem;
    opacity: 0.02;
    transform: rotate(-15deg);
    transition: 0.6s var(--ease-premium);
    pointer-events: none;
}

.learn-module-card:hover .module-visual-accent {
    opacity: 0.08;
    transform: scale(1.1) rotate(-5deg);
}

/* Monetization Wide Enhancements */
.module-wide .module-header {
    gap: 32px;
}

.header-text h3 { margin-bottom: 8px; }
.header-text p { margin: 0; font-size: 1.15rem; max-width: 600px; }

.premium-tag-group {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.premium-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-heading);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s var(--ease-premium);
}

.premium-tag i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: 0.3s;
}

.premium-tag:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(13, 77, 255, 0.1);
    color: var(--primary-blue);
}

.premium-tag:hover i {
    transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 1200px) {
    .learn-grid { grid-template-columns: repeat(2, 1fr); }
    .module-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .learn-grid { grid-template-columns: 1fr; gap: 20px; }
    .module-large, .module-wide { grid-column: span 1; }
    .learn-module-card { padding: 32px; }
    .module-wide .module-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .premium-tag-group { flex-direction: column; width: 100%; }
    .premium-tag { width: 100%; }
}

/* Academic Program Pathway Display - Enhanced */
#programs {
    position: relative;
    background-color: #080C15; /* Darker elite background */
    overflow: hidden;
    padding: 120px 0;
}

/* Background Decorations */
.programs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.programs-bg .mesh-gradient {
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.programs-bg .orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: orbFloat 20s infinite alternate;
}

.orb-1 { background: #4F46E5; top: -100px; left: -100px; }
.orb-2 { background: #EC4899; bottom: -100px; right: -100px; animation-delay: -5s; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

#programs .container {
    position: relative;
    z-index: 2;
}

#programs .section-header h2 {
    color: var(--white);
    font-size: 3.5rem;
}

#programs .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.academic-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.6s var(--ease-premium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animated Border Top */
.academic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--path-color, #4F46E5), transparent);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
    z-index: 5;
}

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

/* Inner Glow Effect */
.academic-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.academic-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--glow-rgb), 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.card-header-main {
    padding: 50px 40px 30px;
    position: relative;
}

.academic-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.academic-card h3 {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.duration-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* Flagship Mastery Highlight */
.mastery-highlight-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
}

/* Gradients for Paths */
.mastery-path { --path-color: #4F46E5; --glow-rgb: 79, 70, 229; }
.builder-path { --path-color: #9333EA; --glow-rgb: 147, 51, 234; }
.launchpad-path { --path-color: #EC4899; --glow-rgb: 236, 72, 153; }

.mastery-path:hover { box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 50px rgba(79, 70, 229, 0.3); }
.builder-path:hover { box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 50px rgba(147, 51, 234, 0.3); }
.launchpad-path:hover { box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 50px rgba(236, 72, 153, 0.3); }

/* Semester Structure & Journey */
.curriculum-body {
    padding: 0 40px 50px;
    flex-grow: 1;
    position: relative;
}

/* Journey Line */
.journey-track {
    position: absolute;
    left: 48px;
    top: 60px;
    bottom: 80px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.semester-block {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    padding-left: 32px;
}

.semester-block::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--path-color);
    box-shadow: 0 0 10px var(--path-color);
    border: 2px solid rgba(255,255,255,0.5);
}

.semester-tag {
    display: inline-flex;
    padding: 6px 18px;
    border-radius: 100px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease-premium);
    cursor: default;
}

.academic-card:hover .semester-tag {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--path-color), rgba(var(--glow-rgb), 0.6));
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.course-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    transition: color 0.3s;
}

.academic-card:hover .course-list li {
    color: rgba(255, 255, 255, 0.9);
}

.course-list li i {
    font-size: 0.5rem;
    color: var(--path-color);
    opacity: 0.6;
}

/* Card Footer Enhanced */
.card-footer-label {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: all 0.3s;
}

.academic-card:hover .card-footer-label {
    background: rgba(var(--glow-rgb), 0.1);
    color: var(--white);
}

/* Unified CTA Area Enhanced */
.unified-cta-container {
    text-align: center;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 80px 60px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.unified-cta-container h3 {
    font-size: 2.75rem;
    margin: 0;
    color: var(--white);
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unified-cta-container p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.unified-cta-container .btn {
    padding: 18px 48px;
    font-size: 1.15rem;
}

/* Comparison */
.glass-card {
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 24px 40px;
    text-align: left;
    border-bottom: 1px solid var(--soft-gray-border);
}

.comparison-table th {
    background: #F9FAFB;
    font-size: 1.125rem;
}

.text-danger { color: var(--danger-red); }
.text-success { color: var(--success-green); }
.fw-600 { font-weight: 600; }

/* Testimonials */
.trust-tag-sub {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13, 77, 255, 0.08);
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(13, 77, 255, 0.05);
}

.testimonial-carousel {
    overflow: hidden;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    gap: 32px;
    animation: scroll 45s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    /* Updated for 4 cards: - (cardWidth * numCards + gap * numCards) */
    100% { transform: translateX(calc(-350px * 4 - 32px * 4)); }
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--soft-gray-border);
    transition: all 0.4s var(--ease-premium);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(10, 31, 68, 0.12);
    border-color: var(--primary-blue);
}

.stars {
    color: #FDB022;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.feedback {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-heading);
    font-weight: 500;
    margin-bottom: 30px;
    flex-grow: 1;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}


.student-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.student-name {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1rem;
}

.student-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.8;
}

.student-location {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0D4DFF 0%, #002D9C 100%);
    padding: 80px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.badge-light { background: rgba(255, 255, 255, 0.2); color: var(--white); }

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-heading);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
}

.faq-item.active .ph-caret-down {
    transform: rotate(180deg);
}

/* Form */
/* --- Premium Admissions Experience --- */
.admissions-section {
    position: relative;
    padding: 120px 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.admissions-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.admissions-bg .mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(13, 77, 255, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(0, 194, 255, 0.04) 0%, transparent 40%);
}

.glow-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.accent-1 { background: var(--primary-blue); top: -200px; left: -100px; }
.accent-2 { background: #00C2FF; bottom: -200px; right: -100px; }

/* --- Admissions Particles --- */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particles::before, .particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(1px);
    animation: particleFloat 15s linear infinite;
}

.particles::before { top: 20%; left: 30%; animation-duration: 20s; }
.particles::after { top: 60%; left: 70%; animation-duration: 18s; animation-delay: -7s; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-300px) translateX(50px) scale(0.5); opacity: 0; }
}


.premium-form-wrapper {
    position: relative;
    z-index: 5;
}

.form-container-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(10, 31, 68, 0.1),
        0 40px 80px -20px rgba(10, 31, 68, 0.1);
    position: relative;
    z-index: 10;
}

/* Layered Accents */
.form-accent-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), #00C2FF);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.05;
    z-index: 2;
    filter: blur(40px);
    animation: blobMorph 20s infinite alternate;
}

.blob-top { top: -50px; left: -50px; }
.blob-bottom { bottom: -50px; right: -50px; animation-delay: -10s; }

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
    100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; transform: scale(1.1) rotate(180deg); }
}

.form-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(13, 77, 255, 0.08);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.form-subtitle {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-premium);
}

.trust-pill i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.trust-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 77, 255, 0.2);
}

/* Input Fields Premium */
.premium-field label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: var(--text-heading);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 20px;
    font-size: 1.25rem;
    color: var(--text-main);
    opacity: 0.6;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 3;
}

.premium-field input, 
.premium-field select {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border: 1px solid var(--soft-gray-border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease-premium);
    position: relative;
    z-index: 2;
    color: var(--text-heading);
}

.field-focus-bg {
    position: absolute;
    inset: 1px;
    background: var(--white);
    border-radius: calc(var(--radius-md) - 1px);
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}

.premium-field input:focus, 
.premium-field select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(13, 77, 255, 0.08);
    background: var(--white);
}

.premium-field input:focus ~ .field-icon,
.premium-field select:focus ~ .field-icon {
    color: var(--primary-blue);
    opacity: 1;
    transform: scale(1.1);
}

/* Course Selection Cards */
.label-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.label-with-icon i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.course-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.course-card-premium {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    padding: 24px 20px;
    transition: all 0.4s var(--ease-premium);
    overflow: hidden;
}

.course-card-premium input { display: none; }

.course-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.course-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    transition: transform 0.4s var(--ease-premium);
}

.course-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    text-align: center;
}

.card-border-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary-blue), #00C2FF);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: 0.4s;
}

.course-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 77, 255, 0.2);
}

.course-card-premium:hover .course-icon {
    transform: scale(1.15) rotate(5deg);
}

.course-card-premium:has(input:checked) {
    border-color: transparent;
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 77, 255, 0.15);
}

.course-card-premium:has(input:checked) .card-border-glow {
    opacity: 1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 2px;
}

.course-card-premium:has(input:checked) .course-name {
    color: var(--primary-blue);
}

.featured-selection::after {
    content: 'Recommended';
    position: absolute;
    top: 18px;
    right: -42px;
    width: 150px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.65rem;
    padding: 6px 0;
    transform: rotate(45deg);
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    letter-spacing: 0.5px;
}


/* Choice Chips Level */
.choice-chips-container {
    display: flex;
    gap: 12px;
}

.choice-chip {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.choice-chip input { display: none; }

.chip-text {
    display: block;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    text-align: center;
    transition: all 0.3s;
}

.choice-chip:hover .chip-text {
    background: #F1F5F9;
}

.choice-chip:has(input:checked) .chip-text {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px var(--primary-blue-glow);
    transform: scale(1.05);
}

/* Submit Footer */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.btn-premium-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002D9C 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.btn-premium-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 77, 255, 0.3);
}

.btn-premium-submit:active {
    transform: translateY(-2px);
}

.btn-premium-submit i {
    transition: transform 0.4s var(--ease-premium);
}

.btn-premium-submit:hover i {
    transform: translateX(6px);
}

.btn-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: 0.6s;
    pointer-events: none;
}

.btn-premium-submit:hover .btn-glow-effect {
    opacity: 1;
    transform: translate(25%, 25%);
}

.form-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0.7;
}

.form-trust-note i {
    font-size: 1.1rem;
    color: var(--primary-blue);
}

/* Responsive Premium Form */
@media (max-width: 768px) {
    .form-container-glass { padding: 40px 24px; }
    .premium-title { font-size: 2.25rem; }
    .course-selection-grid { grid-template-columns: 1fr; }
    .choice-chips-container { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- PREMIUM INNOVATIVE FOOTER --- */
.premium-footer {
    position: relative;
    padding: 120px 0 60px;
    background-color: #030712; /* Deep midnight blue */
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(13, 77, 255, 0.1);
    text-align: center;
}

/* Visual Enhancements Layer */
.footer-visuals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(13, 77, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.footer-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.glow-1 {
    background: var(--primary-blue);
    top: -200px;
    left: -100px;
}

.glow-2 {
    background: #00C2FF;
    bottom: -200px;
    right: -100px;
}

.neural-lines {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 Q 250 50 500 100 T 1000 100" stroke="rgba(13, 77, 255, 0.05)" fill="none" stroke-width="1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Floating Particles */
.footer-visuals::before, .footer-visuals::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(2px);
    animation: footerParticleFloat 20s linear infinite;
}

.footer-visuals::before { top: 30%; left: 20%; animation-delay: -5s; }
.footer-visuals::after { bottom: 30%; right: 20%; animation-delay: -12s; }

@keyframes footerParticleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translate(100px, -200px) scale(0.5); opacity: 0; }
}

.premium-footer .container {
    position: relative;
    z-index: 5;
}

/* Section 1: Future Statement */
.footer-statement-section {
    margin-bottom: 80px;
}

.footer-impact-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-supporting-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section 2: Brand Trust Panel */
.brand-trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.trust-mini-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.5s var(--ease-premium);
    position: relative;
    overflow: hidden;
    animation: floatTrust 6s ease-in-out infinite;
}

.trust-mini-card:nth-child(2) { animation-delay: 1.5s; }
.trust-mini-card:nth-child(3) { animation-delay: 3s; }
.trust-mini-card:nth-child(4) { animation-delay: 4.5s; }

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

.trust-mini-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(13, 77, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(13, 77, 255, 0.1);
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 77, 255, 0.15);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.trust-mini-card:hover .trust-card-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
}

.trust-mini-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.trust-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13, 77, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.trust-mini-card:hover .trust-card-glow {
    opacity: 1;
}

/* Section 3 & 4: Community & CTA */
.footer-cta-section {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.community-message h3 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.community-subline {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-blue);
    opacity: 0.8;
}

.btn-footer-cta {
    padding: 20px 48px;
    font-size: 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary-blue), #00C2FF);
    box-shadow: 0 0 30px rgba(13, 77, 255, 0.4);
    transition: all 0.4s var(--ease-premium);
}

.btn-footer-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(13, 77, 255, 0.6);
}

/* Section 5: Brand Signature */
.footer-signature-area {
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
}

.footer-logo-img {
    height: 140px; /* Slightly larger for presence */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s var(--ease-premium);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-brand-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

/* Copyright Area */
.footer-bottom-bar {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- FOOTER CONTACT SECTION --- */
.footer-contact-section {
    padding-bottom: 100px;
    margin-bottom: 60px;
    position: relative;
}

.contact-header {
    margin-bottom: 60px;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s var(--ease-premium);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(13, 77, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 77, 255, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 77, 255, 0.15);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: all 0.5s var(--ease-premium);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px var(--primary-blue-glow);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.address-text, .phone-number, .response-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.contact-link:hover {
    color: #00C2FF;
    transform: translateX(4px);
}

/* Featured WhatsApp Card */
.featured-contact {
    border-color: rgba(13, 77, 255, 0.2);
    background: rgba(13, 77, 255, 0.04);
}

.wa-cta-btn {
    width: 100%;
    background: #25D366;
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wa-cta-btn:hover {
    background: #20BD5A;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.card-glow-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(13, 77, 255, 0.3);
    opacity: 0;
    pointer-events: none;
    animation: contactPulse 3s infinite;
}

@keyframes contactPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 0; }
}

/* Response tag */
.availability-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(13, 77, 255, 0.1);
    color: #00C2FF;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 10px;
}


/* Responsive Styles for Contact Section */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-title {
        font-size: 2.25rem;
    }
}

.copyright-line {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .brand-trust-panel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .premium-footer { padding: 80px 0 40px; }
    .footer-impact-headline { font-size: 2.5rem; }
    .brand-trust-panel { grid-template-columns: 1fr; gap: 16px; }
    .community-message h3 { font-size: 1.75rem; }
    .btn-footer-cta { width: 100%; padding: 18px 32px; font-size: 1.1rem; }
}

/* Animations */
/* Improved Reveal Classes */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active, .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Reveals */
.stagger-container > * {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.stagger-container.active > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-container.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-container.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-container.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-container.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-container.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-container.active > *:nth-child(6) { transition-delay: 0.6s; }

/* Micro-interactions */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 77, 255, 0.1);
}

.icon-hover i {
    transition: transform 0.3s var(--ease-premium);
}

.icon-hover:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Specific Section Animations */
.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s var(--ease-premium);
}

.hero-title.active span {
    opacity: 1;
    transform: translateY(0);
}

.hero-title.active span:nth-child(1) { transition-delay: 0.2s; }
.hero-title.active span:nth-child(3) { transition-delay: 0.4s; }
.hero-title.active span:nth-child(5) { transition-delay: 0.6s; }

.pricing-card.featured {
    box-shadow: 0 0 0 rgba(13, 77, 255, 0);
    animation: featuredPulse 3s infinite;
}

@keyframes featuredPulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 77, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(13, 77, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 77, 255, 0); }
}

.pulse-button {
    animation: buttonPulse 2s infinite;
}

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

/* FAQ Smooth Expand */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease-premium), padding 0.4s var(--ease-premium);
    overflow: hidden;
}

.faq-answer > p {
    min-height: 0;
    opacity: 0;
    transition: opacity 0.3s var(--ease-premium);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer > p {
    opacity: 1;
}

/* Form Progressive Reveal */
.admissions-form .form-group, 
.admissions-form .form-row {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.admissions-form.active .form-group, 
.admissions-form.active .form-row {
    opacity: 1;
    transform: translateY(0);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(13, 77, 255, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s var(--ease-premium);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.shadow-deep {
    box-shadow: var(--shadow-deep);
}

/* --- PREMIUM STATS SECTION --- */
/* FOMO Section */
.fomo-section {
    padding: 140px 0;
    background-color: #020617; /* Deepest dark */
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(13, 77, 255, 0.1);
    border-bottom: 1px solid rgba(13, 77, 255, 0.1);
}

.fomo-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.fomo-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: fomoGlowPulse 10s infinite alternate;
}

@keyframes fomoGlowPulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0.2; }
}

.fomo-glow-1 {
    background: var(--primary-blue);
    top: -200px;
    right: -100px;
}

.fomo-glow-2 {
    background: #0084ff;
    bottom: -200px;
    left: -100px;
}

.fomo-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(13, 77, 255, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.fomo-trails {
    position: absolute;
    inset: 0;
}

.trail {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    width: 200px;
    opacity: 0.3;
    animation: trailMove 4s linear infinite;
}

.trail:nth-child(1) { top: 20%; left: -20%; animation-delay: 0s; }
.trail:nth-child(2) { top: 50%; left: -20%; animation-delay: 1.5s; }
.trail:nth-child(3) { top: 80%; left: -20%; animation-delay: 3s; }

@keyframes trailMove {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { transform: translateX(120vw); opacity: 0; }
}

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

.fomo-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.fomo-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scarcity-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 45, 32, 0.1);
    color: #FCA5A5;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid rgba(217, 45, 32, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #D92D20;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(217, 45, 32, 0.4);
    animation: pulseRed 2s infinite;
}

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

.fomo-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
}

.fomo-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.fomo-logic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logic-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.logic-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 77, 255, 0.3);
    transform: translateX(10px);
}

.logic-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logic-item.warning {
    border-left: 4px solid #F59E0B;
}

.logic-item.warning i {
    color: #F59E0B;
}

.fomo-cta-wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fomo-btn {
    width: fit-content;
    padding: 18px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-blue);
}

.fomo-btn:hover {
    box-shadow: 0 0 50px rgba(13, 77, 255, 0.6) !important;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-badge i {
    color: var(--primary-blue);
}

/* FOMO Visual */
.race-momentum-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.momentum-core {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 77, 255, 0.2) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-wave {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 4s infinite;
}

.core-wave:nth-child(1) { animation-delay: 0s; }
.core-wave:nth-child(2) { animation-delay: 1.3s; }
.core-wave:nth-child(3) { animation-delay: 2.6s; }

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 500px; height: 500px; opacity: 0; }
}

.advantage-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 3;
    transition: 0.3s;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.advantage-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.advantage-card span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.advantage-card.card-1 { top: 15%; left: 0; }
.advantage-card.card-2 { top: 35%; right: -20px; }
.advantage-card.card-3 { bottom: 30%; left: -40px; }
.advantage-card.card-4 { bottom: 10%; right: 20px; }

.float-soft {
    animation: floatSoft 6s ease-in-out infinite alternate;
}

@keyframes floatSoft {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

.advantage-card.card-1 { animation-delay: 0s; }
.advantage-card.card-2 { animation-delay: 1.5s; }
.advantage-card.card-3 { animation-delay: 3s; }
.advantage-card.card-4 { animation-delay: 4.5s; }

/* Social Proof Strip */
.fomo-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proof-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .fomo-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fomo-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .fomo-section { padding: 80px 0; }
    .fomo-title { font-size: 2.5rem; }
    .fomo-proof {
        flex-direction: column;
        gap: 30px;
    }
    .proof-divider {
        width: 60px;
        height: 1px;
    }
    .fomo-btn { width: 100%; text-align: center; }
}


@keyframes statPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-ctas { justify-content: center; }
    .qualify-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .learn-dashboard { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2.5rem; }
    .hero-title { font-size: 2.8rem; }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .radio-group { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px; }
    .cta-banner h2 { font-size: 2.5rem; }
    
    .reveal, .reveal-left, .reveal-right, .stagger-container > * {
        transition-duration: 0.6s;
        transform: translateY(20px);
    }
}

/* --- Opportunity Showcase Section --- */
.opportunity-section {
    position: relative;
    padding: 120px 0 160px;
    background-color: #fcfdfe;
    overflow: hidden;
}

.opportunity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(13, 77, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 194, 255, 0.03) 0%, transparent 40%);
}

.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(13, 77, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 77, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #0D4DFF;
    top: 10%;
    right: -100px;
    animation: blobFloat 20s infinite alternate;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #00C2FF;
    bottom: 10%;
    left: -50px;
    animation: blobFloat 15s infinite alternate-reverse;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.2); }
}

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

.opportunity-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(13, 77, 255, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* Stats Row */
.opportunity-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
    margin-bottom: 80px;
    border: 1px solid var(--soft-gray-border);
    position: relative;
    z-index: 5;
    transition: 0.8s var(--ease-premium);
}

.opp-stat-item {
    text-align: center;
    flex: 1;
}

.opp-stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Stats Row Row Styling */

.opp-stat-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.divider-line {
    width: 1px;
    height: 50px;
    background: var(--soft-gray-border);
    opacity: 0;
    transform: scaleY(0);
    transition: 1s var(--ease-premium) 0.5s;
}

.opportunity-stats.active .divider-line {
    opacity: 1;
    transform: scaleY(1);
}

/* Opportunity Grid */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.opp-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--soft-gray-border);
    position: relative;
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.5s var(--ease-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.opp-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 10px;
    background: #F2F4F7;
    color: #344054;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
}

.opp-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 77, 255, 0.05);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: 0.5s var(--ease-premium);
}

.opp-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.opp-content p {
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.opp-desc {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-main);
}

/* Hover Effects */
.opp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(13, 77, 255, 0.15);
    border-color: var(--primary-blue);
}

.opp-card:hover .opp-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.opp-card:hover .opp-badge {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Micro Visuals */
.opp-visual {
    margin-top: auto;
    padding-top: 30px;
    opacity: 0.5;
    transition: 0.5s;
}

.opp-card:hover .opp-visual {
    opacity: 1;
}

.spark-line {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(13, 77, 255, 0.1), transparent);
    position: relative;
    border-bottom: 2px solid var(--primary-blue);
}

.pulse-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

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

.gear-spinner {
    width: 40px;
    height: 40px;
    border: 3px dashed var(--primary-blue);
    border-radius: 50%;
    animation: rotateGear 10s linear infinite;
}

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

.growth-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid var(--primary-blue);
    animation: growArrow 2.5s infinite alternate;
}

@keyframes growArrow {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Section Divider */
.section-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.section-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

/* Combined Responsive Additions */
@media (max-width: 1200px) {
    .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .opportunity-stats {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }
    .divider-line { width: 40%; height: 1px; }
    .opportunity-grid { grid-template-columns: 1fr; }
    .opp-card { min-height: auto; }
}

.floating-icons .float-icon {
    position: absolute;
    color: var(--primary-blue);
    opacity: 0.1;
    font-size: 2rem;
    z-index: 1;
    animation: floatIcon 6s ease-in-out infinite;
}

.fi-1 { top: 20%; left: 5%; animation-delay: 0s; }
.fi-2 { top: 15%; right: 10%; animation-delay: 1.5s; }
.fi-3 { bottom: 25%; left: 15%; animation-delay: 3s; }
.fi-4 { bottom: 20%; right: 5%; animation-delay: 4.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Responsive for Academic Section */
@media (max-width: 992px) {
    .academic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .academic-grid { grid-template-columns: 1fr; }
    .unified-cta-container { padding: 40px 24px; }
    .card-header-main, .curriculum-body { padding: 32px 24px; }
}

/* Testimonial Responsive Adjustments */
@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 280px;
        padding: 30px 24px;
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 4 - 32px * 4)); }
    }

    .feedback {
        font-size: 1rem;
    }
}

/* --- FORM SUBMISSION & SUCCESS UPGRADES --- */

/* Loading Spinner */
.loading-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-spin 0.8s linear infinite;
    display: none;
}

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

/* Button Loading State */
.btn-premium-submit.submitting {
    pointer-events: none;
    background: linear-gradient(90deg, #0D4DFF, #00C2FF, #0D4DFF);
    background-size: 200% auto;
    animation: gradientFlow 1.5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-submit.submitting .btn-content {
    display: none;
}

.btn-premium-submit.submitting .loading-spinner {
    display: block;
}

@keyframes gradientFlow {
    to { background-position: 200% center; }
}

/* Input Fading during Submission */
.admissions-form.submitting-active .form-group,
.admissions-form.submitting-active .form-row {
    opacity: 0.4;
    transition: opacity 0.5s var(--ease-premium);
    pointer-events: none;
}

/* Micro Feedback Line */
.form-feedback-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-premium);
}

.form-feedback-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback-line i {
    font-size: 1.2rem;
}

/* Success Card Styling */
.success-card {
    display: none;
    text-align: center;
    animation: successReveal 0.8s var(--ease-premium) forwards;
}

@keyframes successReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(3, 152, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.success-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--success-green);
    border-radius: 50%;
    opacity: 0;
    animation: successRingPulse 2s infinite;
}

@keyframes successRingPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.success-msg {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* WhatsApp Expectation Card */
.whatsapp-expectation-card {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.wa-icon-box {
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-expectation-card p {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin: 0;
}

/* Next Steps Guide */
.next-steps-guide {
    margin-bottom: 40px;
    text-align: center;
}

.next-steps-guide h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 24px;
    opacity: 0.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-item i {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--soft-gray-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.step-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
}

/* Success Actions */
.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-wa {
    background: #25D366;
    border: none;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.4s var(--ease-premium);
}

.btn-wa:hover {
    background: #20BD5A;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-wa:active {
    transform: translateY(0) scale(0.98);
}

/* Checkmark SVG Animation */
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success-green);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--success-green);
    stroke-miterlimit: 10;
    animation: success-scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes success-scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

/* Shimmer for Success Button */
.btn-premium-submit.success-morph {
    background: var(--success-green) !important;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(3, 152, 85, 0.4);
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .success-actions {
        flex-direction: column;
    }
    .success-actions .btn {
        width: 100%;
    }
    .whatsapp-expectation-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Subtle Confetti Sparkles */
.success-card {
    position: relative;
    overflow: visible;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.success-state-active .sparkle {
    animation: sparkleFirework 2s var(--ease-premium) forwards;
}

@keyframes sparkleFirework {
    0% { transform: translate(0, 0) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) scale(1); opacity: 0; }
}

.sparkle:nth-child(1) { --x: -80px; --y: -60px; background: #FFD700; animation-delay: 0.1s; }
.sparkle:nth-child(2) { --x: 80px; --y: -50px; background: #00C2FF; animation-delay: 0.2s; }
.sparkle:nth-child(3) { --x: -60px; --y: 40px; background: #FF4D4D; animation-delay: 0.3s; }
.sparkle:nth-child(4) { --x: 70px; --y: 60px; background: #25D366; animation-delay: 0.4s; }
.sparkle:nth-child(5) { --x: 0px; --y: -100px; background: #9333EA; animation-delay: 0.15s; }
.sparkle:nth-child(6) { --x: -100px; --y: 10px; background: #FF8C00; animation-delay: 0.25s; }

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-wa-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hide when form is focused or active - handled by JS class */
.floating-wa-container.fade-out {
    opacity: 0.3;
}

.wa-smart-label {
    background-color: var(--white);
    color: var(--text-heading);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    pointer-events: none; /* Tooltip doesn't block clicks */
}

/* Triangle for tooltip */
.wa-smart-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
}

.floating-wa-container.visible.show-label .wa-smart-label {
    opacity: 1;
    transform: translateX(0);
}

/* Hide label on hover of the overall container */
.floating-wa-container:hover .wa-smart-label {
    opacity: 0 !important;
    transform: translateX(10px);
}

.wa-ring-animation {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56px;
    height: 56px;
    background-color: transparent;
    border: 2px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: waRingPulse 6s infinite;
    pointer-events: none;
}

@keyframes waRingPulse {
    0% { transform: scale(1); opacity: 0; }
    5% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.floating-wa-btn {
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s var(--ease-premium);
    animation: waIdleFloat 5s ease-in-out infinite;
}

/* Subtle glow effect */
.floating-wa-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.3s var(--ease-premium);
}

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

.floating-wa-btn:hover {
    transform: scale(1.05); /* Slight scale up */
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

.floating-wa-btn:hover::before {
    inset: -6px;
    opacity: 0.8;
}

.floating-wa-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.floating-wa-btn i {
    color: var(--white);
    /* For standard alignment */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-wa-container {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-wa-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .wa-ring-animation {
        width: 50px;
        height: 50px;
    }
    
    .wa-smart-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

