/* Balim Akademi - Custom Styles */
:root {
    --primary: #1A1A1A;
    --primary-dark: #0D0D0D;
    --primary-light: #F5A623;
    --secondary: #FFB800;
    --accent: #F5A623;
    --accent-hover: #E09500;
    --success: #16A34A;
    --text: #1A1A1A;
    --text-muted: #5C5C5C;
    --bg-light: #FAF8F3;
    --bg-white: #FFFFFF;
    --border: #E8E4DC;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: clip;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

.section-padding { padding: 80px 0; }

.section-header { margin-bottom: 48px; }

.section-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.14);
    color: var(--accent-hover);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 640px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    padding: 8px 0;
}

.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; }

.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.top-bar-info a,
.top-bar-info span {
    white-space: nowrap;
    flex-shrink: 0;
}
.top-bar-info i { margin-right: 6px; color: var(--accent); }
.top-bar-social { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
.top-bar-social a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.top-bar-social a:hover { background: var(--accent); color: #fff; }

/* Navbar */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--border);
    transition: var(--transition);
}

.main-navbar.scrolled {
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar-brand {
    margin-right: 1rem;
    max-width: min(420px, 55vw);
}

.navbar-brand img { transition: var(--transition); }
.navbar-brand .site-logo {
    height: 88px;
    width: auto;
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-light) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 8px !important;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9375rem;
}

.dropdown-item:hover {
    background: rgba(245, 166, 35, 0.12);
    color: var(--accent-hover);
}

.btn-cta {
    background: var(--accent);
    border: none;
    color: #111;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--accent-hover);
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-primary {
    background: var(--primary-light);
    border: none;
    color: #111;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #111;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #111;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

/* Hero */
.hero-section {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #FAF8F3 0%, #FFF8E7 50%, #FAF8F3 100%);
    overflow: hidden;
    transition: background 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-pdf-section {
    padding: 0;
    background: #0b0b0b;
    height: calc(100dvh - 180px);
    max-height: 560px;
    min-height: 260px;
    overflow: hidden;
}

.hero-pdf-section::before,
.hero-pdf-section::after {
    display: none;
}

.hero-pdf-section .hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-pdf-section .hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-pdf-section .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: 0;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-pdf-section .hero-slide.is-enter-right {
    transform: translate3d(100%, 0, 0);
    transition: none;
    z-index: 3;
}

.hero-pdf-section .hero-slide.is-enter-left {
    transform: translate3d(-100%, 0, 0);
    transition: none;
    z-index: 3;
}

.hero-pdf-section .hero-slide.is-leave-left {
    transform: translate3d(-100%, 0, 0);
    z-index: 1;
}

.hero-pdf-section .hero-slide.is-leave-right {
    transform: translate3d(100%, 0, 0);
    z-index: 1;
}

.hero-pdf-section .hero-slide.is-active {
    position: relative;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    z-index: 2;
}

.hero-pdf-frame,
.hero-pdf-canvas,
.hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #0b0b0b;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 991.98px) {
    .hero-pdf-section {
        height: auto;
        min-height: 0;
        max-height: none;
        margin: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
    }

    .hero-pdf-section .hero-slider {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        max-height: 82vh;
        min-height: 280px;
        overflow: hidden;
        background: #fff;
    }

    .hero-pdf-section .hero-slider-track {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #fff;
    }

    .hero-pdf-section .hero-slide,
    .hero-pdf-section .hero-slide.is-active {
        position: absolute;
        inset: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
        background: #fff;
    }

    .hero-pdf-frame,
    .hero-pdf-canvas,
    .hero-slide-image {
        display: block;
        width: 100% !important;
        max-width: 100%;
        height: 100% !important;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        background: #fff !important;
        margin: 0 auto;
    }

    .hero-slider-controls {
        bottom: 10px;
    }

    .hero-pdf-section .hero-dot {
        background: rgba(0, 0, 0, 0.22);
    }

    .hero-pdf-section .hero-dot.is-active {
        background: var(--primary-light);
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        top: 50%;
    }

    .hero-nav-prev { left: 8px; }
    .hero-nav-next { right: 8px; }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35,0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.hero-slide.is-active {
    pointer-events: auto;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.12);
    color: var(--accent-hover);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-title span { color: var(--primary-light); }

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.hero-trust-item i {
    color: var(--success);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 { bottom: 30px; left: -20px; }
.hero-float-card.card-2 { top: 30px; right: -10px; animation-delay: 1.5s; }

.hero-float-card .icon {
    width: 44px; height: 44px;
    background: rgba(245, 166, 35,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
}

.hero-float-card strong { display: block; font-size: 0.9375rem; }
.hero-float-card span { font-size: 0.75rem; color: var(--text-muted); }

/* Hero Slide 2 - sarı / siyah marka */
.hero-section.is-brand {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 45%, #2a2108 100%);
}

.hero-section.is-brand::before {
    background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
}

.hero-section.is-brand::after {
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero-slide--brand .hero-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
}

.hero-slide--brand .hero-title {
    color: #fff;
}

.hero-slide--brand .hero-subtitle {
    color: rgba(255,255,255,0.72);
}

.hero-slide--brand .hero-trust-item {
    color: rgba(255,255,255,0.9);
}

.hero-slide--brand .hero-trust-item i {
    color: #FBBF24;
}

.btn-brand {
    background: #F59E0B;
    border-color: #F59E0B;
    color: #111;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 28px;
}

.btn-brand:hover {
    background: #FBBF24;
    border-color: #FBBF24;
    color: #111;
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid #F59E0B;
    color: #FBBF24;
    font-weight: 600;
    border-radius: 12px;
    padding: 11px 26px;
}

.btn-outline-brand:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    color: #111;
}

.hero-image-wrapper--brand {
    background: #0a0a0a;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.hero-image-wrapper--brand img {
    object-fit: contain;
    background: #f7f4ee;
}

.hero-slide--brand .hero-float-card .icon {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary-light);
}

.hero-section.is-brand .hero-dot {
    background: rgba(255,255,255,0.28);
}

.hero-section.is-brand .hero-dot.is-active {
    background: #F59E0B;
}

.hero-pdf-section .hero-dot {
    background: rgba(255,255,255,0.35);
}

.hero-pdf-section .hero-dot.is-active {
    background: #F59E0B;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.hero-nav:hover {
    background: #F59E0B;
    color: #111;
}

.hero-nav-prev { left: 16px; }
.hero-nav-next { right: 16px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Trust Badges Row */
.trust-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    display: block;
}

.trust-item h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Grade Cards (legacy fallback) */
.grade-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.grade-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--grade-color, var(--primary-light));
}

.grade-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.grade-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--grade-color, var(--primary-light));
    line-height: 1;
    margin-bottom: 8px;
}

