/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Logo Brand Colors */
    --brand-blue: #003E8A;
    --brand-blue-dark: #00224b;
    --brand-blue-light: #005cd6;
    --brand-gold: #E5A919;
    --brand-gold-light: #F3B72B;
    --brand-gold-dark: #b8800c;

    /* Theme Neutral Palette */
    --bg-white: #ffffff;
    --bg-slate: #f8fafc;
    --bg-dark: #070e1c;
    --text-slate-900: #0f172a;
    --text-slate-800: #1e293b;
    --text-slate-600: #475569;
    --text-slate-400: #94a3b8;
    --border-slate-200: #e2e8f0;
    
    /* Layout Constants */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Global Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --shadow-soft: 0 4px 20px -2px rgba(0, 34, 75, 0.08);
    --shadow-medium: 0 10px 30px -5px rgba(0, 34, 75, 0.12);
    --shadow-premium: 0 20px 40px -10px rgba(0, 34, 75, 0.16);
    --shadow-gold: 0 10px 25px -5px rgba(229, 169, 25, 0.25);
    --shadow-blue-glow: 0 10px 25px -5px rgba(0, 62, 138, 0.3);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-slate-900);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

li {
    list-style: none;
}

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

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

/* ==========================================
   COMMON COMPONENT STYLES
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--text-slate-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(229, 169, 25, 0.45);
    background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold));
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--brand-gold);
}

.btn-secondary:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    transform: translateY(-3px);
}

.highlight-gold {
    color: var(--brand-gold);
}

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

.section-tag {
    display: inline-block;
    color: var(--brand-blue);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 3px;
    background-color: var(--brand-gold);
}

.centered-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.centered-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
}

.centered-header .header-line {
    width: 60px;
    height: 4px;
    background-color: var(--brand-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-slate-600);
    font-size: 1.1rem;
}

/* ==========================================
   HEADER NAVIGATION (GLASSMORPHIC)
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 62, 138, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 56px;
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-slate-800);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--brand-gold);
    transition: var(--transition-smooth);
}

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

.nav-btn {
    display: inline-flex;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
}

.nav-btn:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburguer menu button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--brand-blue);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--brand-blue);
    transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Open Drawer state */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 100px 40px 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-slate-800);
}

.mobile-nav-link:hover {
    color: var(--brand-blue);
    padding-left: 8px;
}

.mobile-nav-btn {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    padding: 14px;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.mobile-nav-btn:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
}

/* Toggle menu animation */
.mobile-nav-toggle.active .hamburger {
    background-color: transparent;
}
.mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================
   HERO SLIDESHOW SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-text-slider {
    width: 100%;
    max-width: 900px;
    min-height: 250px;
}

