/* ============================================
   LingoVerse Academy - Design System
   Modern Language Learning Center
   Color: Ocean Blue + Soft Mint + Graphite
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* Primary Colors */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --primary-lightest: #DBEAFE;
    --primary-rgb: 37, 99, 235;

    /* Accent Colors */
    --accent: #34D399;
    --accent-dark: #10B981;
    --accent-light: #6EE7B7;
    --accent-lightest: #D1FAE5;
    --accent-rgb: 52, 211, 153;

    /* Dark */
    --dark: #111827;
    --dark-light: #1F2937;
    --dark-lighter: #374151;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-light: #F1F5F9;
    --bg-card: #FFFFFF;

    /* Text */
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    --text-light: #FFFFFF;

    /* Functional */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Borders & Shadows */
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(37, 99, 235, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 40px -5px rgba(37, 99, 235, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 36px rgba(37, 99, 235, 0.15);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-cubic: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section ---- */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-lightest);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.45);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.45);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ---- Cards ---- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-cubic);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.card-body {
    padding: 28px;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ---- Badge ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: var(--primary-lightest);
    color: var(--primary);
}

.badge-accent {
    background: var(--accent-lightest);
    color: var(--accent-dark);
}

/* ---- Grid Utilities ---- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---- Flex Utilities ---- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* ---- Text Utilities ---- */
.text-center { text-align: center; }
.text-primary-color { color: var(--primary) !important; }
.text-accent-color { color: var(--accent-dark) !important; }
.text-white { color: var(--text-light) !important; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ---- Spacing Utilities ---- */
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
    padding: 12px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
}

.navbar-brand .brand-sub {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-lightest);
}

.nav-link .dropdown-icon {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--primary-lightest);
    color: var(--primary);
}

.dropdown-menu li a .dropdown-item-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover .dropdown-item-icon {
    background: var(--primary);
    color: white;
}

/* Sub-dropdown for Admissions Apply Now */
.dropdown-menu .has-sub {
    position: relative;
}

.dropdown-menu .sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-base);
    list-style: none;
}

.dropdown-menu .has-sub:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nav CTA */
.nav-cta {
    margin-left: 12px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.88rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 35%, rgba(15, 23, 42, 0.5) 65%, rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 100px;
    color: var(--text-light);
}

.slide-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.slide.active .slide-content .hero-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    color: var(--text-light);
    font-family: 'Montserrat', var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.4s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 36px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.6s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.8s;
}

.slide.active .slide-content .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.slider-dots .dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5);
}

.slider-dots .dot:hover {
    border-color: white;
}

/* Slider Stats Bar */
.slider-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

.slider-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.slider-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.slider-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

/* Progress bar at top of slider */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    z-index: 20;
    animation: sliderProgress 6s linear infinite;
}

@keyframes sliderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-floating {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.hero-floating:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(var(--primary-rgb), 0.12);
    top: -50px;
    right: -50px;
    animation-duration: 25s;
}

