/*
Theme Name: Apex Trading Hub
Theme URI: https://apextradinghub.in
Author: Apex Trading Hub
Author URI: https://apextradinghub.in
Description: Professional WordPress theme for Apex Trading Hub - India's leading stock market institute. Includes hero slider, courses, testimonials, gallery, FAQ, contact form, and responsive design.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apex-trading-hub
*/

/* ============================================
   APEX TRADING HUB - Main Stylesheet
   ============================================ */

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

:root {
    --primary: #0b1d3a;
    --primary-light: #13294b;
    --accent: #d4a843;
    --accent-hover: #c49630;
    --accent-light: rgba(212, 168, 67, 0.12);
    --dark: #0a1628;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --green: #10b981;
    --red: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

[id] {
    scroll-margin-top: 90px;
}

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

ul { list-style: none; }

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

video { max-width: 100%; display: block; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }

/* ---------- SECTION COMMON ---------- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(11, 29, 58, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white) !important;
    letter-spacing: -0.3px;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

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

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(255,255,255,0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone:hover { color: var(--accent); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.nav-mobile-actions {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
}

.nav-mobile-phone i {
    color: var(--accent);
}

.nav-mobile-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ==================== HERO SLIDER ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #0f2240 40%, #0b1d3a 100%);
    overflow: hidden;
    padding-top: 90px;
}

.hero-slider {
    padding-top: 0;
}

.hero-slider-wrapper {
    overflow: hidden;
    min-height: calc(100vh - 0px);
    width: 100%;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    flex-shrink: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(0.85);
}

.hero-slide-bg--image {
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(11, 29, 58, 0.88) 50%, rgba(15, 34, 64, 0.85) 100%);
    pointer-events: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-slide-grid--center {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-slide .hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    flex-wrap: wrap;
}

.hero-stat > span:not(.stat-label) {
    font-size: 2rem;
}

.hero-stat .stat-label {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-image-frame {
    position: relative;
    max-width: 480px;
}

.hero-image-accent {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(212, 168, 67, 0.25);
    border-radius: calc(var(--radius-xl) + 4px);
    z-index: -1;
    pointer-events: none;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-card-body {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.candle {
    flex: 1;
    border-radius: 2px;
    min-height: 10px;
}

.candle.up { background: var(--green); }
.candle.down { background: var(--red); }

.mini-chart-line svg {
    width: 100%;
    height: 50px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
    z-index: 5;
}

/* Hero slider controls */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition);
    backdrop-filter: blur(6px);
}

.hero-slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

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

.hero-slider-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.hero-slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 20px;
}

.hero-slider-dot:hover {
    background: rgba(212, 168, 67, 0.7);
}

/* Hero slide extras */
.hero-slide-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-slide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-slide-list i {
    color: var(--accent);
}

.hero-badge--alert {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.25);
}

.hero-content--center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.hero-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-slide-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-slide-tags i {
    color: var(--accent);
}

.hero-course-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-course-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition);
}

.hero-course-pill span {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.hero-course-pill:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hero-course-pill--featured {
    border-color: var(--accent);
    background: rgba(212, 168, 67, 0.12);
}

.hero-info-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    max-width: 380px;
    color: var(--white);
}

.hero-info-card-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero-info-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-info-card-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-info-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.hero-info-card ul i {
    color: var(--accent);
    width: 18px;
}

.hero-info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.hero-slider-track {
    display: flex;
    width: 100%;                           /* NEW */
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    width: 100%;                           /* FIXED: was min-width: 100% */
    flex: 0 0 100%;                        /* FIXED: was flex-shrink: 0 */
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    word-wrap: break-word;                 /* NEW */
    overflow-wrap: break-word;             /* NEW */
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;                      /* NEW */
}

.hero-badge {
    /* ... existing styles ... */
    max-width: 100%;                       /* NEW */
    flex-wrap: wrap;                       /* NEW */
    text-align: center;                    /* NEW */
}
2. Tablet breakpoint (max-width: 1024px)
/* REMOVED: .hero .container from this rule (it is not a grid) */
.hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}
3. Mobile breakpoint (max-width: 768px)
.hero-slide {
    min-height: auto;
    padding: 90px 0 100px;
    overflow: visible;                     /* NEW: prevents vertical clipping */
}
/* ==================== ABOUT ==================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-700);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-floating-img {
    position: absolute;
    bottom: -20px;
    right: -24px;
    width: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    z-index: 2;
}

.about-floating-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.about-img-box {
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    border-radius: var(--radius-xl);
    padding: 0;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-img-box .about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-img-box .about-img-caption {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 18px 20px;
}

.about-icon-large {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.page-section-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.page-img-wrap {
    text-align: center;
    margin: 0 0 40px;
}

.about-img-caption {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.about-img-caption i {
    color: var(--accent);
}

/* ==================== MEDIA SHOWCASE ==================== */
.media-showcase {
    position: relative;
    padding: 100px 0;
    background: var(--gray-50);
    overflow: hidden;
}

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

