/* ============================================================
   PRIVEDU — Global Animation & Interaction System
   ============================================================ */

/* --- Keyframe Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); max-height: 0; }
    to   { opacity: 1; transform: translateY(0); max-height: 600px; }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.7; }
}

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

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

@keyframes ripple {
    0%   { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

/* --- Page Transition Overlay --- */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: #1e3b2b;
    z-index: 9999;
    transform-origin: bottom;
    transform: scaleY(0);
    pointer-events: none;
}

/* --- Scroll Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.reveal-left {
    transform: translateX(-40px);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.reveal-scale {
    transform: scale(0.92);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    --border-radius-sm: 10px;
    --border-radius-md: 16px;
    --border-radius-lg: 28px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08), 0 6px 12px rgba(15, 23, 42, 0.05);
    --shadow-colored: 0 8px 24px -6px rgba(var(--primary-rgb), 0.22);
    --glow-primary: 0 0 20px rgba(var(--primary-rgb), 0.15);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, .main-content {
    flex: 1 0 auto;
}

/* Theme Configurations */
.theme-green {
    --primary: #1e3b2b;
    --primary-dark: #0c1812;
    --primary-light: #edf5f0;
    --primary-accent: #9ec69b;
    --primary-rgb: 30, 59, 43;
    --secondary: #edf5f0;
    --secondary-hover: #e2ede6;
    --text-dark: #0c1812;
    --text-light: #ffffff;
    --text-muted: #526659;
    --bg-main: #f8faf9;
    --bg-card: #ffffff;
    --bg-header: #1e3b2b;
    --bg-header-scrolled: #1e3b2b;
    --header-text: #ffffff;
    --border-color: rgba(30, 59, 43, 0.12);
    --success: #9ec69b;
    --danger: #ef4444;
}

.theme-darkgreen {
    --primary:       #4ade80;
    --primary-dark:  #22c55e;
    --primary-light: rgba(74,222,128,0.12);
    --primary-accent:#4ade80;
    --primary-rgb:   74, 222, 128;
    --secondary:     #fbbf24;
    --secondary-hover:#f59e0b;
    --text-dark:     #e8f5ee;
    --text-light:    #ffffff;
    --text-muted:    #86b09a;
    --bg-main:       #0d1f16;
    --bg-card:       #132b1e;
    --bg-header:     #0e2118;
    --bg-header-scrolled: #0e2118;
    --header-text:   #e8f5ee;
    --border-color:  rgba(74,222,128,0.15);
    --success:       #4ade80;
    --danger:        #f87171;
}

/* ── Dark theme: global ──────────────────────────────────── */
.theme-darkgreen body {
    background-color: #0d1f16;
    color: #e8f5ee;
}