.hero-floating:nth-child(2) {
    width: 200px;
    height: 200px;
    background: rgba(var(--accent-rgb), 0.1);
    bottom: 50px;
    left: -30px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.hero-floating:nth-child(3) {
    width: 150px;
    height: 150px;
    background: rgba(var(--primary-rgb), 0.08);
    top: 40%;
    right: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

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

.hero-content {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.hero-stat .stat-number span {
    color: var(--accent);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Hero Right - Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s 0.5s ease both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-wrapper .hero-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Floating language badges on hero */
.hero-lang-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-lang-badge .flag {
    font-size: 1.3rem;
}

.hero-lang-badge:nth-child(2) {
    top: 15%;
    right: -10px;
    animation-delay: -1s;
}

.hero-lang-badge:nth-child(3) {
    bottom: 25%;
    left: -20px;
    animation-delay: -2s;
}

.hero-lang-badge:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: -3s;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-bar-inner {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
    padding: 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-item .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.stat-item:nth-child(1) .stat-icon { background: var(--primary-lightest); color: var(--primary); }
.stat-item:nth-child(2) .stat-icon { background: var(--accent-lightest); color: var(--accent-dark); }
.stat-item:nth-child(3) .stat-icon { background: #FEF3C7; color: #D97706; }
.stat-item:nth-child(4) .stat-icon { background: #EDE9FE; color: #7C3AED; }

.stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item .stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   WHY CHOOSE US — BENTO STYLE
   ============================================ */
.wcu-title {
    font-family: 'Montserrat', var(--font-heading);
    font-weight: 900 !important;
    text-align: center;
}

.wcu-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Horizontal divider line */
.wcu-bento::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: #E2E8F0;
}

/* Vertical divider line */
.wcu-bento::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background: #E2E8F0;
}

.wcu-item {
    padding: 48px 44px;
    text-align: center;
    border-radius: 0;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.wcu-item:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

/* Subtle corner rounding on hover for outer corners */
.wcu-item:first-child:hover { border-radius: 20px 0 0 0; }
.wcu-item:nth-child(2):hover { border-radius: 0 20px 0 0; }
.wcu-item:nth-child(3):hover { border-radius: 0 0 0 20px; }
.wcu-item:nth-child(4):hover { border-radius: 0 0 20px 0; }

/* Large duotone icons — no background box */
.wcu-icon {
    font-size: 2.4rem;
    color: #1E3A8A;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.3s ease;
}

.wcu-item:hover .wcu-icon {
    transform: scale(1.08);
}

/* All-caps letter-spaced heading */
.wcu-heading {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--dark);
    margin-bottom: 14px;
}

/* Smaller slate description */
.wcu-desc {
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.86rem;
    color: #64748B;
    line-height: 1.75;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   COURSES SECTION — PRESTIGIOUS CARDS
   ============================================ */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pc-card {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #CBD5E1;
}

/* Image Header */
.pc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 190px;
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.3) contrast(0.9);
    transition: all 0.5s ease;
}

.pc-card:hover .pc-img {
    filter: saturate(0.6) contrast(1);
    transform: scale(1.04);
}

.pc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.45) 100%);
    z-index: 1;
}

/* Flag Stamp */
.pc-flag-stamp {
    position: absolute;
    bottom: 14px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 2;
    border: 2.5px solid var(--bg-white);
}

.pc-flag-stamp img {
    width: 24px;
    border-radius: 2px;
}

/* Badge */
.pc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 14px;
    background: #0F172A;
    color: #fff;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 6px;
}

.pc-badge-pop {
    background: #1E3A8A;
}

/* Body */
.pc-body {
    padding: 24px 24px 28px;
}

.pc-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pc-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta / Footer */
.pc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #F1F5F9;
}

.pc-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pc-duration {
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pc-level {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: #1E3A8A;
    background: rgba(30, 58, 138, 0.08);
    padding: 3px 10px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

/* Executive Button */
.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #1E3A8A;
    color: #fff;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pc-btn i {
    font-size: 0.65rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.pc-btn:hover {
    background: #172554;
}

.pc-btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   HOW IT WORKS — REFINED TIMELINE
   ============================================ */
.hiw-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Horizontal connecting line */
.hiw-line {
    position: absolute;
    top: 105px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, #1E3A8A, #60A5FA, #1E3A8A);
    opacity: 0.2;
    z-index: 0;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hiw-num {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.08);
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1;
    transition: color 0.3s;
}

.hiw-step:hover .hiw-num {
    color: rgba(30, 58, 138, 0.15);
}

.hiw-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: #1E3A8A;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.hiw-step:hover .hiw-icon-ring {
    border-color: #1E3A8A;
    background: rgba(30, 58, 138, 0.04);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(30, 58, 138, 0.12);
}

.hiw-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.hiw-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

.step-cta {
    text-align: center;
    margin-top: 52px;
}

/* ============================================
   TESTIMONIALS — SLIDER
   ============================================ */
.tst-slider {
    position: relative;
    overflow: hidden;
    padding: 0 4px;
}

.tst-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tst-card {
    flex: 0 0 calc((100% - 64px) / 3);
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.35s ease;
}

.tst-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.tst-quote-mark {
    font-size: 1.6rem;
    color: #1E3A8A;
    opacity: 0.15;
    margin-bottom: 16px;
}

.tst-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.85;
    margin-bottom: 20px;
    min-height: 100px;
}

.tst-stars {
    color: #B8941F;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
}

.tst-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #E2E8F0;
    flex-shrink: 0;
}

.tst-info h5 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.tst-programme {
    font-size: 0.78rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tst-programme i {
    font-size: 0.7rem;
    color: #1E3A8A;
}

/* Slider Arrows */
.tst-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #E2E8F0;
    background: var(--bg-white);
    color: #1E3A8A;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tst-arrow:hover {
    background: #1E3A8A;
    color: #fff;
    border-color: #1E3A8A;
}