.media-showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: grayscale(0.3);
}

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

.media-showcase-content .section-tag {
    margin-bottom: 12px;
}

.media-showcase-content .section-title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.media-showcase-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.media-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.media-showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-700);
}

.media-showcase-list i {
    color: var(--accent);
}

.video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    background: var(--primary);
}

.showcase-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    vertical-align: middle;
}

.video-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(11, 29, 58, 0.85);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.video-card-label i {
    color: var(--accent);
}

/* ==================== GALLERY PREVIEW ==================== */
.gallery-preview {
    padding: 100px 0;
    background: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gallery-preview-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-preview-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-preview-item:not(.gallery-preview-large):not(.gallery-preview-video) {
    aspect-ratio: unset;
}

.gallery-preview-video {
    grid-column: span 2;
}

.gallery-preview-item img,
.gallery-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-preview-item:hover img,
.gallery-preview-item:hover video {
    transform: scale(1.04);
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(11, 29, 58, 0.75));
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-video .gallery-preview-overlay {
    opacity: 1;
    background: linear-gradient(transparent 30%, rgba(11, 29, 58, 0.8));
}

.gallery-preview-video .gallery-preview-overlay i {
    margin-right: 6px;
    color: var(--accent);
}

/* ==================== COURSES ==================== */
.courses {
    padding: 100px 0;
    background: var(--gray-50);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.course-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #fffdf5, #fff);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.course-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.course-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 18px;
    line-height: 1.6;
}

.course-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.course-link:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* ==================== PROGRAM COURSES ==================== */
.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 67, 0.4);
}

.program-card--flagship {
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #13294b 100%);
    border: none;
    color: var(--white);
    overflow: hidden;
}

.program-card--flagship::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.program-card--flagship .program-card-inner {
    position: relative;
    z-index: 1;
}

.program-card--flagship h3,
.program-card--flagship h4 {
    color: var(--white);
}

.program-card--flagship .program-duration {
    color: rgba(255,255,255,0.75);
}

.program-card--flagship .program-list li {
    color: rgba(255,255,255,0.85);
}

.program-card--flagship .program-list i {
    color: var(--accent);
}

.program-card--flagship .program-badge {
    background: rgba(212, 168, 67, 0.2);
    color: var(--accent);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.program-title-wrap h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 8px 0;
    color: inherit;
}

.program-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.program-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 4px;
}

.program-duration i {
    color: var(--accent);
    font-size: 0.85rem;
}

.program-body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin-bottom: 16px;
}

.program-card--flagship .program-body h4 {
    color: var(--accent);
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px 24px;
    margin-bottom: 28px;
    list-style: none;
}

.program-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.program-list i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.program-list-compact {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.program-grid .program-card {
    display: flex;
    flex-direction: column;
}

.program-grid .program-card .btn {
    margin-top: auto;
    justify-content: center;
}

.program-grid .program-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #fffdf5, #fff);
}

.program-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.program-card-top h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.program-greek {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--primary);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
}

.program-card--alpha .program-greek { background: #1a4a7a; }
.program-card--beta .program-greek { background: var(--primary); }
.program-card--gamma .program-greek { background: #0a1628; }

.program-path {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gray-300);
}

.program-path-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.program-path-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.program-path-step {
    background: var(--gray-100);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.program-path-step small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
}

.program-path-step--highlight {
    background: var(--accent);
    color: var(--primary);
}

.program-path-step--highlight small {
    color: var(--primary);
    opacity: 0.7;
}

.program-path-steps i {
    color: var(--accent);
    font-size: 0.75rem;
}

.courses-topics {
    padding-top: 0;
    background: var(--white);
}

.courses-topics .course-card p {
    margin-bottom: 0;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 16px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.3;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--gray-200);
    margin-top: 52px;
    flex-shrink: 0;
}