/* Navigation Overrides */
.theme-darkgreen .logo { color: #e8f5ee; }
.theme-darkgreen .btn-primary   { background-color: #2d6a4f !important; color: #fff !important; border-color: #2d6a4f !important; }
.theme-darkgreen .btn-secondary { background-color: rgba(74,222,128,0.1) !important; color: #4ade80 !important; border-color: rgba(74,222,128,0.25) !important; }
.theme-darkgreen .btn-outline   { color: #4ade80 !important; border-color: rgba(74,222,128,0.4) !important; }
.theme-darkgreen .btn-outline:hover { background-color: rgba(74,222,128,0.1) !important; }

/* Section titles & headings */
.theme-darkgreen h1,
.theme-darkgreen h2,
.theme-darkgreen h3,
.theme-darkgreen h4,
.theme-darkgreen h5,
.theme-darkgreen h6,
.theme-darkgreen .hero-title,
.theme-darkgreen .section-title,
.theme-darkgreen .section-title-left,
.theme-darkgreen .category-card h3,
.theme-darkgreen .parents-text h2,
.theme-darkgreen .support-info h3,
.theme-darkgreen .faq-question,
.theme-darkgreen .blog-card-title,
.theme-darkgreen .form-group label,
.theme-darkgreen .about-hero h1,
.theme-darkgreen .how-header h1,
.theme-darkgreen .support-header h1,
.theme-darkgreen .partner-header h1,
.theme-darkgreen .career-header h1,
.theme-darkgreen .faq-header h1,
.theme-darkgreen .tutors-header h1,
.theme-darkgreen .blog-header h1,
.theme-darkgreen .courses-header h1,
.theme-darkgreen .page-header h1,
.theme-darkgreen .story-left h2,
.theme-darkgreen .values-header h2,
.theme-darkgreen .partner-card h3,
.theme-darkgreen .career-card h3,
.theme-darkgreen .info-box-title,
.theme-darkgreen .calc-header h1 {
    color: #e8f5ee !important;
}

/* Muted / descriptive text */
.theme-darkgreen p,
.theme-darkgreen .section-desc,
.theme-darkgreen .about-hero p,
.theme-darkgreen .how-header p,
.theme-darkgreen .support-header p,
.theme-darkgreen .partner-header p,
.theme-darkgreen .career-header p,
.theme-darkgreen .faq-header p,
.theme-darkgreen .tutors-header p,
.theme-darkgreen .blog-header p,
.theme-darkgreen .courses-header p,
.theme-darkgreen .story-p,
.theme-darkgreen .partner-card p,
.theme-darkgreen .career-card p,
.theme-darkgreen .stat-item p,
.theme-darkgreen .calc-desc,
.theme-darkgreen .footer-desc {
    color: #86b09a !important;
}

/* Page / wrapper backgrounds */
.theme-darkgreen .about-wrapper,
.theme-darkgreen .how-wrapper,
.theme-darkgreen .support-wrapper,
.theme-darkgreen .partner-wrapper,
.theme-darkgreen .career-wrapper,
.theme-darkgreen .faq-wrapper,
.theme-darkgreen .tutors-wrapper,
.theme-darkgreen .blog-wrapper,
.theme-darkgreen .courses-wrapper,
.theme-darkgreen .auth-wrapper,
.theme-darkgreen .auth-container,
.theme-darkgreen .calculator-wrapper,
.theme-darkgreen .teacher-profile-wrapper,
.theme-darkgreen .main-container,
.theme-darkgreen section {
    background-color: #0d1f16 !important;
    color: #e8f5ee !important;
}

/* Alternating section bg */
.theme-darkgreen .how-it-works,
.theme-darkgreen .parents-section,
.theme-darkgreen .trust-bar {
    background-color: #0e2118 !important;
}

/* Cards */
.theme-darkgreen .about-story,
.theme-darkgreen .value-card,
.theme-darkgreen .info-box-card,
.theme-darkgreen .support-form-card,
.theme-darkgreen .partner-card,
.theme-darkgreen .career-card,
.theme-darkgreen .faq-card,
.theme-darkgreen .faq-item,
.theme-darkgreen .timeline-content,
.theme-darkgreen .hero-box,
.theme-darkgreen .calc-card,
.theme-darkgreen .auth-card,
.theme-darkgreen .login-card,
.theme-darkgreen .register-card,
.theme-darkgreen .role-card,
.theme-darkgreen .filter-panel,
.theme-darkgreen .seo-intro-card,
.theme-darkgreen .pcard,
.theme-darkgreen .stats-strip,
.theme-darkgreen .category-card,
.theme-darkgreen .course-card,
.theme-darkgreen .teacher-card,
.theme-darkgreen .blog-card,
.theme-darkgreen .feature-card,
.theme-darkgreen .trust-card,
.theme-darkgreen .modal-content,
.theme-darkgreen .dropdown-menu,
.theme-darkgreen .parents-banner,
.theme-darkgreen .parents-banner-light {
    background-color: #132b1e !important;
    border-color: rgba(74,222,128,0.2) !important;
    color: #e8f5ee !important;
}
.theme-darkgreen .category-card h3,
.theme-darkgreen .teacher-card h3,
.theme-darkgreen .blog-card-title,
.theme-darkgreen .feature-card h3,
.theme-darkgreen .trust-card h3,
.theme-darkgreen .parents-banner-title,
.theme-darkgreen .parents-text h2 { color: #e8f5ee !important; }
.theme-darkgreen .category-card p,
.theme-darkgreen .teacher-card p,
.theme-darkgreen .blog-card p,
.theme-darkgreen .feature-card p,
.theme-darkgreen .parents-banner-desc,
.theme-darkgreen .parents-text p { color: #c8e6d4 !important; }

/* Forms */
.theme-darkgreen .form-control,
.theme-darkgreen input[type="text"],
.theme-darkgreen input[type="email"],
.theme-darkgreen input[type="password"],
.theme-darkgreen input[type="tel"],
.theme-darkgreen textarea,
.theme-darkgreen select,
.theme-darkgreen .filter-input {
    background-color: #0a1a10 !important;
    color: #e8f5ee !important;
    border-color: rgba(74,222,128,0.2) !important;
}
.theme-darkgreen .form-control::placeholder,
.theme-darkgreen input::placeholder,
.theme-darkgreen textarea::placeholder { color: #4d7a60 !important; }
.theme-darkgreen .form-group label { color: #c8e6d4 !important; }

/* Dropdown */
.theme-darkgreen .dropdown-item { color: #e8f5ee; }
.theme-darkgreen .dropdown-item:hover {
    background-color: rgba(74,222,128,0.1);
    color: #4ade80;
}

/* Trust bar numbers */
.theme-darkgreen .trust-text h3 { color: #4ade80 !important; }
.theme-darkgreen .trust-text p  { color: #86b09a !important; }

/* Steps */
.theme-darkgreen .step-num { background-color: rgba(74,222,128,0.12); color: #4ade80; }
.theme-darkgreen .step-card h4 { color: #e8f5ee !important; }
.theme-darkgreen .step-card p  { color: #86b09a !important; }

/* Section tags */
.theme-darkgreen .section-tag { background-color: rgba(74,222,128,0.12); color: #4ade80; }
.theme-darkgreen .section-see-all { color: #4ade80 !important; border-color: rgba(74,222,128,0.3) !important; }
.theme-darkgreen .section-see-all:hover { background-color: #2d6a4f !important; color: #fff !important; }
.theme-darkgreen .section-title-left { color: #e8f5ee !important; border-left-color: #4ade80 !important; }


/* Dark Green Theme Heading Text & Wrapper Overrides */
.theme-darkgreen h1,
.theme-darkgreen h2,
.theme-darkgreen h3,
.theme-darkgreen h4,
.theme-darkgreen h5,
.theme-darkgreen h6,
.theme-darkgreen .hero-title,
.theme-darkgreen .section-title,
.theme-darkgreen .category-card h3,
.theme-darkgreen .parents-text h2,
.theme-darkgreen .support-info h3,
.theme-darkgreen .faq-question,
.theme-darkgreen .blog-card-title,
.theme-darkgreen .form-group label,
.theme-darkgreen .about-hero h1,
.theme-darkgreen .how-header h1,
.theme-darkgreen .support-header h1,
.theme-darkgreen .partner-header h1,
.theme-darkgreen .career-header h1,
.theme-darkgreen .faq-header h1,
.theme-darkgreen .tutors-header h1,
.theme-darkgreen .blog-header h1,
.theme-darkgreen .courses-header h1,
.theme-darkgreen .page-header h1,
.theme-darkgreen .story-left h2,
.theme-darkgreen .values-header h2,
.theme-darkgreen .partner-card h3,
.theme-darkgreen .career-card h3,
.theme-darkgreen .info-box-title,
.theme-darkgreen .calc-header h1 {
    color: var(--text-dark) !important;
}

.theme-darkgreen .about-hero p,
.theme-darkgreen .how-header p,
.theme-darkgreen .support-header p,
.theme-darkgreen .partner-header p,
.theme-darkgreen .career-header p,
.theme-darkgreen .faq-header p,
.theme-darkgreen .tutors-header p,
.theme-darkgreen .blog-header p,
.theme-darkgreen .courses-header p,
.theme-darkgreen .story-p,
.theme-darkgreen .partner-card p,
.theme-darkgreen .career-card p,
.theme-darkgreen .stat-item p,
.theme-darkgreen .calc-desc {
    color: var(--text-muted) !important;
}

.theme-darkgreen .about-wrapper,
.theme-darkgreen .how-wrapper,
.theme-darkgreen .support-wrapper,
.theme-darkgreen .partner-wrapper,
.theme-darkgreen .career-wrapper,
.theme-darkgreen .faq-wrapper,
.theme-darkgreen .tutors-wrapper,
.theme-darkgreen .blog-wrapper,
.theme-darkgreen .courses-wrapper,
.theme-darkgreen .auth-wrapper,
.theme-darkgreen .auth-container,
.theme-darkgreen .calculator-wrapper,
.theme-darkgreen .teacher-profile-wrapper,
.theme-darkgreen .main-container {
    background: var(--bg-main) !important;
    background-color: var(--bg-main) !important;
    color: var(--text-dark) !important;
}

.theme-darkgreen .about-story,
.theme-darkgreen .value-card,
.theme-darkgreen .info-box-card,
.theme-darkgreen .support-form-card,
.theme-darkgreen .partner-card,
.theme-darkgreen .career-card,
.theme-darkgreen .faq-card,
.theme-darkgreen .faq-item,
.theme-darkgreen .timeline-content,
.theme-darkgreen .hero-box,
.theme-darkgreen .calc-card,
.theme-darkgreen .auth-card,
.theme-darkgreen .filter-panel,
.theme-darkgreen .seo-intro-card,
.theme-darkgreen .pcard,
.theme-darkgreen .stats-strip,
.theme-darkgreen .category-card,
.theme-darkgreen .course-card,
.theme-darkgreen .teacher-card,
.theme-darkgreen .blog-card,
.theme-darkgreen .feature-card,
.theme-darkgreen .trust-card,
.theme-darkgreen .modal-content,
.theme-darkgreen .dropdown-menu {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-dark) !important;
}

.theme-darkgreen .nav-link {
    color: var(--text-dark);
}

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

.theme-darkgreen .btn-outline {
    color: var(--primary) !important;
    border-color: var(--primary);
}

.theme-darkgreen .btn-outline:hover {
    background-color: var(--primary-light);
}

.theme-darkgreen .form-control,
.theme-darkgreen input[type="text"],
.theme-darkgreen input[type="email"],
.theme-darkgreen input[type="password"],
.theme-darkgreen input[type="tel"],
.theme-darkgreen textarea,
.theme-darkgreen select,
.theme-darkgreen .filter-input {
    background-color: var(--bg-card) !important;
    color: var(--text-dark) !important;
    border-color: var(--border-color) !important;
}

.theme-darkgreen .dropdown-item {
    color: var(--text-dark);
}

.theme-darkgreen .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.theme-blue {
    --primary: #2b5c8f;
    --primary-dark: #1b3d60;
    --primary-light: #f0f5fa;
    --primary-rgb: 43, 92, 143;
    --secondary: #e67e22;
    --secondary-hover: #d35400;
    --text-dark: #0e1621;
    --text-light: #ffffff;
    --text-muted: #505c6d;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.95);
    --border-color: #e4ebf3;
    --success: #2980b9;
    --danger: #e74c3c;
}

/* Typography & Layout Elements */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

section {
    padding: 96px 0;
}

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

/* rizedijital.com tarzı sol bordür başlık */
.section-header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title-left {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    padding-left: 14px;
    border-left: 4px solid #16a34a;
    line-height: 1.2;
}

.section-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
    border: 1.5px solid #16a34a;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.section-see-all:hover {
    background: #16a34a;
    color: #ffffff;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
}

/* Helper Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: #1e3b2b;
    color: #f9f5e6;
    border: 1px solid #1e3b2b;
    box-shadow: 0 4px 12px rgba(30, 59, 43, 0.15);
}

.btn-primary:hover {
    background: #15291e;
    color: #f9f5e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 59, 43, 0.25);
}

.btn-secondary {
    background: #f9f5e6;
    color: #1e3b2b;
    border: 1px solid #f9f5e6;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: #eae5d5;
    color: #1e3b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

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



/* ============================================================
   PRIVEDU SLEEK FULL-WIDTH HORIZONTAL HERO (Reference Style)
   ============================================================ */
.hero-section {
    width: 100%;
    background: #1e3b2b;
    background: linear-gradient(135deg, #1e3b2b 0%, #163625 55%, #0d2217 100%);
    padding: 50px 0 54px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg-glow {
    position: absolute;
    top: -25%;
    right: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: #e8f5ee;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-badge-pill span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-main-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-main-title .hero-highlight-word {
    color: #7ee7a4;
    display: inline-block;
}

.hero-sub-text {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 24px 0;
    max-width: 480px;
}

/* Reference Style Solid Dark Pill CTA Button */
.hero-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #09130e;
    color: #ffffff !important;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-cta-pill:hover {
    background: #000000;
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.hero-cta-pill .cta-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.hero-cta-pill:hover .cta-arrow {
    transform: translateX(4px);
}

/* Small Trust Tags below button */
.hero-trust-tags {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.72);
    font-size: 12.5px;
    font-weight: 500;
}

.hero-trust-tag svg {
    width: 14px;
    height: 14px;
    fill: #4ade80;
    flex-shrink: 0;
}

/* Compact Stacked Overlapping Photo Cards Deck */
.hero-stacked-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stacked-card-deck {
    position: relative;
    width: 100%;
    height: 310px;
}

.stacked-card-layer {
    position: absolute;
    top: 0;
    height: 310px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Layer 3 (Far right stack) */
.stacked-card-layer.layer-3 {
    left: 20%;
    width: 78%;
    transform: scale(0.92);
    opacity: 0.4;
    z-index: 1;
    filter: brightness(0.85);
}

/* Layer 2 (Middle stack) */
.stacked-card-layer.layer-2 {
    left: 10%;
    width: 82%;
    transform: scale(0.96);
    opacity: 0.7;
    z-index: 2;
    filter: brightness(0.92);
}

/* Layer 1 (Front Primary Card) */
.stacked-card-layer.layer-1 {
    left: 0;
    width: 85%;
    z-index: 3;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.stacked-card-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Inset Video / Call Mini Card */
.stacked-mini-inset {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 95px;
    height: 115px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 4;
    background: #000;
}

.stacked-mini-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 16px 0 24px 0;
    }
    .hero-card-banner {
        padding: 32px 24px;
        border-radius: 20px;
    }
    .hero-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-left-content {
        align-items: center;
        text-align: center;
    }
    .hero-sub-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-trust-tags {
        justify-content: center;
    }
    .hero-stacked-wrapper {
        margin: 0 auto;
        max-width: 360px;
    }
    .stacked-card-deck {
        height: 270px;
    }
    .stacked-card-layer {
        height: 270px;
    }
    .stacked-mini-inset {
        width: 80px;
        height: 100px;
    }
}
    margin: 0;
}

/* Floating Cards (legacy, kept for compatibility) */
.floating-card {
    position: absolute;
    background-color: rgba(255,255,255,0.12);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    color: #fff;
}

.floating-card:hover {
    transform: translateY(-4px) !important;
}

.floating-card-1 {
    top: 10%;
    left: -40px;
    animation: float 5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 10%;
    right: -20px;
    animation: float 5s ease-in-out infinite 2.5s;
}

.floating-card .icon-wrap {
    width: 44px;
    height: 44px;
    background-color: rgba(35,103,70,0.25);
    color: #a2e3bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-card .card-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.floating-card .card-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Trust/Stats bar — rizedijital.com düz yatay bar stili */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 3px solid var(--primary);
    padding: 0;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.trust-bar::before {
    display: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    padding: 28px 24px;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.trust-item:hover::after {
    transform: scaleX(1);
}

.trust-item:hover {
    background: var(--primary-light);
}

.trust-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.trust-text h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #16a34a;
}

.trust-text p {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

/* How It Works Steps */
.how-it-works {
    background-color: var(--bg-card);
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(to right, var(--primary-light), var(--primary-light) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.step-num-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 3px solid var(--bg-card);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover .step-num {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Course Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(var(--primary-rgb), 0.15) 100%);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.category-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link:hover {
    color: var(--primary-dark);
}

/* Teachers grid showcase */
.teachers {
    background-color: var(--bg-card);
}

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

.teacher-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.teacher-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.2);
    transition: box-shadow 0.35s ease;
    pointer-events: none;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.teacher-card:hover::after {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.teacher-avatar-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #dfe6e9;
}

.teacher-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.teacher-card:hover .teacher-avatar {
    transform: scale(1.05);
}

.teacher-details {
    padding: 24px;
}

.teacher-branch {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.teacher-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.teacher-exp {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.teacher-bio {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Veliler Call-out Banner */
.parents-banner {
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 64px;
}
.parents-banner-light {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-md);
}
.parents-banner-title {
    color: #0c1812;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}
.parents-banner-desc {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.btn-parents-action {
    background-color: #1e3b2b;
    color: #ffffff !important;
    padding: 13px 30px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.25s ease;
}
.btn-parents-action:hover {
    background-color: #162c20;
    transform: translateY(-2px);
}

.parents-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.parents-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0c1812;
    margin-bottom: 16px;
}

.parents-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.parents-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 3px solid #ffffff;
}

/* Support Form Section */
.support-section {
    background-color: var(--bg-card);
    padding: 72px 0;
}

.support-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.support-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.support-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 15px;
    font-weight: 700;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.form-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 36px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-cover-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #dfe6e9;
}

.blog-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-cover {
    transform: scale(1.05);
}

.blog-meta-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.blog-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary-dark);
}

.blog-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-card);
}

.faq-list {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    background-color: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-toggle-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease,
                opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
    opacity: 1;
}

.faq-item.active {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm), 0 0 0 3px rgba(var(--primary-rgb), 0.06);
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Alert styles */
.alert {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer styling — Privedu Brand Design System */
.footer {
    background-color: #14291e;
    color: #edf5f0;
    padding: 40px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-accent, #9ec69b);
}

.footer-desc {
    color: rgba(237, 245, 240, 0.72);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 300px;
    line-height: 1.65;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    color: rgba(237, 245, 240, 0.8);
}

.social-icon:hover {
    background-color: var(--primary-accent, #9ec69b);
    border-color: var(--primary-accent, #9ec69b);
    color: #0c1812;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-accent, #9ec69b);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(237, 245, 240, 0.75);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-accent, #9ec69b);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: rgba(237, 245, 240, 0.75);
    line-height: 1.5;
}

.footer-contact svg {
    margin-top: 3px;
    color: var(--primary-accent, #9ec69b);
    opacity: 0.9;
}

.footer-bottom-wrap {
    width: 100%;
    background-color: #0c1812;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: none;
}

.footer-bottom p {
    font-size: 13.5px;
    color: rgba(237, 245, 240, 0.65);
    margin: 0;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(237, 245, 240, 0.7);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.footer-legal-links a:hover {
    color: var(--primary-accent, #9ec69b);
    text-decoration: underline;
}

/* Global Legal Modal Backdrop & Container */
.legal-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.legal-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.legal-modal-box {
    background: var(--bg-card, #ffffff);
    color: var(--text-dark, #1e293b);
    border-radius: var(--border-radius-lg, 16px);
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.legal-modal-backdrop.active .legal-modal-box {
    transform: scale(1);
}
.legal-modal-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-main, #f8fafc);
}
.legal-modal-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary, #16a34a);
}
.legal-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted, #64748b);
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.legal-modal-close:hover {
    color: #ef4444;
}
.legal-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14.5px;
    line-height: 1.8;
    flex: 1;
}
.legal-modal-foot {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-main, #f8fafc);
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3b2b 0%, #2d5a3d 100%);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    transform: translateY(16px);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, #2d5a3d 0%, #16a34a 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(22, 163, 74, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* SVG Icon styles */
.svg-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    .categories-grid, .teachers-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-timeline::before {
        display: none;
    }
    .steps-timeline {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 16px 20px 16px;
        margin: 24px -16px 0 -16px;
        scrollbar-width: none;
    }
    .steps-timeline::-webkit-scrollbar {
        display: none;
    }
    .step-card {
        flex: 0 0 240px;
        min-width: 240px;
        scroll-snap-align: start;
        background: var(--bg-card);
        padding: 24px 18px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
        text-align: center;
    }
    .step-num-wrap {
        margin-bottom: 12px;
    }
    .step-num {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        display: flex;
        justify-content: center;
    }
    .floating-card-1 {
        left: 0;
    }
    .floating-card-2 {
        right: 0;
    }

    .support-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .parents-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .parents-banner {
        padding: 32px;
    }
}

@media (max-width: 580px) {
    .hero-title {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }
    .hero-subtitle {
        font-size: 14.5px !important;
    }
    .categories-grid, .teachers-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Homepage Hero Carousel Slider */
.hero-slider-wrapper {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    overflow: hidden;
    position: relative;
}
.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}
.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: white;
    padding: 20px;
    text-align: left;
}
.slide-caption h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}
.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #16A34A !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Program Interactive Cards & Modal */
.feature-program-card {
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.feature-program-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(30, 59, 43, 0.12) !important;
    border-color: #1e3b2b !important;
}

/* Program Info Popup Modal Window */
.program-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 16, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.program-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.program-modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 32px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-modal-overlay.active .program-modal-card {
    transform: scale(1);
}
.program-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light, #edf5f0);
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.program-modal-close:hover {
    background: #1e3b2b;
    color: #ffffff;
}
.program-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.program-modal-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(30, 59, 43, 0.12);
    color: #1e3b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}
.program-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}
.program-modal-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 20px;
}
.program-modal-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}
.program-modal-highlights h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}
.program-modal-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 13.5px;
    color: var(--text-dark);
}
.program-modal-highlights li {
    margin-bottom: 8px;
    line-height: 1.5;
}
.program-modal-info-box {
    background: rgba(30, 59, 43, 0.05);
    border-left: 4px solid #1e3b2b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.program-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-modal-primary {
    background: #1e3b2b;
    color: #f9f5e6;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: all 0.2s ease;
}
.btn-modal-primary:hover {
    background: #14281d;
    box-shadow: 0 6px 16px rgba(30, 59, 43, 0.25);
}
.btn-modal-secondary {
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.2s ease;
}
.btn-modal-secondary:hover {
    background: #1eb956;
}

/* ====================================================
   CONSOLIDATED AUTHENTICATION & PUBLIC MODULE STYLES
   ==================================================== */
body.auth-page {
    padding-top: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.auth-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 100vh;
    width: 100%;
}
.auth-container.single-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background-color: var(--bg-main);
}
.auth-container.single-panel .auth-form-panel {
    width: 100%;
    max-width: 460px;
    padding: 0;
    background: transparent;
}
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #a2e3bd;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}
.theme-toggle-btn svg {
    stroke: currentColor;
}
.theme-darkgreen .theme-toggle-btn {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}
.theme-darkgreen .theme-toggle-btn:hover {
    background: rgba(74, 222, 128, 0.28);
    color: #ffffff;
}
.auth-info-panel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0F172A 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.auth-info-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, transparent 70%);
    z-index: 1;
}
.auth-info-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1) 0%, transparent 70%);
    z-index: 1;
}
.auth-info-header .logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
    position: relative;
}
.auth-info-header .logo-wrap svg {
    width: 38px;
    height: 38px;
    fill: var(--primary);
}
.auth-info-content {
    margin: auto 0;
    z-index: 2;
    position: relative;
    max-width: 480px;
}
.auth-info-content h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff !important;
}
.auth-info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 40px;
}
.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.auth-info-footer {
    z-index: 2;
    position: relative;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: var(--bg-main);
}
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    transition: var(--transition);
}
.login-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.login-header {
    padding: 36px 36px 22px 36px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}
.login-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin: 0;
}
.login-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 0;
}
.role-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-main);
}
.role-tab {
    flex: 1;
    padding: 14px 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.role-tab:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}
.role-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: var(--bg-card);
}
.login-body {
    padding: 32px 36px;
}
.login-body .form-group {
    margin-bottom: 20px;
}
.login-body .form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.login-body .form-control {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
    box-sizing: border-box;
}
.login-body .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
.btn-login {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #ffffff !important;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}
.btn-login:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.3);
}
.auth-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 24px;
}
.auth-links-row .register-link {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.auth-links-row .register-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.auth-links-row .forgot-link {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.auth-links-row .forgot-link:hover {
    color: var(--primary);
    text-decoration: underline;
}
.login-footer {
    padding: 18px 24px;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
.login-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    .auth-info-panel {
        display: none;
    }
    .mobile-brand-header {
        display: block !important;
    }
    .auth-form-panel {
        flex-direction: column;
        padding: 32px 16px;
    }
    .login-card {
        max-width: 100%;
        border-radius: 16px;
    }
    .login-header, .login-body {
        padding: 24px 20px;
    }
}

/* Student Guide & Resources */
.student-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.student-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}
.student-header {
    text-align: center;
    margin-bottom: 50px;
}
.student-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.student-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.guide-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    margin-bottom: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
    box-shadow: var(--shadow-md);
}
.guide-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.guide-card-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guide-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}
.exam-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-left: auto;
}
.guide-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.resource-item {
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    text-decoration: none;
}
.resource-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
}
.resource-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.resource-icon {
    font-size: 24px;
}
.resource-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
}
.resource-dl {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    margin-left: 12px;
}
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    .guide-card {
        padding: 24px;
    }
}