.tst-prev { left: -22px; }
.tst-next { right: -22px; }

/* Dots */
.tst-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.tst-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tst-dot.active {
    background: #1E3A8A;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   ZIGZAG / ALTERNATING LAYOUT (How to Apply)
   ============================================ */
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row.zigzag-reverse {
    flex-direction: row-reverse;
}

/* Image column */
.zigzag-image {
    flex: 0 0 48%;
    position: relative;
}

.zigzag-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.zigzag-row:hover .zigzag-image img {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16), 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Step number badge */
.zigzag-step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    color: #fff;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    z-index: 2;
    transition: transform var(--transition-base);
}

.zigzag-row.zigzag-reverse .zigzag-step-number {
    left: auto;
    right: -20px;
}

.zigzag-row:hover .zigzag-step-number {
    transform: scale(1.08) rotate(-3deg);
}

/* Alternate step number color (even steps get yellow) */
.zigzag-row:nth-child(even) .zigzag-step-number {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Text column */
.zigzag-text {
    flex: 1;
}

.zigzag-label {
    display: inline-block;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

.zigzag-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

.zigzag-row:nth-child(even) .zigzag-label {
    color: #D97706;
}

.zigzag-row:nth-child(even) .zigzag-label::before {
    background: linear-gradient(90deg, #D97706, #F59E0B);
}

.zigzag-text h3 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.zigzag-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Checklist */
.zigzag-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zigzag-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.zigzag-checklist li i {
    color: var(--accent-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Connecting line between steps */
.zigzag-row::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--border-light), transparent);
    border-radius: 4px;
}

.zigzag-row:last-child::after {
    display: none;
}

/* ============================================
   REQUIREMENTS — PREMIUM DOCUMENT CHECKLIST
   ============================================ */

/* Verification Seal */
.rq-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto 36px;
    padding: 14px 28px;
    background: rgba(30, 58, 138, 0.03);
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 12px;
}

.rq-seal-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1E3A8A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rq-seal span {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: #1E3A8A;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Tab Selector */
.rq-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.rq-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    background: var(--bg-white);
    cursor: pointer;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
    transition: all 0.3s ease;
}

.rq-tab:hover {
    border-color: #CBD5E1;
    color: #1E293B;
}

.rq-tab.active {
    background: #1E3A8A;
    border-color: #1E3A8A;
    color: #fff;
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.2);
}

.rq-tab.active svg { stroke: #fff; }

.rq-tab-flag {
    width: 18px;
    border-radius: 2px;
}

/* Card Matrix */
.rq-matrix {
    max-width: 720px;
    margin: 0 auto;
}

.rq-card {
    background: var(--bg-white);
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Card Header */
.rq-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-bottom: 1px solid #F1F5F9;
}

.rq-card-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(30, 58, 138, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rq-badge-intl {
    background: rgba(5, 150, 105, 0.06);
    color: #059669;
}

.rq-card-flag {
    width: 28px;
    border-radius: 3px;
}

.rq-card-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 3px;
}

.rq-card-sub {
    font-size: 0.78rem;
    color: #94A3B8;
    font-weight: 500;
}

.rq-card-count {
    margin-left: auto;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
    background: #F8FAFC;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    white-space: nowrap;
}

/* Card Body */
.rq-card-body {
    padding: 8px 16px;
}

/* Individual Item */
.rq-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #F8FAFC;
    transition: all 0.3s ease;
}

.rq-item:last-child { border-bottom: none; }

.rq-item:hover {
    background: #FAFBFF;
    border-radius: 12px;
}

.rq-item-num {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(30, 58, 138, 0.15);
    min-width: 22px;
    flex-shrink: 0;
}

.rq-intl .rq-item-num {
    color: rgba(5, 150, 105, 0.15);
}

.rq-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1E3A8A;
    transition: all 0.3s ease;
}

.rq-item:hover .rq-item-icon {
    border-color: #1E3A8A;
    background: rgba(30, 58, 138, 0.04);
}

.rq-intl .rq-item-icon {
    color: #059669;
}

.rq-intl:hover .rq-item-icon {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.04);
}

.rq-item-text {
    flex: 1;
}