/* ==================== AUDIENCE ==================== */
.audience {
    padding: 100px 0;
    background: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== WHY US ==================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== STATS ==================== */
.stats {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stats-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(0.4);
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stats-card {
    text-align: center;
    color: var(--white);
}

.stats-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stats-number {
    display: inline;
    font-size: 2.8rem;
    font-weight: 900;
}

.stats-suffix {
    display: inline;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stats-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    font-weight: 500;
}

/* ==================== MISSION ==================== */
.mission {
    padding: 100px 0;
    background: var(--white);
}

.mission-box {
    background: linear-gradient(135deg, var(--primary), #13294b);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
}

.mission-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.mission-box .btn {
    margin-top: 12px;
}

/* ==================== CTA ==================== */
.cta {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('assets/images/WhatsApp-Image-2026-06-11-at-3.16.19-PM-2.jpeg') center / cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.cta-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-box > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    font-weight: 500;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.cta-features i {
    color: var(--accent);
}

/* ==================== GALLERY ==================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-page-section {
    background: var(--gray-50);
}

.page-banner-gallery .page-banner-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

.page-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 168, 67, 0.25);
}

.gallery-banner-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.gallery-banner-stats span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.gallery-banner-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 2px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-filter:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.gallery-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4 / 3;
    border: 2px solid transparent;
}

.gallery-masonry .gallery-item {
    aspect-ratio: unset;
}

.gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.9) 0%, rgba(11, 29, 58, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 67, 0.95);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 168, 67, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item .gallery-caption {
    position: relative;
    background: none;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary), #13294b);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/WhatsApp-Image-2026-06-11-at-3.16.16-PM.jpeg') center / cover no-repeat;
    opacity: 0.08;
}

.gallery-cta-content {
    position: relative;
    z-index: 1;
}

.gallery-cta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.gallery-cta p {
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 24px;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-inner img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.gallery-lightbox-caption {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}

.gallery-lightbox-close:hover {
    background: var(--accent);
    color: var(--primary);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}

.gallery-lightbox-nav:hover {
    background: var(--accent);
    color: var(--primary);
}

.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }

.gallery-placeholder {
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--accent);
    font-size: 2rem;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ==================== GALLERY VIDEOS ==================== */
.gallery-videos {
    padding: 80px 0 60px;
    background: var(--white);
}

.gallery-videos-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.gallery-videos-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-video-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    background: var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-video-featured {
    display: flex;
    flex-direction: column;
}

.gallery-video-frame {
    position: relative;
    overflow: hidden;
}

.gallery-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(11, 29, 58, 0.3));
    pointer-events: none;
}

.gallery-video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-video-featured video {
    aspect-ratio: 16 / 10;
}

.gallery-video-caption {
    padding: 20px 24px;
    background: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.gallery-video-caption h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-video-caption p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.6;
}

.gallery-video-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gallery-video-caption-compact {
    padding: 14px 18px;
    align-items: center;
}

.gallery-video-caption i {
    color: var(--accent);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonial-carousel {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    font-size: 2.5rem;
    color: var(--gray-400);
}

.testimonial-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all var(--transition);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 20px;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: all var(--transition);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-logo i { color: var(--accent); }
.footer-logo strong { color: var(--accent); }

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

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

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
}

.footer-cta {
    margin-top: 48px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta-text h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-cta-text p { font-size: 0.9rem; }

.footer-cta-actions .btn { font-size: 0.95rem; }

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

/* ==================== PAGE BANNER ==================== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #13294b);
    padding: 110px 0 48px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/WhatsApp-Image-2026-06-11-at-3.16.16-PM.jpeg') center / cover no-repeat;
    opacity: 0.12;
    filter: grayscale(0.5);
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.92), rgba(19, 41, 75, 0.88));
}

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

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

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

.breadcrumb span {
    margin: 0 8px;
    color: rgba(255,255,255,0.3);
}

/* Contact section overrides for non-home pages */
.about .section-header { margin-bottom: 40px; }
.about, .courses, .testimonials, .gallery, .faq { padding-top: 60px; }

/* ==================== SECTION FOOTER ==================== */
.section-footer {
    text-align: center;
    margin-top: 36px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--accent);
    font-weight: 600;
}

.contact-social-link {
    width: 38px;
    height: 38px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all var(--transition);
}

.contact-social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all var(--transition);
    background: var(--gray-50);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
    background: var(--white);
}

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

.contact-info-col .section-header,
.contact-section-header {
    text-align: left;
    margin-bottom: 32px;
}

.contact-lead {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-social-block {
    margin-top: 24px;
}

.contact-social-block h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-form-note {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* Tablet & below */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--primary);
        padding: 90px 24px 30px;
        transition: right var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 14px 16px;
        display: block;
    }

    .nav-mobile-actions {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-actions .btn-sm {
        display: none;
    }

    .hero .container,
    .hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-info-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .media-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .media-showcase-content .section-title {
        text-align: center;
    }

    .media-showcase-content {
        text-align: center;
    }

    .media-showcase-list {
        align-items: center;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-preview-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

    .gallery-preview-video {
        grid-column: span 2;
    }

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

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

    .steps {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .step {
        flex: 1 1 45%;
        margin-bottom: 30px;
    }

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

    .program-list {
        grid-template-columns: 1fr;
    }

    .program-header {
        flex-direction: column;
        gap: 16px;
    }

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

    .gallery-videos-showcase {
        grid-template-columns: 1fr;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .header-inner {
        height: 68px;
    }

    .logo {
        font-size: 1rem;
        gap: 8px;
    }

    .logo-icon {
        font-size: 1.15rem;
    }

    .header-phone {
        font-size: 0;
        gap: 0;
        padding: 8px;
    }

    .header-phone i {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-slide {
        min-height: auto;
        padding: 90px 0 100px;
    }

    .hero-slider-wrapper {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-buttons--center {
        align-items: center;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .hero-stat {
        flex: 1 1 calc(33% - 12px);
        min-width: 80px;
        font-size: 1.5rem;
    }

    .hero-stat > span:not(.stat-label) {
        font-size: 1.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

    .hero-slider-dots {
        bottom: 24px;
    }

    .hero-course-pills {
        flex-direction: column;
    }

    .hero-course-pill {
        justify-content: center;
    }

    .hero-slide-tags {
        flex-direction: column;
        align-items: center;
    }

    .hero-slide-grid--center {
        text-align: center;
    }

    .about,
    .media-showcase,
    .gallery-preview,
    .courses,
    .how-it-works,
    .audience,
    .why-us,
    .mission,
    .cta,
    .gallery,
    .gallery-videos,
    .testimonials,
    .faq,
    .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about,
    .media-showcase,
    .gallery-preview,
    .courses,
    .how-it-works,
    .audience,
    .why-us,
    .mission,
    .gallery,
    .testimonials,
    .faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mission-box {
        padding: 40px 24px;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .page-banner {
        padding: 95px 0 32px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .page-banner-desc {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .gallery-banner-stats {
        gap: 16px;
    }

    .gallery-banner-stats strong {
        font-size: 1.3rem;
    }

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

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

    .footer-top {
        padding-top: 60px;
    }

    .footer-cta {
        padding: 28px 20px;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        padding: 60px 0;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps {
        flex-wrap: wrap;
        gap: 24px;
    }

    .step {
        flex: 1 1 100%;
    }

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

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

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

    .program-card {
        padding: 28px 22px;
    }

    .program-card--flagship {
        padding: 28px 22px;
    }

    .program-title-wrap h3 {
        font-size: 1.5rem;
    }

    .program-card--flagship .btn {
        width: 100%;
        justify-content: center;
    }

    .program-grid .program-card .btn {
        width: 100%;
        justify-content: center;
    }

    .program-path {
        padding: 24px 16px;
    }

    .program-path-steps {
        flex-direction: column;
        gap: 8px;
    }

    .program-path-steps i {
        transform: rotate(90deg);
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item--featured,
    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .gallery-cta {
        padding: 32px 20px;
    }

    .gallery-cta-actions {
        flex-direction: column;
    }

    .gallery-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-lightbox-nav {
        display: none;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-large,
    .gallery-preview-video {
        grid-column: span 1;
    }

    .gallery-preview-item {
        aspect-ratio: 16 / 9;
    }

    .about-floating-img {
        display: none;
    }

    .gallery-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(11, 29, 58, 0.85) 0%, transparent 55%);
    }

    .gallery-zoom {
        display: none;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }

    .page-section-img {
        max-width: 100%;
    }

    .page-img-wrap {
        margin-bottom: 28px;
    }

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

    .cta-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cta-box .btn-lg,
    .section-footer .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .contact-info-col .section-header,
    .contact-section-header {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    [id] {
        scroll-margin-top: 78px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stat {
        flex: 1 1 100%;
        text-align: center;
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.55rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .hero-badge,
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

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

    .stats-number {
        font-size: 1.8rem;
    }

    .stats-suffix {
        font-size: 1.4rem;
    }

    .stats-label {
        font-size: 0.82rem;
    }

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

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item--featured,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 18px 16px;
    }

    .cta-box h2 {
        font-size: 1.45rem;
    }

    .mission-box h2 {
        font-size: 1.5rem;
    }

    .program-path-step {
        width: 100%;
        text-align: center;
    }

    .gallery-banner-stats {
        flex-direction: column;
        gap: 12px;
    }

    .gallery-banner-stats span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .gallery-banner-stats strong {
        display: inline;
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .footer-bottom p {
        font-size: 0.78rem;
        line-height: 1.6;
        padding: 0 8px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .logo-text {
        font-size: 0.8rem;
    }

    .header-phone {
        display: none;
    }
}