/* Header & Mobile Drawer Navigation */
body {
    padding-top: 72px;
    font-family: 'Outfit', sans-serif;
}
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 33, 24, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    transition: height 0.3s ease;
}
.header-nav.shrunk {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    background-color: rgba(13, 33, 24, 0.99);
}
.header-nav.shrunk .header-container {
    height: 62px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    height: 100%;
}
.logo-wrap svg {
    width: 32px;
    height: 32px;
    fill: #78c89b;
    transition: var(--transition);
}
.logo-wrap img {
    max-height: 40px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.logo-wrap .logo-dark {
    display: block;
}
.logo-wrap .logo-light {
    display: none;
}
.theme-darkgreen .logo-wrap .logo-light {
    display: none;
}
.theme-darkgreen .logo-wrap .logo-dark {
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-link {
    color: rgba(232, 245, 238, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item.active .nav-link {
    color: #a2e3bd;
    background-color: rgba(255, 255, 255, 0.08);
}
.nav-item:hover .chevron-icon {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% - 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: #0d2118;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: rgba(232, 245, 238, 0.8);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 550;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #a2e3bd;
    padding-left: 22px;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-menu {
    width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 14px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-header-cta {
    background: #edf5f0 !important;
    color: #1e3b2b !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease !important;
}
.btn-header-cta:hover {
    background: #eae5d5 !important;
    color: #0d2118 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}
.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #e8f5ee;
    transition: var(--transition);
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #0d2118;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-drawer.open {
    right: 0;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}
.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(232,245,238,0.5);
}
.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.drawer-item {
    display: flex;
    flex-direction: column;
}
.drawer-link {
    font-size: 15px;
    font-weight: 700;
    color: rgba(232, 245, 238, 0.9);
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-submenu {
    display: none;
    padding-left: 12px;
    border-left: 2px solid rgba(74, 222, 128, 0.3);
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.drawer-submenu.open {
    display: flex;
}
.drawer-sublink {
    font-size: 13.5px;
    color: rgba(232, 245, 238, 0.55);
    text-decoration: none;
    padding: 6px 0;
    font-weight: 500;
}
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 0 14px;
    }
    .nav-actions {
        gap: 8px;
    }
    .btn-topbar-action {
        display: none !important;
    }
    .logo-wrap span {
        font-size: 19px;
    }
}

/* Support Page Styles */
.support-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.support-wrapper .support-container {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.support-header {
    text-align: center;
    margin-bottom: 50px;
}
.support-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.support-header p {
    font-size: 16px;
    color: var(--text-muted);
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.support-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-box-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}
.info-box-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.contact-row:last-child {
    margin-bottom: 0;
}
.contact-icon {
    font-size: 20px;
    background-color: var(--primary-light);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-text h4 {
    margin: 0 0 4px 0;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
}
.contact-text p {
    margin: 0;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}
.support-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}
.form-input:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
}
/* Tutors Page Styles */
.tutors-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.tutors-header {
    text-align: center;
    margin-bottom: 48px;
}
.tutors-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.tutors-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.filter-panel {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: end;
    transition: var(--transition);
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.filter-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    font-family: inherit;
    font-size: 14.5px;
    background-color: var(--bg-main);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}
.filter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    transition: all 0.4s ease;
}
.teacher-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, box-shadow 0.25s ease;
    opacity: 1;
    transform: scale(1);
}
.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.teacher-avatar-wrap {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.teacher-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.experience-badge {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background-color: #ffffff;
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.teacher-details {
    padding: 24px;
}
.teacher-branch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.teacher-branch-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}
.teacher-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.teacher-bio {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.empty-state {
    text-align: center;
    padding: 60px 24px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border-color);
    display: none;
}
.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--text-muted);
    font-size: 14.5px;
}
@media (max-width: 768px) {
    .filter-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Homepage Hero & Module Styles */
.hero-slider-wrapper {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    overflow: hidden;
    position: relative;
}
.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}
.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: white;
    padding: 20px;
    text-align: left;
}
.slide-caption h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}
.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #16A34A !important;
    width: 20px !important;
    border-radius: 4px !important;
}

