@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Geleceğim Ol Logo */
    --primary-color: #203a89;
    --secondary-color: #00a2cc;
    --accent-color: #b89628;
    
    /* Neutral Colors */
    --bg-light: #f6f8f9;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --border-color: #e2e8f0;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 10px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.10);
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all var(--transition-speed) ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

p { margin-bottom: 0.6rem; }

.section-title {
    text-align: center;
    font-size: 1.65rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #008aad;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,162,204,0.35);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: #172d6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(32,58,137,0.35);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,162,204,0.25);
}

/* ── Topbar ── */
.topbar {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.85);
    padding: 7px 0;
    font-size: 0.8rem;
    font-weight: 500;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-info span { margin-right: 20px; display: inline-flex; align-items: center; gap: 6px; }
.topbar-info span i { color: var(--accent-color); font-size: 0.75rem; }
.topbar-social a { color: rgba(255,255,255,0.85); margin-left: 14px; font-size: 0.95rem; }
.topbar-social a:hover { color: var(--accent-color); }
.hide-mobile { }

/* ── Header ── */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-speed) ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 70px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 11px;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active,
.nav-item.active > .nav-link {
    color: var(--secondary-color);
    background: rgba(0,162,204,0.07);
}
.nav-link i {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}
.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid var(--border-color);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.dropdown li a {
    display: block;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.dropdown li a:hover,
.dropdown li a.active {
    background: rgba(0,162,204,0.07);
    color: var(--secondary-color);
    padding-left: 20px;
}

/* Nested Sub-Dropdown */
.dropdown .has-submenu { position: relative; }
.dropdown .has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.dropdown .has-submenu > a i {
    font-size: 0.5rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}
.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s ease;
    border: 1px solid var(--border-color);
    z-index: 101;
}
.dropdown .has-submenu:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(4px);
}
.sub-dropdown li a {
    display: block;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.sub-dropdown li a:hover,
.sub-dropdown li a.active {
    background: rgba(0,162,204,0.07);
    color: var(--secondary-color);
    padding-left: 20px;
}

/* Donate button */
.nav-donate { margin-left: 6px; }
.nav-donate .nav-link {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    gap: 6px;
}
.nav-donate .nav-link:hover {
    background: #008aad;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,162,204,0.3);
}
.nav-donate .nav-link i { font-size: 0.8rem; }
.nav-volunteer { margin-left: 4px; }
.nav-volunteer .nav-link {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 6px 16px;
}
.nav-volunteer .nav-link:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32,58,137,0.25);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
}
/* ── Page Header (Subpages) ── */
.page-header {
    background: linear-gradient(135deg, rgba(32,58,137,0.92), rgba(32,58,137,0.85)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 100px 20px 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-content { max-width: 720px; padding: 0 20px; animation: fadeInUp 0.8s ease; }
.hero-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 400;
    opacity: 0.92;
    line-height: 1.75;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,0.3); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
}
.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.25);
}

/* ── Stats Section ── */
.stats-section {
    background: var(--primary-color);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-icon { font-size: 2rem; color: var(--accent-color); margin-bottom: 10px; }
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ── Atatürk Köşesi ── */
.ataturk-section {
    background: linear-gradient(135deg, #0f1f3d 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}
.ataturk-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}
.ataturk-img {
    width: 200px;
    height: 260px;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.15);
}
.ataturk-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
    opacity: 0.92;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 16px;
}
.ataturk-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