.hero-text-slide {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.hero-text-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-tagline {
    display: inline-block;
    color: var(--brand-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.hero-title-long {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Indicators */
.slide-indicators {
    display: flex;
    gap: 12px;
    margin-top: 60px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background-color: var(--brand-gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--brand-gold);
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   ABOUT, VISION & MISSION (HOME DETAILS)
   ========================================== */
.home-details-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--brand-blue);
    font-weight: 500;
    margin-bottom: 20px;
}

.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vm-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background-color: var(--bg-slate);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vm-card.gold-border {
    border-left: 5px solid var(--brand-gold);
}

.vm-card.blue-border {
    border-left: 5px solid var(--brand-blue);
}

.vm-icon {
    font-size: 2.2rem;
    color: var(--brand-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.vm-card.gold-border .vm-icon {
    color: var(--brand-gold);
}

.vm-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.vm-list {
    margin-top: 12px;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 550;
    color: var(--text-slate-800);
}

.vm-list li i {
    color: var(--brand-blue);
    font-size: 1rem;
}

/* ==========================================
   CORE VALUES GRID
   ========================================== */
.core-values-wrapper {
    margin-bottom: 100px;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-slate-200);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--brand-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 62, 138, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
    color: var(--brand-gold);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-slate-600);
}

/* ==========================================
   FOUNDER STORY & COMMLEAD STORY
   ========================================== */
.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story-card {
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    color: var(--bg-white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.story-card.dark-card {
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
    border-top: 4px solid var(--brand-gold);
}

.story-card.blue-card {
    background: linear-gradient(135deg, var(--brand-blue), #002758);
    border-top: 4px solid var(--brand-gold-light);
}

.story-tag {
    display: inline-block;
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.story-card h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-divider {
    width: 40px;
    height: 3px;
    background-color: var(--brand-gold);
    margin-bottom: 24px;
}

.story-card p {
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.92;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   WHY US (UNIQUE VALUE PROPOSITION)
   ========================================== */
.why-us-section {
    padding: 100px 0;
}

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

.uvp-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.uvp-card:nth-child(2), .uvp-card:nth-child(4) {
    grid-column: span 2;
}

.uvp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(229, 169, 25, 0.3);
}

.uvp-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: rgba(0, 62, 138, 0.08);
}

.uvp-card:hover .uvp-badge {
    color: rgba(229, 169, 25, 0.15);
}

.uvp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--brand-blue);
    padding-right: 40px;
}

.uvp-card p {
    color: var(--text-slate-600);
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.uvp-card p strong {
    color: var(--text-slate-900);
}

.uvp-subpoints {
    background-color: var(--bg-slate);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: auto;
}

.uvp-subpoints h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue-dark);
}

.uvp-subpoints ul li {
    font-size: 0.9rem;
    color: var(--text-slate-800);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uvp-subpoints ul li i {
    color: var(--brand-gold);
}

.highlight-box {
    margin-top: auto;
    background-color: rgba(229, 169, 25, 0.08);
    border-left: 4px solid var(--brand-gold);
    padding: 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 0.92rem !important;
}

/* ==========================================
   CURRICULUM: 4P FRAMEWORK
   ========================================== */
.curriculum-section {
    padding: 100px 0;
}

.four-ps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.p-step-card {
    background-color: var(--bg-slate);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    position: relative;
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-bounce);
}

.p-step-card:hover {
    background-color: var(--brand-blue-dark);
    color: var(--bg-white);
    border-color: var(--brand-blue-dark);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.p-num {
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: var(--bg-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.p-step-card:hover .p-num {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    box-shadow: var(--shadow-gold);
}

.p-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.p-step-card:hover h3 {
    color: var(--brand-gold);
}

.p-step-card p {
    font-size: 0.92rem;
    color: var(--text-slate-600);
    transition: var(--transition-smooth);
}

.p-step-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   PROGRAM LEVELS & FEES (PRICING)
   ========================================== */
.levels-fees-wrapper {
    padding-top: 60px;
    border-top: 1px solid var(--border-slate-200);
}

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

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-slate-200);
    border-radius: var(--border-radius-md);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border: 2px solid var(--brand-gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(229, 169, 25, 0.45);
}

.popular-tag {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--text-slate-900);
    padding: 4px 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-slate-200);
    padding-bottom: 20px;
}

.price-header h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.price sup {
    font-size: 1.1rem;
}

.price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-slate-600);
}

.price-body {
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-body ul li {
    font-size: 0.9rem;
    color: var(--text-slate-600);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-body ul li i {
    color: var(--brand-blue);
}

.pricing-card.popular .price-body ul li i {
    color: var(--brand-gold);
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================
   LEARNING APPROACH
   ========================================== */
.approach-section {
    padding: 100px 0;
}

.approach-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 10px;
    width: 3px;
    height: calc(100% - 20px);
    background-color: var(--brand-blue);
    opacity: 0.15;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    background-color: var(--bg-white);
    border: 3px solid var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-blue);
    box-shadow: var(--shadow-soft);
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--text-slate-900);
    box-shadow: var(--shadow-gold);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--brand-blue);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--brand-blue);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-slate-600);
}

/* ==========================================
   ELECTIVE PATHWAYS
   ========================================== */
.electives-section {
    padding: 100px 0;
}

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

.elective-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-slate-200);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.elective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 62, 138, 0.15);
}

.elective-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 62, 138, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--brand-blue);
    transition: var(--transition-bounce);
}

.elective-card:hover .elective-icon-wrap {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    transform: rotateY(180deg);
}