.exam-circle {
    border: 1.5px solid #cbd5e1;
    flex-shrink: 0;
}
.exam-circle.passed {
    border: 2px dashed rgba(22, 163, 74, 0.25) !important;
}
.exam-circle.highlighted, .exam-circle:hover {
    background-color: #e8f4ec !important;
    border: 2px dashed #16A34A !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.12), 0 4px 6px -2px rgba(22, 163, 74, 0.06) !important;
}
.exam-circle:hover.active, .exam-circle.highlighted.active {
    border-style: solid !important;
}
.exam-circle:hover .exam-status, .exam-circle.highlighted .exam-status {
    color: #14532D !important;
}
.exam-circular-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    gap: 24px;
    margin-top: 32px;
    justify-content: flex-start;
    cursor: grab;
    user-select: none;
    box-sizing: border-box;
}
.exam-circular-row.grabbing {
    cursor: grabbing;
}
.exam-circular-row::-webkit-scrollbar {
    height: 6px;
}
.exam-circular-row::-webkit-scrollbar-track {
    background: transparent;
}
.exam-circular-row::-webkit-scrollbar-thumb {
    background: var(--border-color, #E2E8F0);
    border-radius: 10px;
}
.exam-circular-row::-webkit-scrollbar-thumb:hover {
    background: var(--primary, #16A34A);
}

.programs-slider-wrapper {
    position: relative;
    width: 100%;
}
.programs-slider-container {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 20px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.programs-slider-container::-webkit-scrollbar {
    display: none;
}
.programs-slider-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 19px);
    min-width: 300px;
    box-sizing: border-box;
}
@media (max-width: 992px) {
    .programs-slider-item {
        flex: 0 0 calc(50% - 14px);
    }
}
@media (max-width: 768px) {
    .programs-slider-container {
        gap: 16px;
        padding-bottom: 12px;
    }
    .programs-slider-item {
        flex: 0 0 82%;
        min-width: 260px;
        max-width: 320px;
    }
    .feature-program-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    .feature-program-card h3 {
        font-size: 19px !important;
        margin-bottom: 8px !important;
    }
    .feature-program-card p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
    }
}
.slider-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    transition: all 0.2s ease;
    user-select: none;
}
.slider-nav-btn:hover {
    background-color: #16a34a !important;
    color: #ffffff !important;
    border-color: #16a34a !important;
}