.grade-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.grade-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.grade-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.9375rem;
}

.grade-link:hover { gap: 10px; color: var(--primary); }

.grade-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, #fff 40%);
}

.grade-card.featured .featured-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: #111;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Programs Showcase */
.programs-showcase {
    background:
        radial-gradient(circle at top right, rgba(245,166,35,0.12), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0,0,0,0.04), transparent 35%),
        var(--bg-light);
}

.program-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: rgba(245,166,35,0.45);
}

.program-card.is-featured {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(245,166,35,0.18);
}

.program-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #111;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.program-card-top {
    background: linear-gradient(145deg, #111 0%, #1a1a1a 55%, #2a2108 100%);
    color: #fff;
    padding: 28px 24px 24px;
    min-height: 150px;
}

.program-card-grade {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}

.program-card-num.is-lgs {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
}

.program-card-unit {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.program-card-kicker {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.45;
}

.program-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.35;
}

.program-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 16px;
    line-height: 1.55;
    min-height: 2.7em;
}

.program-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.program-card-tags span {
    background: rgba(245,166,35,0.14);
    color: #1a1a1a;
    font-size: 0.71875rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}

.program-card-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.program-card-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.program-card-points li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.program-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition);
}

.program-card-btn:hover {
    background: var(--accent);
    color: #111;
    gap: 12px;
}

.programs-note {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.programs-note-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(245,166,35,0.15);
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.programs-note strong {
    display: block;
    margin-bottom: 4px;
}

.programs-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.programs-note > div:nth-child(2) {
    flex: 1;
    min-width: 220px;
}

.programs-note .btn {
    flex-shrink: 0;
}

/* About Short */
.about-short {
    background: var(--bg-light);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.about-image--banner {
    background: #f7f4ee;
}

.about-image--banner img {
    min-height: 0;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.about-feature i { color: var(--success); }

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(245, 166, 35,0.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-light);
    color: #111;
}

.feature-card h5 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* Timeline / Education Model */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-step {
    position: relative;
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-number {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    margin: 0 auto 16px;
}

.timeline-step h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Subject Cards */
.subject-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}

.subject-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.subject-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.subject-card h6 {
    font-size: 1rem;
    margin: 0;
}

/* Program Preview */
.program-preview {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.program-preview:hover {
    box-shadow: var(--shadow-md);
}

.program-preview-image {
    height: 200px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2108 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-preview-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.program-preview-image .grade-overlay {
    position: absolute;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
}

.program-preview-body { padding: 24px; }

.program-preview-body h4 { font-size: 1.125rem; margin-bottom: 8px; }
.program-preview-body p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 16px; }

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.program-tag {
    background: rgba(245, 166, 35,0.14);
    color: #1A1A1A;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Statistics */
.stats-section {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 55%, #2A2108 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.85;
}

.stat-icon {
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 12px;
}

/* Teacher Cards */
.teacher-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teacher-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.teacher-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--bg-light);
    flex-shrink: 0;
}

.teacher-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.teacher-info h5 { font-size: 1.0625rem; margin-bottom: 4px; }

.teacher-branch {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.teacher-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    min-height: 2.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Parent Section */
.parent-section {
    background: var(--bg-light);
}

.parent-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.parent-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.parent-feature i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 2px;
}

.parent-feature h6 { font-size: 0.9375rem; margin-bottom: 4px; }
.parent-feature p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

/* Assessment Cards */
.assessment-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.assessment-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.assessment-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}

.assessment-card h5 { font-size: 1rem; margin-bottom: 8px; }
.assessment-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Guidance */
.guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    font-weight: 500;
}