/* ── Etkinlikler ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.event-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}
.event-body {
    padding: 20px;
}
.event-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.event-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Tüzük ── */
.tuzuk-banner {
    background: linear-gradient(135deg, var(--primary-color), #0f1f3d);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.tuzuk-banner h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.tuzuk-banner p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.tuzuk-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.tuzuk-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.tuzuk-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}


/* ── Features / Hizmetlerimiz ── */
.features {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.feature-icon { font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 16px; }
.feature-title { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ── Section Padding ── */
.section-padding { padding: 60px 0; }

/* ── About Grid ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-content p { font-size: 0.9rem; }

.vision-box {
    background-color: var(--white);
    padding: 22px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--secondary-color);
}
.vision-box h3 { font-size: 1.05rem; margin-bottom: 8px; }
.vision-box h3 i { margin-right: 6px; }
.vision-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* ── Check List ── */
.check-list { list-style: none; padding: 0; }
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}
.check-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 0.85rem;
}
.light-list li { color: rgba(255,255,255,0.88); }
.light-list li i { color: var(--accent-color); }

.values-list h3 { font-size: 1.25rem; margin-bottom: 16px; }

/* ── Simple List ── */
.simple-list { list-style: none; padding: 0; margin-top: 12px; }
.simple-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.simple-list li:last-child { border-bottom: none; }

/* ── Achievements ── */
.achievements-section .section-title::after { background-color: var(--accent-color); }

/* ── Timeline ── */
.timeline-container {
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(0,0,0,0.05);
}
.timeline-container::-webkit-scrollbar {
    height: 6px;
}
.timeline-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}
.timeline-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}
.timeline {
    display: flex;
    gap: 24px;
    position: relative;
    min-width: max-content;
    padding-top: 30px;
    padding-bottom: 10px;
}
.timeline::after {
    content: '';
    position: absolute;
    height: 3px;
    background-color: var(--secondary-color);
    top: 15px; left: 0; right: 0;
    border-radius: 3px;
    width: 100%;
}
.timeline-item {
    position: relative;
    width: 300px;
    padding-top: 10px;
}
.timeline-dot {
    position: absolute;
    width: 16px; height: 16px;
    background-color: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    left: 50%; top: -23px;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-content {
    background-color: var(--white);
    padding: 22px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.timeline-content h3 { font-size: 1.05rem; margin-bottom: 10px; text-align: center; color: var(--primary-color); }
.timeline-content ul {
    list-style-type: disc;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.timeline-content ul li { margin-bottom: 5px; }

/* ── Team Grid ── */
.team-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.tier-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}
.tier-1 .team-card { border-top-color: var(--accent-color); }
.tier-1 .team-name { font-size: 1.3rem; }
.tier-1 .team-avatar { width: 100px; height: 100px; }
.team-card {
    background-color: var(--white);
    padding: 28px 18px 22px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: block;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}
.team-name { font-weight: 700; font-size: 1.15rem; color: var(--primary-color); margin-bottom: 4px; }
.team-role {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.85rem;
    display: inline-block;
    background: rgba(184,150,40,0.1);
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.team-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}
.team-bio.open {
    max-height: 300px;
    padding: 12px 4px 4px;
}
.team-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 18px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-color);
    background: var(--white);
    transition: all var(--transition-speed) ease;
    font-family: var(--font-primary);
}
.team-bio-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.team-bio-toggle i { font-size: 0.75rem; transition: transform 0.3s ease; }
.team-bio-toggle.open i { transform: rotate(180deg); }
/* ── Footer ── */
.footer {
    background: linear-gradient(180deg, #0f1f3d 0%, #0a152e 100%);
    color: #cbd5e1;
    padding: 56px 0 20px;
    font-size: 0.85rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.footer-row {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 0;
    margin-top: 4px;
}
.footer-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-row-left span {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-social-row a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}
.footer-social-row a:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,162,204,0.3);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 14px;
    background: rgba(255,255,255,0.06);
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.footer-logo:hover { background: rgba(255,255,255,0.12); }
.footer-logo i { color: var(--secondary-color); font-size: 1.2rem; }
.footer-brand p { opacity: 0.65; line-height: 1.7; margin-bottom: 14px; font-size: 0.82rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.3px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-weight: 400;
    font-size: 0.82rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.footer-links a i { font-size: 0.6rem; color: var(--secondary-color); opacity: 0.5; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover i { opacity: 1; padding-right: 2px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
    font-size: 0.82rem;
    color: #94a3b8;
}
.footer-contact i {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.footer-bottom a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--secondary-color); text-decoration: underline; }

.president-section {
    background-color: var(--white);
}
.president-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
.president-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.president-signature {
    margin-top: 30px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.president-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.president-img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}
.president-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.president-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .president-wrapper {
        grid-template-columns: 1fr;
    }
}

.president-section {
    background-color: var(--white);
}
.president-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
.president-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.president-signature {
    margin-top: 30px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.president-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.president-img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}
.president-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.president-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .president-wrapper {
        grid-template-columns: 1fr;
    }
}