.gallery-slider::-webkit-scrollbar {
    height: 6px;
}
.gallery-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}
.gallery-slider::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}
.gallery-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
.gallery-item-link:hover .gallery-item-card {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.gallery-item-link:hover img {
    transform: scale(1.05);
}
.gallery-item-link:hover .gallery-overlay {
    opacity: 1 !important;
}

.video-teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.video-teacher-card:hover .thumb-zoom {
    transform: scale(1.05);
    opacity: 0.75 !important;
}
/* Register Page Styles */
.register-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transition: var(--transition);
}
.register-card:hover {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}
.register-header {
    padding: 32px 40px 24px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}
.register-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}
.register-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 6px;
}
.role-selector-wrap {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}
.role-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    cursor: pointer;
    transition: all var(--transition);
    background: #fafdfc;
}
.role-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}
.role-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}
.role-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.role-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.role-card p {
    font-size: 12px;
    color: var(--text-muted);
}
.register-body {
    padding: 32px 40px;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.register-footer {
    padding: 20px;
    background: #fafdfc;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13.5px;
    color: var(--text-muted);
}
.register-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.register-footer a:hover {
    text-decoration: underline;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    cursor: pointer;
}
.checkbox-label input {
    margin-top: 3px;
}
.section-divider {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin: 24px 0 16px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.file-input-info {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Online Courses Page Styles */
.courses-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.courses-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.courses-header {
    text-align: center;
    margin-bottom: 50px;
}
.courses-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.courses-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.course-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.course-icon-box {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-sans, sans-serif);
}
.course-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.course-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.course-action {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 8px 16px;
    background-color: var(--primary-light, #e8f5ee);
    border-radius: 8px;
    align-self: flex-start;
}
.course-card:hover .course-action {
    gap: 10px;
    background-color: var(--primary);
    color: #ffffff;
}
.cta-banner {
    background: #1e3b2b;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    color: #f9f5e6;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #f9f5e6;
}
/* Blog Page Styles */
.blog-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.blog-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}
.blog-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.blog-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.blog-cats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.blog-cat-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.blog-cat-btn.active, .blog-cat-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-img-box {
    height: 200px;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}
/* Blog Detail Page Styles */
.blog-detail-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.blog-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 48px;
    align-items: flex-start;
}
.blog-post-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.blog-main-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.blog-post-content {
    padding: 40px;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}
.blog-detail-category {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-post-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 24px;
}
.blog-body-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}
.blog-body-text p {
    margin-bottom: 20px;
}
.blog-body-text h2, .blog-body-text h3 {
    color: var(--primary-dark);
    margin: 32px 0 16px 0;
    font-weight: 700;
}
.blog-body-text ul, .blog-body-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.blog-body-text li {
    margin-bottom: 8px;
}
.sidebar-widget {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    overflow: visible;
}
.rec-blog-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}
.rec-blog-item:last-child {
    margin-bottom: 0;
}
.rec-blog-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.rec-blog-info h4 {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.rec-blog-info h4 a:hover {
    color: var(--primary);
}
.rec-blog-date {
    font-size: 11px;
    color: var(--text-muted);
}
.form-title-small {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
}
.theme-darkgreen .blog-post-title,
.theme-darkgreen .blog-body-text h2,
.theme-darkgreen .blog-body-text h3,
.theme-darkgreen .widget-title,
.theme-darkgreen .rec-blog-info h4,
.theme-darkgreen .form-title-small {
    color: var(--text-dark) !important;
}
/* Standalone FAQ (SSS) Page Styles */
.faq-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.faq-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.faq-header p {
    font-size: 16px;
    color: var(--text-muted);
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover, .faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-icon {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(22, 163, 74, 0.02);
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
}
.faq-answer-content {
    padding: 0 24px 24px 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid transparent;
}
/* Exam Countdown SEO Article Styles */
.custom-seo-article {
    line-height: 1.8;
    font-size: 15.5px;
    color: var(--text-dark);
}
.custom-seo-article h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 28px 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(30,59,43,0.12);
}
.custom-seo-article h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3b2b;
    margin: 24px 0 12px 0;
}
.custom-seo-article p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 28px 0;
}
.strategy-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}
.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.strategy-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}
.strategy-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}
.strategy-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.tip-box {
    background: rgba(30,59,43,0.06);
    border-left: 4px solid #1e3b2b;
    border-radius: 14px;
    padding: 20px 24px;
    margin: 32px 0;
}
/* Score Calculator & Level Placement Styles */
.calc-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.calc-container {
    max-width: 1000px;
    margin: 0 auto;
}
.calc-header {
    text-align: center;
    margin-bottom: 40px;
}
.calc-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.calc-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}
.calc-tab-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.calc-tab-btn.active, .calc-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}
.calc-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.calc-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}
.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.calc-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.calc-item label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.input-group {
    display: flex;
    gap: 8px;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-sans);
    font-size: 13px;
    text-align: center;
}
.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}
.obp-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}
.results-box {
    display: none;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-card) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-top: 40px;
    animation: fadeIn 0.4s ease-in-out;
}
.results-header {
    text-align: center;
    margin-bottom: 24px;
}
.results-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.result-card-inner {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
}
.result-card-inner h5 {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.result-card-inner h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}
.recommendation-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    margin-bottom: 30px;
}
.recommendation-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.recommendation-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}
.level-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
}
.level-temel { background-color: var(--warning-light); color: var(--warning); }
.level-orta { background-color: var(--info-light); color: var(--info); }
.level-ileri { background-color: var(--success-light); color: var(--success); }