.guidance-list li:last-child { border-bottom: none; }

.guidance-list i { color: var(--success); font-size: 1.125rem; }

/* Gallery */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.gallery-filter {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.gallery-filter.active, .gallery-filter:hover {
    background: var(--primary-light);
    color: #111;
    border-color: var(--primary-light);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: transparent;
    line-height: 0;
    display: block;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: #fff; font-size: 2rem; }

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    height: 100%;
}

.testimonial-demo-badge {
    display: inline-block;
    background: rgba(245,158,11,0.12);
    color: var(--accent-hover);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

.testimonial-stars { color: var(--accent); margin-bottom: 16px; }

/* FAQ */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    background: var(--bg-white);
    color: var(--text);
}

.accordion-button:not(.collapsed) {
    background: rgba(245, 166, 35,0.12);
    color: #1A1A1A;
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; border-color: var(--border); }

.accordion-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
}

.accordion-body > *:first-child { margin-top: 0; }
.accordion-body > *:last-child { margin-bottom: 0; }

.accordion-body p {
    margin: 0 0 0.75rem;
}

.accordion-body p:last-child { margin-bottom: 0; }

.accordion-body p:empty,
.accordion-body p:has(> br:only-child) {
    display: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2A2108 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.85;
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-1px);
}

/* Contact */
.contact-info-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item .icon {
    width: 48px; height: 48px;
    background: rgba(245, 166, 35,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: 0.9375rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(245, 166, 35,0.1);
}

.form-label { font-weight: 500; font-size: 0.9375rem; }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.85;
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-top: 16px;
    opacity: 0.7;
}

.breadcrumb-nav a { color: #fff; }
.breadcrumb-nav a:hover { opacity: 1; }

/* Program Detail */
.program-hero {
    background:
        radial-gradient(circle at top right, rgba(245,166,35,0.14), transparent 42%),
        linear-gradient(180deg, #FAF8F3 0%, #fff 100%);
    padding: 70px 0 60px;
}

.program-hero .breadcrumb-nav {
    justify-content: flex-start;
    opacity: 1;
    margin-bottom: 16px;
}

.program-hero .breadcrumb-nav a { color: var(--text-muted); }
.program-hero .breadcrumb-nav a:hover { color: var(--accent-hover); }

.program-hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.program-hero-visual img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
}

.program-hero-grade {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(17,17,17,0.88);
    color: #fff;
    border: 1px solid rgba(245,166,35,0.45);
    border-radius: 16px;
    padding: 12px 16px;
    backdrop-filter: blur(8px);
}

.program-hero-grade strong.is-lgs {
    font-size: 1.25rem;
}

.program-hero-grade span {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.program-detail-content { padding: 60px 0; }

.content-block { margin-bottom: 40px; }

.content-block h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(245,166,35,0.25);
}

.advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.advantage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.advantage-list li:hover {
    border-color: rgba(245,166,35,0.35);
    background: #fff;
}

.advantage-list li i { color: var(--accent); }

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.sidebar-program-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    color: inherit;
}

.sidebar-program-link:hover {
    border-color: var(--accent);
    background: rgba(245,166,35,0.06);
    color: inherit;
}

.sidebar-program-link .grade {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #111;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.sidebar-program-link .grade.is-lgs {
    font-size: 0.7rem;
    letter-spacing: 0;
}