.rq-item-text strong {
    display: block;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.rq-item-text span {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.4;
}

/* Footnote */
.rq-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 24px;
    background: #F8FAFC;
    border-radius: 10px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.rq-footnote svg {
    color: #94A3B8;
    flex-shrink: 0;
}

.rq-footnote span {
    font-size: 0.76rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* Fade-in Animation */
@keyframes rqFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MULTI-STEP FORM (Apply Now)
   ============================================ */
.msf-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

/* Applicant Type Tabs */
.msf-type-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.msf-type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 14px;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.msf-type-tab:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
}

.msf-type-tab.active {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.02));
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.12);
}

.msf-tab-flag {
    width: 24px;
    border-radius: 3px;
}

.msf-tab-icon {
    font-size: 1.1rem;
}

/* Progress Bar */
.msf-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.msf-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.msf-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-tertiary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.msf-step-circle .fa-check {
    display: none;
    font-size: 0.85rem;
}

.msf-progress-step.active .msf-step-circle {
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    border-color: #2563EB;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
    transform: scale(1.05);
}

.msf-progress-step.completed .msf-step-circle {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.msf-progress-step.completed .msf-step-circle span {
    display: none;
}

.msf-progress-step.completed .msf-step-circle .fa-check {
    display: block;
}

.msf-step-label {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-tertiary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.msf-progress-step.active .msf-step-label {
    color: var(--primary);
}

.msf-progress-step.completed .msf-step-label {
    color: var(--accent-dark);
}

/* Progress Line */
.msf-progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-light);
    border-radius: 4px;
    margin: 0 12px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.msf-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-dark), var(--primary));
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Card */
.msf-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Step Content */
.msf-step-content {
    display: none;
    padding: 48px;
    animation: msfFadeIn 0.4s ease;
}

.msf-step-content.active {
    display: block;
}

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

/* Section Header */
.msf-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.msf-section-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.msf-section-header h3 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.msf-section-header p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

.msf-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lightest), transparent);
    border-radius: 4px;
    margin-bottom: 32px;
}

/* Form Grid */
.msf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* Form Fields */
.msf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msf-field-full {
    grid-column: 1 / -1;
}

.msf-field label {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.msf-field label .req {
    color: #EF4444;
}

/* Input Wrapper with Icon */
.msf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.msf-input-wrap > i {
    position: absolute;
    left: 16px;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    z-index: 1;
    transition: color 0.3s ease;
    pointer-events: none;
}

.msf-input-wrap input,
.msf-input-wrap select,
.msf-input-wrap textarea {
    width: 100%;
    padding: 13px 16px 13px 46px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--bg-white);
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.msf-input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1.41.59L6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.msf-input-wrap input:focus,
.msf-input-wrap select:focus,
.msf-input-wrap textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.msf-input-wrap:focus-within > i {
    color: var(--primary);
}

.msf-input-wrap input::placeholder,
.msf-input-wrap textarea::placeholder {
    color: #CBD5E1;
    font-family: 'Montserrat', var(--font-body);
}

/* Textarea */
.msf-textarea-wrap {
    align-items: flex-start;
}

.msf-textarea-wrap > i {
    top: 16px;
    position: absolute;
}

.msf-textarea-wrap textarea {
    resize: vertical;
    min-height: 100px;
}

/* Agreement */
.msf-agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 28px 0;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.msf-agreement input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.msf-agreement label {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    cursor: pointer;
}

.msf-agreement a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

/* Actions */
.msf-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #F1F5F9;
}

.msf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.msf-btn-prev {
    background: #F1F5F9;
    color: var(--text-secondary);
}

.msf-btn-prev:hover {
    background: #E2E8F0;
    color: var(--dark);
}

.msf-btn-next {
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.msf-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.msf-btn-submit {
    background: linear-gradient(135deg, #059669, #10B981);
    color: #fff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    padding: 16px 40px;
    font-size: 1rem;
}

.msf-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.4);
}

.msf-security-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.msf-security-note i {
    color: var(--accent-dark);
    margin-right: 4px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* Overview Grid */
.abt-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Image Column */
.abt-img-col {
    position: relative;
}

.abt-hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    filter: saturate(0.4) contrast(0.95);
    transition: filter 0.5s ease;
}

.abt-hero-img:hover {
    filter: saturate(0.7) contrast(1);
}

.abt-img-accent {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    z-index: -1;
    opacity: 0.15;
}

/* Floating Stat Cards */
.abt-float-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.04);
}

.abt-fc-1 {
    bottom: 24px;
    right: -20px;
}

.abt-fc-2 {
    top: 24px;
    left: -20px;
}