.lead-form-box {
    border-top: 1px dashed var(--border-color);
    padding-top: 24px;
}
.lead-form-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-align: center;
}
@media (max-width: 768px) {
    .calc-grid, .results-grid, .obp-container {
        grid-template-columns: 1fr;
    }
    .calc-tabs {
        flex-direction: column;
    }
}
.theme-darkgreen .calc-header h1,
.theme-darkgreen .calc-section-title,
.theme-darkgreen .results-header h3,
.theme-darkgreen .recommendation-box h4,
.theme-darkgreen .lead-form-box h4 {
    color: var(--text-dark) !important;
}
.theme-darkgreen .calc-tab-btn {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-muted);
}
.theme-darkgreen .calc-tab-btn.active {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}
/* Teacher Profile Page Styles */
.teacher-profile-wrapper {
    background-color: var(--bg-main);
    min-height: 100vh;
    padding-bottom: 60px;
}
.profile-cover-section {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.profile-cover {
    height: 240px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cover-tag {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.cover-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
}
.profile-info-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 20px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}
.profile-avatar-wrap {
    margin-top: -60px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}
.profile-name-block {
    flex: 1;
    padding-bottom: 4px;
    min-width: 200px;
}
.profile-name-block h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}
.profile-role-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 6px 0;
}
.profile-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-muted);
}
.profile-cta-btn {
    background: var(--primary);
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-colored);
}
.profile-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}
.profile-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
}
.profile-nav-tab {
    padding: 14px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.profile-nav-tab.active, .profile-nav-tab:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.profile-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
}
@media(max-width: 768px) {
    .profile-main { grid-template-columns: 1fr; }
    .profile-cover { height: 160px; }
    .profile-info-bar { flex-direction: column; align-items: center; text-align: center; padding-top: 10px; }
    .profile-avatar-wrap { margin-top: -45px; }
    .profile-avatar { width: 110px; height: 110px; }
    .profile-name-block { text-align: center; }
    .profile-meta-line { justify-content: center; }
    .profile-nav { justify-content: center; }
}
.pcard {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pcard-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pcard-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}
.pcard-body { padding: 20px; }