.elective-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.elective-card p {
    font-size: 0.92rem;
    color: var(--text-slate-600);
}

/* ==========================================
   KEY PROGRAMMES
   ========================================== */
.programmes-section {
    padding: 100px 0;
}

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

.prog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.prog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 62, 138, 0.15);
}

.prog-img-banner {
    height: 190px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.prog-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.prog-card:hover .prog-banner-img {
    transform: scale(1.08);
}

.prog-icon-badge {
    position: absolute;
    bottom: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0, 62, 138, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.prog-content {
    padding: 24px 22px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--brand-blue);
}

.prog-sub {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-gold-dark);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.prog-content p {
    font-size: 0.92rem;
    color: var(--text-slate-600);
}

/* ==========================================
   WHO WE TRAIN
   ========================================== */
.who-we-train-section {
    padding: 100px 0;
}

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

.audience-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-smooth);
    padding: 0;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-blue);
}

.aud-img-banner {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.aud-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.audience-card:hover .aud-banner-img {
    transform: scale(1.08);
}

.aud-icon-badge {
    position: absolute;
    bottom: -18px;
    left: 20px;
    width: 42px;
    height: 42px;
    background: var(--brand-blue);
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 1.05rem;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.aud-card-content {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aud-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--brand-blue);
}

.aud-card-content p {
    font-size: 0.92rem;
    color: var(--text-slate-600);
    line-height: 1.6;
}

.highlight-aud {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
    color: var(--bg-white);
    border: none;
    align-items: center;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.highlight-aud .aud-img-banner {
    width: 35%;
    height: 100%;
    min-height: 200px;
}

.highlight-aud .aud-card-content {
    width: 65%;
    padding: 35px 40px;
}

.highlight-aud h3 {
    color: var(--brand-gold);
    font-size: 1.5rem;
}

.highlight-aud p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* ==========================================
   REGISTRATION & CONTACT
   ========================================== */
.register-section {
    padding: 100px 0;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

.contact-card {
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: var(--bg-white);
    box-shadow: var(--shadow-medium);
}

.contact-card .section-tag {
    color: var(--brand-gold);
}

.contact-card .section-tag::before {
    background-color: var(--bg-white);
}

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

.contact-intro {
    opacity: 0.85;
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.c-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand-gold);
}

.c-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.c-text a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

.c-text a:hover {
    color: var(--brand-gold-light);
}

.map-placeholder {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.map-icon {
    font-size: 1.8rem;
    color: var(--brand-gold);
}

.map-placeholder p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Enrollment Form */
.registration-form-container {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-slate-200);
}

.registration-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.registration-form-container p {
    color: var(--text-slate-600);
    margin-bottom: 30px;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-slate-800);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-slate-400);
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--border-slate-200);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-slate);
    color: var(--text-slate-900);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    appearance: none;
}

.input-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.input-wrapper input::placeholder {
    color: var(--text-slate-400);
}

.input-wrapper input:focus, .input-wrapper select:focus {
    background-color: var(--bg-white);
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 62, 138, 0.15);
}

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

.btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
}

/* Database Table Section */
.database-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-slate-200);
    padding-bottom: 16px;
}

.db-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-title-wrap i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.db-title-wrap h3 {
    font-size: 1.4rem;
}

.btn-clear {
    background-color: transparent;
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #dc2626;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-clear:hover {
    background-color: #dc2626;
    color: var(--bg-white);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

th, td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-slate-200);
}

th {
    background-color: var(--bg-slate);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-slate-900);
}

tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(0, 62, 138, 0.02);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}
.badge-beginner {
    background-color: rgba(0, 62, 138, 0.08);
    color: var(--brand-blue);
}
.badge-intermediate {
    background-color: rgba(229, 169, 25, 0.12);
    color: var(--brand-gold-dark);
}
.badge-advanced {
    background-color: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.badge-time {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--bg-slate);
    border: 1px solid var(--border-slate-200);
    border-radius: 4px;
    color: var(--text-slate-800);
    font-family: 'Outfit', sans-serif;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 4px solid var(--brand-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 56px;
    width: auto;
    align-self: flex-start;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-white);
    padding: 4px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-social h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--brand-gold-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bg-white);
    transition: var(--transition-bounce);
}