.footer-contact-row {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
    color: #94a3b8;
}
.footer-contact-row i {
    color: var(--accent-color);
    margin-right: 6px;
    width: 14px;
    text-align: center;
}

/* ── Page Transitions ── */
body {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

/* ── Page Transitions ── */
body {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

/* ── Section Description ── */
.section-desc {
...
    text-align: center;
    color: var(--text-muted);
    max-width: 650px;
    margin: -1.5rem auto 36px;
    font-size: 0.9rem;
}

/* ── Parallax Hero ── */
.parallax-hero {
    position: relative;
    padding: 140px 20px 100px;
    text-align: center;
    color: var(--white);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
}
.parallax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,0.88), rgba(0,162,204,0.75));
    z-index: 0;
}
.parallax-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
}
.shape-1 {
    width: 400px; height: 400px;
    background: var(--secondary-color);
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--accent-color);
    bottom: -80px; left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--white);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
}
.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.parallax-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}
.parallax-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.parallax-content p {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.parallax-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.parallax-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.75;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.parallax-meta span i { color: var(--accent-color); font-size: 0.9rem; }

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

/* ── Featured Leader Card ── */
.leader-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.leader-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}
.leader-visual { display: flex; justify-content: center; }
.leader-avatar-wrapper {
    position: relative;
    display: inline-block;
}
.leader-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.leader-status {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(184,150,40,0.3);
}
.leader-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.leader-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
}
.leader-bio p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 16px;
}
.leader-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.leader-tag {
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(0,162,204,0.08);
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(0,162,204,0.15);
}

/* ── Modern Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}
.team-card-modern:hover { transform: translateY(-8px); }
.team-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--white), #f0f4f8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.team-card-modern:hover .team-card-bg {
    box-shadow: 0 12px 40px rgba(32,58,137,0.12);
    border-color: rgba(32,58,137,0.1);
}
.team-card-inner {
    position: relative;
    padding: 32px 22px 26px;
    text-align: center;
    z-index: 1;
}
.team-rank {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.team-avatar-wrapper {
    margin-bottom: 16px;
}
.team-avatar-modern {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.team-card-modern:hover .team-avatar-modern {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}
.team-name-modern {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.team-bio-modern {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Yedek Üyeler ── */
.yedek-wrapper {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px dashed var(--border-color);
}
.yedek-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.yedek-title i { color: var(--secondary-color); }
.yedek-list { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.yedek-badge {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.yedek-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ── Kurumsal Resmi Bilgiler ── */
.kurumsal-section {
    background: linear-gradient(135deg, #0a152e 0%, #1a2d5a 50%, #0f1f3d 100%);
    padding: 60px 0;
    position: relative;
}
.kurumsal-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}
.kurumsal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.kurumsal-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
}
.kurumsal-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
}
.kurumsal-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,162,204,0.15), rgba(0,162,204,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    border: 1px solid rgba(0,162,204,0.1);
}
.kurumsal-card h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.kurumsal-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    margin-bottom: 14px;
}
.kurumsal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.kurumsal-link:hover {
    color: var(--accent-color);
    gap: 10px;
}
.kurumsal-link i { font-size: 0.7rem; }

/* ── Commission Section ── */
.commission-section {
    background: var(--bg-light);
}
.commission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.commission-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}
.commission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: transparent;
}
.commission-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.commission-card:hover .commission-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}
.commission-card h3 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}
.commission-card ul {
    list-style: none;
    padding: 0;
}
.commission-card ul li {
    position: relative;
    padding: 7px 0 7px 20px;
    font-size: 0.84rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}