.info-list { list-style: none; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.info-list li:last-child { border-bottom: none; }
.info-icon { font-size: 18px; flex-shrink: 0; }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.stats-strip {
    display: flex;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    background: var(--bg-card);
}
.stat-box {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--primary); }
.stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.pcard-body .timeline-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.pcard-body .timeline-item:last-child { border-bottom: none; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); margin-top: 5px; flex-shrink: 0; }
.timeline-content h5 { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.timeline-content p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Hakkımızda Page Styles */
.about-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.about-hero {
    text-align: center;
    margin-bottom: 60px;
}
.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 12px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.about-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
    align-items: center;
}
.story-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.story-p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}
.stat-item h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.stat-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}
.story-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.story-illustration {
    width: 100%;
    max-width: 380px;
    height: auto;
    opacity: 0.95;
}
.values-section {
    margin-bottom: 60px;
}
.values-header {
    text-align: center;
    margin-bottom: 40px;
}
.values-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 8px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.25s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}
.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}
.value-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.team-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}
.team-header {
    text-align: center;
    margin-bottom: 36px;
}
.team-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 8px;
}
.team-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 10px auto 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}
.team-member {
    text-align: center;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.25s ease;
}
.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.member-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--primary-light);
}
.member-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.member-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}
/* Nasıl Çalışır Page Styles */
.how-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.how-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.how-header {
    text-align: center;
    margin-bottom: 60px;
}
.how-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.how-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.timeline {
    position: relative;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline .timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    border-bottom: none;
    display: block;
    box-sizing: border-box;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: #ffffff;
    border: 4px solid var(--primary);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
}
.timeline-item.right::after {
    left: -12px;
}
.timeline-content {
    padding: 30px;
    background-color: var(--bg-card);
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.timeline-item:hover::after {
    background-color: var(--primary);
}
.step-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.8;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.step-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item.left {
        text-align: left;
    }
    .timeline-item.right {
        left: 0%;
    }
}
/* Veli Bilgilendirme Page Styles */
.parent-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.parent-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.parent-header {
    text-align: center;
    margin-bottom: 50px;
}
.parent-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.parent-header p {
    font-size: 16px;
    color: var(--text-muted);
}
.feature-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.feature-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}
.feature-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.feature-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.feature-img-box {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.checklist li {
    font-size: 14.5px;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.checklist li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
    font-size: 16px;
}



/* ====================================================
   PREMIUM KARİYER & EĞİTMEN ALIMI STYLES
   ==================================================== */
.career-wrapper {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}
.career-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.career-header {
    text-align: center;
    margin-bottom: 50px;
}
.career-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 12px;
}
.career-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.career-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.career-card.margin-bottom-lg {
    margin-bottom: 35px;
}
.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.benefit-icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.benefit-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.jobs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.job-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 28px;
    transition: var(--transition);
}
.job-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 20px rgba(30, 59, 43, 0.08);
}
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.job-type-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.job-header h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.job-location {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.job-desc {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 992px) {
    .career-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 576px) {
    .career-benefits-grid {
        grid-template-columns: 1fr;
    }
    .career-card {
        padding: 24px 18px;
    }
    .career-header h1 {
        font-size: 28px;
    }
}