.abt-fc-num {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #1E3A8A;
    line-height: 1;
}

.abt-fc-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Text Column */
.abt-text-col {
    padding-left: 16px;
}

.abt-heading {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin: 16px 0 20px;
    line-height: 1.3;
}

.abt-para {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 14px;
}

.abt-btn-row {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.mv-card {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.mv-card:first-child::before { background: #1E3A8A; }
.mv-card:last-child::before { background: #D97706; }

.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.mv-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.mv-icon-wrap.mv-blue { background: rgba(30,58,138,0.08); color: #1E3A8A; }
.mv-icon-wrap.mv-gold { background: #FEF3C7; color: #D97706; }

.mv-label {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.mv-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.mv-text {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

/* Core Values Bento Grid */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

/* Create subtle grid lines */
.cv-item {
    padding: 40px 36px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.cv-item:nth-child(3n) { border-right: none; }
.cv-item:nth-child(n+4) { border-bottom: none; }

.cv-item:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

.cv-icon {
    font-size: 2rem;
    color: #1E3A8A;
    display: block;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.cv-item:hover .cv-icon {
    transform: scale(1.1);
}

.cv-name {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 10px;
}

.cv-desc {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Timeline */
.stl-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 0;
}

.stl-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #1E3A8A, #60A5FA);
    opacity: 0.2;
}

.stl-item {
    position: relative;
    margin-bottom: 36px;
    width: 50%;
    padding-right: 44px;
}

.stl-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 44px;
}

.stl-dot {
    position: absolute;
    top: 20px;
    right: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1E3A8A;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px rgba(30,58,138,0.15);
    z-index: 2;
}

.stl-item:nth-child(even) .stl-dot {
    left: -7px;
    right: auto;
}

.stl-card {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s ease;
}

.stl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.stl-year {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: #1E3A8A;
    padding: 4px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.stl-item:nth-child(even) .stl-year {
    background: #D97706;
}

.stl-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.stl-desc {
    font-size: 0.86rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Team — Leadership */
.tm-leaders {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.tm-leader-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 36px;
    transition: all 0.35s ease;
}

.tm-leader-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.tm-avatar-wrap {
    flex-shrink: 0;
}

.tm-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2E8F0;
    filter: saturate(0.6);
    transition: filter 0.4s;
}

.tm-leader-card:hover .tm-avatar {
    filter: saturate(1);
}

.tm-name {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 6px;
}

.tm-role {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E3A8A;
    background: rgba(30,58,138,0.08);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.tm-bio {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0 0 14px;
}

.tm-social {
    display: flex;
    gap: 8px;
}

.tm-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 0.82rem;
    transition: all 0.3s;
    text-decoration: none;
}

.tm-social-link:hover {
    background: #1E3A8A;
    color: #fff;
}

/* Team — Instructors */
.tm-instr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.tm-instr-card {
    text-align: center;
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 20px 28px;
    transition: all 0.35s ease;
}

.tm-instr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.tm-instr-img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2E8F0;
    margin-bottom: 14px;
    filter: saturate(0.5);
    transition: filter 0.4s;
}

.tm-instr-card:hover .tm-instr-img {
    filter: saturate(1);
}

.tm-instr-name {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
}

.tm-instr-lang {
    font-size: 0.8rem;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.tm-instr-flag {
    width: 16px;
    border-radius: 2px;
}

.tm-instr-cred {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #D97706;
    background: #FEF3C7;
    padding: 4px 10px;
    border-radius: 5px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero Pattern Overlay */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
        linear-gradient(60deg, rgba(255,255,255,0.04) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.04) 75%),
        linear-gradient(60deg, rgba(255,255,255,0.04) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.04) 75%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    z-index: 0;
    opacity: 0.6;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

/* Two-Column Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 50px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.03);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.contact-form-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--primary-rgb),0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-form-header h3 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.contact-form-header p {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    margin: 0;
}

.contact-form-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lightest), transparent);
    border-radius: 4px;
    margin-bottom: 32px;
}

/* Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Floating Label Input */
.cf-field {
    position: relative;
}

.cf-field-full {
    margin-bottom: 28px;
}

.cf-input-wrap {
    position: relative;
}

.cf-input-wrap > i:first-child {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: #94A3B8;
    z-index: 2;
    transition: color 0.3s;
    pointer-events: none;
}

.cf-textarea-wrap > i:first-child {
    top: 20px;
    transform: none;
}

.cf-input-wrap input,
.cf-input-wrap select,
.cf-input-wrap textarea {
    width: 100%;
    padding: 18px 16px 8px 46px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Montserrat', var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: #FAFBFC;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.cf-input-wrap textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 26px;
}

.cf-input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1.41.59L6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Floating Label */
.cf-input-wrap label {
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: #94A3B8;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cf-textarea-wrap label {
    top: 20px;
    transform: none;
}

/* Label floats up when input has focus or content */
.cf-input-wrap input:focus ~ label,
.cf-input-wrap input:not(:placeholder-shown) ~ label,
.cf-input-wrap select:focus ~ label,
.cf-input-wrap select:valid ~ label,
.cf-input-wrap textarea:focus ~ label,
.cf-input-wrap textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: none;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cf-select-wrap label {
    top: 8px;
    transform: none;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Focus Glow */
.cf-input-wrap input:focus,
.cf-input-wrap select:focus,
.cf-input-wrap textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
}

.cf-input-wrap:focus-within > i:first-child {
    color: var(--primary);
}

/* Submit Button */
.cf-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cf-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.4);
}

/* Contact Info Hub */
.contact-info-hub {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

.info-hub-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.info-hub-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.info-hub-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-hub-icon.blue { background: rgba(var(--primary-rgb),0.1); color: var(--primary); }
.info-hub-icon.green { background: rgba(16,185,129,0.1); color: #059669; }
.info-hub-icon.purple { background: #EDE9FE; color: #7C3AED; }
.info-hub-icon.amber { background: #FEF3C7; color: #D97706; }

.info-hub-content {
    flex: 1;
}

.info-hub-content h4 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px 0;
}

.info-hub-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.info-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.info-hub-link:hover {
    gap: 10px;
}

.info-hub-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.info-hub-detail i {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    width: 16px;
    text-align: center;
}

.info-hub-detail a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-hub-detail a:hover {
    color: var(--primary);
}

/* Operating Hours */
.info-hub-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #F1F5F9;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hours-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.hours-row.closed .hours-time {
    color: #EF4444;
    font-weight: 700;
}

/* Social Media */
.info-hub-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Map Section */
.contact-map-section {
    padding: 0;
}

.contact-map-wrapper {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 420px;
    filter: grayscale(100%) contrast(0.9);
    transition: filter 0.5s ease;
}

.contact-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.15);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .brand-name .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COURSE HERO — Elite Image-based Header
   ============================================ */
.course-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.course-hero::before {
    display: none;
}

.course-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 100%);
    z-index: 0;
}

.course-flag-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.course-flag-emblem {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(212, 175, 55, 0.90) !important;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.28),
        0 0 30px rgba(212, 175, 55, 0.22),
        0 10px 36px rgba(0, 0, 0, 0.50);
    display: block !important;
    overflow: hidden;
}

.course-hero h1 {
    font-family: 'Montserrat', var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.50);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.course-hero-tagline {
    font-family: 'Montserrat', var(--font-heading) !important;
    max-width: 640px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.08rem;
    line-height: 1.72;
}

/* Course Detail Sidebar Card */
.course-detail-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
}

/* ============================================
   COURSE OVERVIEW — Premium Academic Layout
   ============================================ */
.co-overview {
    padding: 80px 0;
}

.co-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.co-heading {
    font-family: 'Montserrat', var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 16px 0 20px;
    letter-spacing: -0.3px;
}

.co-body-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.co-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 32px 0;
}

/* Feature grid */
.co-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
}

.co-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.co-feature-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px;
}

.co-feature-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px;
    line-height: 1.4;
}