/* Float Buttons */
.float-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-float,
.phone-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 56px;
    height: 56px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.phone-float {
    background: #F5A623;
    box-shadow: 0 4px 16px rgba(245,166,35,0.45);
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.phone-float:hover {
    box-shadow: 0 6px 24px rgba(245,166,35,0.55);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.footer-links a:hover { color: #fff; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
}
.footer-contact i { color: var(--accent); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.footer-social a:hover { background: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.875rem;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-legal a:hover { color: #fff; }

.footer-powered { font-size: 0.8125rem; }
.footer-powered a { color: rgba(255,255,255,0.5); }
.footer-powered a:hover { color: #fff; }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Animations - icerik her zaman gorunur */
.fade-up,
.fade-up.visible {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.375rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p, .legal-content li {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* PDF Download Cards */
.pdf-download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.pdf-download-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}

.pdf-download-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.pdf-download-body h5 {
    margin: 0 0 6px;
    font-size: 1.0625rem;
    font-weight: 700;
}

.pdf-download-body p {
    margin: 0 0 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pdf-download-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1199px) {
    .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .section-padding { padding: 48px 0; }
    .section-header { margin-bottom: 28px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-float-card { display: none; }
    .advantage-list { grid-template-columns: 1fr 1fr; }
    .parent-features,
    .about-features { grid-template-columns: 1fr 1fr; }

    .top-bar {
        padding: 7px 0;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    .top-bar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .top-bar .container > .d-flex {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        min-height: 28px;
    }
    .top-bar-info {
        flex: 1;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .top-bar-info::-webkit-scrollbar { display: none; }
    .top-bar-info a,
    .top-bar-info span {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        flex: 0 0 auto;
        width: max-content;
        max-width: none;
        word-break: keep-all;
        overflow-wrap: normal;
    }
    .top-bar-info a[href^="mailto"],
    .top-bar-info span { display: none; }
    .top-bar-social { flex-shrink: 0; }
    .top-bar-social a {
        width: 26px;
        height: 26px;
    }

    .navbar-brand {
        max-width: min(280px, 68vw);
    }

    .navbar-brand .site-logo {
        height: 72px;
        max-height: 72px;
        max-width: 100%;
    }

    .footer-logo {
        height: 68px;
        max-width: 240px;
    }

    .trust-item { padding: 14px 10px; }
    .trust-item i { font-size: 1.5rem; margin-bottom: 8px; }
    .trust-item h6 { font-size: 0.8125rem; }
    .trust-item p { font-size: 0.75rem; }

    .feature-card,
    .assessment-card {
        padding: 18px 12px;
        border-radius: 16px;
    }
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    .feature-card h5,
    .assessment-card h5 { font-size: 0.875rem; }
    .feature-card p,
    .assessment-card p {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .program-card-desc,
    .program-card-points { display: none; }
    .program-card-top { min-height: 0; padding: 16px 14px 12px; }
    .program-card-body { padding: 14px; }
    .program-card-title { font-size: 0.8125rem; margin-bottom: 8px; }
    .program-card-kicker { font-size: 0.75rem; }
    .program-card-num { font-size: 2rem; }
    .program-card-btn { padding: 8px 10px; font-size: 0.75rem; }
    .program-card-badge { top: 8px; right: 8px; font-size: 0.625rem; padding: 4px 8px; }
    .program-card-tags span:nth-child(n+3) { display: none; }

    .teacher-info { padding: 12px 10px; }
    .teacher-info h5 { font-size: 0.8125rem; }
    .teacher-branch { font-size: 0.75rem; margin-bottom: 0; }
    .teacher-info p { display: none; }

    .parent-feature { padding: 12px; }
    .parent-feature h6 { font-size: 0.8125rem; }
    .parent-feature p { font-size: 0.75rem; }

    .timeline-step { padding: 16px 14px; }
    .timeline-step h5 { font-size: 0.875rem; }
    .timeline-step p { font-size: 0.75rem; }

    .testimonial-card { padding: 16px 14px; }
    .testimonial-content { font-size: 0.8125rem; }

    .cta-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .cta-buttons .btn { width: 100%; }
    .footer-title { font-size: 0.9375rem; }
    .footer-links,
    .footer-contact { font-size: 0.8125rem; }
}

@media (max-width: 767px) {
    .section-padding { padding: 36px 0; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-section:not(.hero-pdf-section) { padding: 40px 0 60px; }
    .cta-section { padding: 36px 16px; }
    .contact-form, .contact-info-card { padding: 24px; }
    .navbar-cta { margin-top: 12px; }
    .navbar-cta .btn { width: 100%; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .advantage-list { grid-template-columns: 1fr 1fr; }
    .programs-note { padding: 16px; gap: 12px; }
    .programs-note .btn { width: auto; padding: 10px 16px; font-size: 0.8125rem; }
    .row.g-4 { --bs-gutter-x: 0.75rem; --bs-gutter-y: 0.75rem; }
    .row.g-5 { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.25rem; }
}

@media (max-width: 575px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .hero-buttons { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-buttons .btn { width: 100%; text-align: center; font-size: 0.8125rem; padding: 10px 12px; }
    .program-card-num { font-size: 1.75rem; }
    .cta-buttons .btn { font-size: 0.8125rem; padding: 10px 8px; }
}