.social-icons a:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================
   EXPANDABLE CONTENT (READ MORE/LESS)
   ========================================== */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-out;
}

.expandable-content.expanded {
    opacity: 1;
}

.btn-toggle-expand {
    background: none;
    border: none;
    color: var(--brand-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 4px 0;
    transition: var(--transition-smooth);
    outline: none;
    align-self: flex-start;
}

.btn-toggle-expand:hover {
    color: var(--brand-gold-light);
    transform: translateX(3px);
}

.btn-toggle-expand i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-toggle-expand.active i {
    transform: rotate(180deg);
}

/* Ensure flex parents display cards beautifully */
.story-card, .uvp-card, .p-step-card {
    display: flex;
    flex-direction: column;
}

.summary-text {
    margin-bottom: 0 !important;
}

.expandable-content p {
    margin-top: 12px;
    margin-bottom: 0 !important;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate-200);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-gold);
}

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

.profile-img-wrap {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    overflow: hidden;
    border: 2.5px solid var(--brand-gold);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    background-color: var(--bg-slate);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.profile-name {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.profile-role {
    font-size: 0.85rem;
    color: var(--text-slate-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-role i {
    color: var(--brand-gold);
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--brand-gold);
    font-size: 0.95rem;
    margin-top: 4px;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-summary {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-slate-600);
    font-style: italic;
}

.btn-testimonial-action {
    background-color: transparent;
    border: 1.5px solid var(--brand-gold);
    color: var(--brand-blue-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    align-self: flex-start;
}

.btn-testimonial-action:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================
   TESTIMONIAL MODAL POPOUT STYLES
   ========================================== */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 14, 28, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--border-radius-lg);
    padding: 44px;
    box-shadow: 0 25px 60px -15px rgba(0, 34, 75, 0.3);
    border: 1px solid var(--border-slate-200);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-modal.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background-color: var(--bg-slate);
    border: 1px solid var(--border-slate-200);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-slate-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    outline: none;
}

.modal-close-btn:hover {
    background-color: var(--brand-gold);
    color: var(--text-slate-900);
    border-color: var(--brand-gold);
    transform: rotate(90deg);
}

.modal-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-slate-200);
}

.modal-img-wrap {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--brand-gold);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    background-color: var(--bg-slate);
}

.modal-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.modal-profile-name {
    font-size: 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
}

.modal-profile-role {
    font-size: 0.95rem;
    color: var(--text-slate-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-quote-body {
    position: relative;
}

.modal-quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 62, 138, 0.12);
    margin-bottom: 12px;
}

.modal-testimonial-text {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--text-slate-800);
    font-style: italic;
}
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.5px;
}

.profile-role {
    font-size: 0.92rem;
    color: var(--text-slate-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-role i {
    color: var(--brand-gold);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-title-long {
        font-size: 2.2rem;
    }
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .uvp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .uvp-card:nth-child(2), .uvp-card:nth-child(4) {
        grid-column: span 1;
    }
    .four-ps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .electives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-aud {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .register-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-title-long {
        font-size: 1.8rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .core-values-grid {
        grid-template-columns: 1fr;
    }
    .uvp-grid {
        grid-template-columns: 1fr;
    }
    .four-ps-container {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .electives-grid {
        grid-template-columns: 1fr;
    }
    .programmes-grid {
        grid-template-columns: 1fr;
    }
    .audiences-grid {
        grid-template-columns: 1fr;
    }
    .highlight-aud {
        grid-column: span 1;
        flex-direction: column;
        text-align: left;
    }
    .highlight-aud .aud-img-banner {
        width: 100%;
        height: 180px;
        min-height: auto;
    }
    .highlight-aud .aud-card-content {
        width: 100%;
        padding: 24px 20px;
    }
    .registration-form-container {
        padding: 30px 20px;
    }
    .contact-card {
        padding: 30px 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .quote-badge {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
    .testimonial-profile {
        gap: 14px;
    }
    .profile-img-wrap {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }
    .profile-name {
        font-size: 1.15rem;
    }
}