.co-feature-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Sidebar */
.co-sidebar {
    position: sticky;
    top: 96px;
}

.co-card {
    padding: 28px !important;
}

.co-card-heading {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.co-details-list {
    display: flex;
    flex-direction: column;
}

.co-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #f1f5f9;
}

.co-detail-fee {
    border-bottom: none;
    padding-bottom: 0;
}

.co-detail-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.co-detail-label i {
    width: 14px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.co-detail-value {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
    text-align: right;
}

.co-fee-value {
    font-family: 'Montserrat', var(--font-heading);
    font-weight: 800;
    font-size: 1.18rem;
    color: #172554;
}

.co-btn-enrol {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 13px 20px;
    border-radius: var(--radius-full);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.co-btn-enrol:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #ffffff;
}

.co-btn-ask {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 11px 20px;
    border-radius: var(--radius-full);
    border: 1.5px solid #e2e8f0;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.co-btn-ask:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lightest);
}

@media (max-width: 1024px) {
    .co-layout {
        grid-template-columns: 3fr 2fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .co-overview {
        padding: 60px 0;
    }

    .co-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .co-sidebar {
        position: static;
    }

    .co-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ============================================
   CURRICULUM — Premium Learning Roadmap
   ============================================ */
.cr-section {
    padding: 80px 0;
}

.cr-timeline {
    max-width: 820px;
    margin: 0 auto;
}

/* Each module row: dot column + card column */
.cr-module {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 20px;
}

/* Timeline dot & connecting line */
.cr-timeline-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.cr-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Montserrat', var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
    z-index: 1;
}

.cr-line {
    flex: 1;
    width: 0;
    border-left: 2px dashed;
    margin: 8px 0;
    min-height: 28px;
}

/* Module card */
.cr-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.cr-card:hover,
.cr-open .cr-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    border-color: #e2e8f0;
}

.cr-card-header {
    padding: 22px 26px;
}

.cr-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cr-phase-badge {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cr-level-badge {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 9px;
    letter-spacing: 0.3px;
}

.cr-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cr-module-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #172554;
    margin: 0;
    line-height: 1.4;
}

.cr-chevron {
    color: #94a3b8;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Accordion body — hidden by default, shown via .cr-open */
.cr-body {
    display: none;
    padding: 18px 26px 24px;
    border-top: 1px solid #f1f5f9;
}

.cr-topics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.cr-topic {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.cr-check {
    flex-shrink: 0;
    font-size: 0.82rem;
    margin-top: 2px;
}

/* Course Outcomes box */
.cr-outcomes {
    max-width: 820px;
    margin: 48px auto 0;
}

.cr-outcomes-inner {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 32px 36px;
}

.cr-outcomes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cr-outcomes-icon {
    font-size: 1.4rem;
}

.cr-outcomes-title {
    font-family: 'Montserrat', var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #172554;
    margin: 0;
}

.cr-outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
}

.cr-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #1e3a8a;
    font-weight: 500;
    line-height: 1.55;
}

.cr-outcome-check {
    flex-shrink: 0;
    font-size: 0.78rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .cr-section {
        padding: 60px 0;
    }

    .cr-module {
        grid-template-columns: 40px 1fr;
        gap: 0 14px;
    }

    .cr-dot {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .cr-card-header {
        padding: 18px 18px;
    }

    .cr-body {
        padding: 16px 18px 20px;
    }

    .cr-outcomes-inner {
        padding: 24px 20px;
    }

    .cr-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--accent);
}

/* ============================================
   COURSES PAGE
   ============================================ */

/* Hero stats strip */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 40px;
    backdrop-filter: blur(8px);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hs-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.hs-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 24px;
}