.commission-card ul li:last-child { border-bottom: none; }
.commission-card ul li::before {
    content: '›';
    position: absolute;
    left: 4px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #0f1f3d);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-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");
    opacity: 0.5;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 14px;
}
.cta-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══ Responsive ══ */
@media (max-width: 1024px) {
    .nav { gap: 0; }
    .nav-link { font-size: 0.78rem; padding: 7px 7px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .commission-grid { grid-template-columns: repeat(2, 1fr); }
    .kurumsal-grid { grid-template-columns: repeat(2, 1fr); }
    .leader-card { grid-template-columns: 220px 1fr; gap: 30px; padding: 30px; }
    .leader-avatar { width: 160px; height: 160px; }
    .leader-name { font-size: 1.6rem; }
    .parallax-content h1 { font-size: 2.2rem; }
    .parallax-hero { padding: 120px 20px 80px; }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px; left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 12px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .nav.active { display: flex; }
    .nav-item { width: 100%; }
    .nav-link {
        padding: 12px 14px;
        border-radius: 8px;
        width: 100%;
        justify-content: space-between;
    }
    .nav-link i { transition: transform 0.3s ease; }
    .nav-item.dropdown-open > .nav-link i { transform: rotate(180deg); }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: transparent;
    }
    .nav-item.dropdown-open .dropdown { max-height: 400px; }
    .dropdown li a {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .dropdown .has-submenu > a i { transform: rotate(0deg); }
    .dropdown .has-submenu.sub-open > a i { transform: rotate(90deg); }
    .sub-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: transparent;
    }
    .dropdown .has-submenu.sub-open .sub-dropdown { max-height: 400px; }
    .sub-dropdown li a { padding: 10px 14px; font-size: 0.85rem; }
    .nav-donate, .nav-volunteer {
        margin-left: 0;
        margin-top: 6px;
    }
    .nav-donate .nav-link,
    .nav-volunteer .nav-link { justify-content: center; }
    .mobile-menu-btn { display: block; }
    .topbar { display: none; }
    .hide-mobile { display: none; }

    .hero-slider { height: 420px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.4rem; }

    .ataturk-grid { grid-template-columns: 1fr; text-align: center; }
    .ataturk-img { margin: 0 auto; }
    .ataturk-quote { border-left: none; padding-left: 0; border-top: 3px solid var(--accent-color); padding-top: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .tier-row { gap: 14px; max-width: 100%; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

    .leader-card { grid-template-columns: 1fr; text-align: center; padding: 24px; gap: 20px; }
    .leader-avatar { width: 140px; height: 140px; }
    .leader-name { font-size: 1.4rem; }
    .leader-tags { justify-content: center; }
    .parallax-hero { background-attachment: scroll; }
    .parallax-content h1 { font-size: 1.8rem; }
    .parallax-hero { padding: 100px 20px 60px; }
    .parallax-meta { gap: 12px; }
    .parallax-meta span { font-size: 0.78rem; padding: 6px 12px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .commission-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .kurumsal-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .cta-content h2 { font-size: 1.5rem; }
    .footer-row { flex-direction: column; text-align: center; padding: 18px 0; }
    .footer-row-left { justify-content: center; }
    .footer-social-row { justify-content: center; }
    .footer-contact-row { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-slider { height: 380px; }
    .hero-title { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .slider-btn { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 1.8rem; }
    .tier-row { gap: 10px; }
    .team-card { padding: 20px 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .leader-card { padding: 20px; }
    .leader-avatar { width: 120px; height: 120px; }
    .leader-name { font-size: 1.2rem; }
    .parallax-content h1 { font-size: 1.5rem; }
    .parallax-hero { padding: 80px 16px 50px; }
    .parallax-meta { flex-direction: column; align-items: center; }
    .commission-grid { grid-template-columns: 1fr; }
    .yedek-wrapper { padding: 20px; }
    .commission-card { padding: 24px 18px; }
    .kurumsal-card { padding: 22px 18px; }
    .team-name { font-size: 1rem; }
    .team-avatar { width: 70px; height: 70px; }
}