/* Filter Bar */
.course-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 36px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.course-filter-bar::-webkit-scrollbar {
    display: none;
}

.cf-flag {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.10);
    background-size: cover;
    background-position: center;
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Montserrat', var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cf-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lightest);
}

.cf-btn.active {
    background: #1e3a8a;
    border-color: #1e3a8a;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.30);
}

/* Course Card Grid */
.cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Course Card */
.cc-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.10);
    border-color: transparent;
}

.cc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cc-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.cc-card:hover .cc-img-bg {
    transform: scale(1.05);
}

.cc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.52) 100%);
}

.cc-flag-wrap {
    position: absolute;
    bottom: 14px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
    z-index: 2;
}

.cc-flag-wrap img {
    width: 22px;
    border-radius: 2px;
}

.cc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 13px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 6px;
}

.cc-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cc-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.cc-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.cc-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
}

.cc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.cc-meta-item i {
    width: 14px;
    color: var(--primary);
    opacity: 0.75;
    flex-shrink: 0;
}

.cc-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.cc-btn:hover {
    transform: scale(1.03);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .course-filter-bar {
        padding: 10px 14px;
    }

    .hero-stats {
        padding: 16px 24px;
        gap: 0;
    }

    .hero-stat-divider {
        margin: 0 16px;
    }

    .hs-value {
        font-size: 1.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-alt);
        border-radius: var(--radius-sm);
        padding: 4px;
        display: none;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-left: 16px;
        display: none;
    }

    .dropdown-menu .has-sub.sub-open .sub-dropdown {
        display: block;
    }

    .nav-cta {
        margin: 16px 0 0;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 85vh;
        min-height: 500px;
        max-height: 700px;
    }

    .slide-content {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .slide-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .slide-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .slide-content .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .slide-content .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .desktop-cta {
        display: none;
    }

    /* How It Works Mobile */
    .hiw-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .hiw-line {
        display: none;
    }

    /* Testimonials Mobile */
    .tst-card {
        flex: 0 0 100%;
    }

    .tst-arrow {
        display: none;
    }

    .tst-text {
        min-height: auto;
    }

    /* Course Cards Mobile */
    .pc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pc-img-wrap {
        height: 160px;
    }

    /* Zigzag Mobile */
    .zigzag-row,
    .zigzag-row.zigzag-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .zigzag-image {
        flex: none;
        width: 100%;
    }

    .zigzag-image img {
        height: 240px;
        border-radius: 16px;
    }

    .zigzag-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        top: -14px;
        left: -10px;
        border-radius: 12px;
    }

    .zigzag-row.zigzag-reverse .zigzag-step-number {
        left: -10px;
        right: auto;
    }

    .zigzag-text h3 {
        font-size: 1.4rem;
    }

    .zigzag-row::after {
        display: none;
    }

    /* Why Choose Bento Mobile */
    .wcu-bento {
        grid-template-columns: 1fr;
    }

    .wcu-bento::before,
    .wcu-bento::after {
        display: none;
    }

    .wcu-item {
        padding: 36px 24px;
        border-bottom: 1px solid #E2E8F0;
    }

    .wcu-item:last-child {
        border-bottom: none;
    }

    .wcu-item:hover {
        border-radius: 16px !important;
    }

    /* Requirements Mobile */
    .rq-seal {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .rq-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .rq-tab {
        justify-content: center;
    }

    .rq-card-head {
        padding: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .rq-card-count {
        margin-left: 0;
    }

    .rq-item {
        padding: 14px 12px;
    }

    .rq-item-icon {
        width: 36px;
        height: 36px;
    }

    /* Stats Bar */
    .stats-bar {
        margin-top: -30px;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
        padding: 24px 20px;
        gap: 20px;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item .stat-value {
        font-size: 1.6rem;
    }

    /* Multi-step Form Mobile */
    .msf-type-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .msf-step-content {
        padding: 28px 20px;
    }

    .msf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .msf-progress {
        padding: 0;
    }

    .msf-step-label {
        font-size: 0.65rem;
    }

    .msf-step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .msf-progress-line {
        margin: 0 6px;
    }

    .msf-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .msf-btn {
        width: 100%;
        justify-content: center;
    }

    .msf-section-header {
        flex-direction: column;
        text-align: center;
    }

    /* About Page Mobile */
    .abt-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-hero-img {
        height: 280px;
    }

    .abt-float-card {
        position: static;
        display: inline-flex;
        margin-right: 10px;
        margin-top: 12px;
    }

    .abt-text-col {
        padding-left: 0;
    }

    .abt-heading {
        font-size: 1.6rem;
    }

    .abt-btn-row {
        flex-direction: column;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .cv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cv-item {
        padding: 28px 20px;
    }

    .cv-item:nth-child(2n) { border-right: none; }
    .cv-item:nth-child(n+5) { border-bottom: none; }

    /* Story Timeline Mobile */
    .stl-line { left: 20px; }
    .stl-item,
    .stl-item:nth-child(even) {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
    }
    .stl-dot,
    .stl-item:nth-child(even) .stl-dot {
        left: 13px;
        right: auto;
    }

    /* Team Mobile */
    .tm-leader-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }
    .tm-social { justify-content: center; }
    .tm-instr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Contact Page Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-hub {
        position: static;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }

    /* Grids */
    .grid-2, .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
    }

    .step-connector {
        padding: 4px 0;
        min-height: 40px;
    }

    .step-connector i {
        transform: rotate(90deg);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Page Hero Inner */
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    /* Cards */
    .card-body {
        padding: 20px;
    }

    .card-meta {
        flex-direction: column;
        gap: 12px;
    }

    /* Course detail */
    .course-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 12px;
    }

    /* Comparison table scroll */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* FAQ accordion */
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }

    .stats-bar-inner {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ---- Scroll to Top Button ---- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.4);
    z-index: 999;
    font-size: 1.1rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
