﻿/* ============================================
   GENÇ KÜLTÜR VE TURİZM DERNEĞİ
   Vanilla CSS Implementation of ScrollExpandMedia
   ============================================ */

:root {
    --red: #E30A17;
    --red-dark: #b80812;
    --red-glow: rgba(227, 10, 23, 0.35);
    --dark: #0f1923;
    --dark-teal: #1a3040;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
    
    --heading: 'Montserrat', sans-serif;
    --body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   VİZYONUMUZ — Aceternity ContainerScroll Port
   ============================================ */
.vizyon-section { height: 100vh; min-height: 800px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 9999; background: #ffffff; padding: 0.5rem; overflow: hidden; }
@media (min-width: 768px) { .vizyon-section { height: 120vh; min-height: 900px; padding: 2rem; } }
.vizyon-wrapper { padding: 1rem 0; width: 100%; position: relative; }
@media (min-width: 768px) { .vizyon-wrapper { padding: 2rem 0; } }
.vizyon-header { max-width: 64rem; margin: 0 auto; text-align: center; will-change: transform; }
.vizyon-title { font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-top: 1rem; color: var(--dark); }
.vizyon-card { max-width: 64rem; margin: 0 auto; width: 100%; height: auto; min-height: 400px; border: 4px solid #6C6C6C; border-radius: 30px; background: #222222; box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003; overflow: hidden; will-change: transform; transform-origin: center top; padding: 0.5rem; position: relative; z-index: 9999; }
@media (min-width: 768px) { .vizyon-card { height: 460px; padding: 1rem; margin-top: -1.5rem;} }
.vizyon-card-inner { width: 100%; height: 100%; background: #f4f4f5; border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.vizyon-left { padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.vizyon-lead { font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.55; margin-bottom: 0.9rem; }
.vizyon-text { font-size: 0.92rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.5rem; }
.vizyon-text strong { color: var(--dark); }
.vizyon-stats { display: flex; gap: 2rem; border-top: 2px solid var(--light-gray); padding-top: 1.25rem; }
.vizyon-stat { display: flex; flex-direction: column; }
.vizyon-stat-top { display: flex; align-items: baseline; gap: 2px; }
.vizyon-stat-num, .vizyon-stat-plus { font-family: var(--heading); font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.vizyon-stat-lbl { font-family: var(--heading); font-size: 0.7rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.2rem; }
.vizyon-right { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vizyon-right-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f1923, #1a2f3f); }
.vizyon-right-body { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem; }
.vizyon-logo { width: 72px; height: 72px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.2); margin-bottom: 1.25rem; object-fit: cover; }
.vizyon-quote { font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 1rem; }
.vizyon-handle { font-family: var(--heading); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
@media (max-width: 767px) {
    .vizyon-section { height: auto; min-height: 100vh; padding: 2rem 1rem; }
    .vizyon-wrapper { padding: 1rem 0; }
    .vizyon-card { height: auto; min-height: 400px; margin-top: 1rem; padding: 0.4rem; }
    .vizyon-card-inner { grid-template-columns: 1fr; grid-template-rows: auto auto; }
    .vizyon-left { padding: 1.5rem; }
    .vizyon-lead { font-size: 1rem; }
    .vizyon-text { font-size: 0.85rem; display: block; margin-bottom: 1rem; }
    .vizyon-stats { gap: 1.25rem; }
    .vizyon-stat-num, .vizyon-stat-plus { font-size: 1.6rem; }
    .vizyon-right { min-height: 200px; }
    .vizyon-logo { width: 56px; height: 56px; }
    .vizyon-quote { font-size: 0.85rem; }
}



*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--dark); background: var(--white); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- PRELOADER ---- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-logo {
    width: 120px; height: 120px; border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
    overflow: hidden; /* Beyaz kare kenarları keser */
    box-shadow: 0 0 30px rgba(255,255,255,0.3); /* Gölgeyi resme değil yuvarlak çerçeveye veriyoruz */
    background: #fff; /* Logonun içi tam dolsun diye */
}
.pl-logo img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.02); /* Çok ince beyaz kenar kalırsa taşırarak sakla */
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease);
}
.navbar.scrolled {
    padding: 0.75rem 0;
    background: transparent;
    box-shadow: none;
}
.nav-inner {
    max-width: 1300px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img {
    height: 48px; width: 48px; border-radius: 50%; object-fit: cover;
    box-shadow: 0 4px 15px var(--red-glow); transition: 0.3s;
}
.logo-img:hover { transform: scale(1.12); box-shadow: 0 6px 25px var(--red-glow); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
    font-family: var(--heading); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; color: rgba(255,255,255,0.85);
    position: relative; padding-bottom: 4px; transition: color 0.3s;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--red); transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: #fff; }
.navbar.scrolled .nav-menu a:hover { color: var(--red); }
.nav-cta {
    background: var(--red) !important; color: #fff !important;
    padding: 0.6rem 1.5rem !important; border-radius: 50px;
    box-shadow: 0 4px 15px var(--red-glow);
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 25px var(--red-glow) !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ============================================
   SCROLL-EXPAND HERO CSS 
   ============================================ */
.scroll-hero {
    height: 350vh; /* 3.5 ekran kaydırma alanı */
    position: relative;
    z-index: 5;
    background: #000;
}
/* iOS'ta overflow-y scroll sorunu için */
.scroll-hero, .msh-container, .container-scroll-section {
    -webkit-overflow-scrolling: auto;
}
.shero-sticky {
    position: sticky; top: 0; left: 0;
    width: 100vw; height: 100vh;
    height: 100dvh; /* iOS safe area */
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.shero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.shero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
}
.shero-bg-dim {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.1); 
}
.shero-media-wrap {
    position: absolute; z-index: 10;
    width: 60vw; max-width: 600px; height: 350px;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    background: #000;
    will-change: width, height, border-radius;
}
.shero-video {
    width: 100%; height: 100%; object-fit: cover;
}
.shero-video-dim {
    position: absolute; inset: 0; background: rgba(0,0,0,0.0); /* Başlangıçta tamamen saydam, içi net görünsün */
}
.shero-text {
    position: absolute; z-index: 15;
    width: 100%; display: flex; justify-content: center; align-items: center; gap: 1rem;
    pointer-events: none;
}
.shero-word {
    font-family: 'Cinzel', serif; font-weight: 700;
    font-size: clamp(1.2rem, 4.5vw, 5.5rem); color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.5);
    white-space: pre-wrap; /* allow wrap on narrow screens if needed */
    will-change: transform;
    text-align: center;
}
#sheroLeft {
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 3.8rem);
    letter-spacing: 2px;
}
#sheroRight {
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 3.8rem);
    letter-spacing: 2px;
    opacity: 0.92;
}
.mobile-br { display: none; }
.shero-scroll-hint {
    position: absolute; bottom: 2rem; z-index: 20;
    color: #cbe0f5; font-family: var(--heading); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.shero-scroll-line {
    width: 2px; height: 40px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden;
}
.shero-scroll-line::after {
    content: ''; position: absolute; top: -40px; left: 0; width: 2px; height: 40px;
    background: #cbe0f5; animation: scrollLine 1.5s infinite;
}
@keyframes scrollLine {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* İçerik Yazısı Mavi Tonlarda */
.shero-subtitle {
    position: absolute; z-index: 30;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; width: 90%; max-width: 800px;
    opacity: 0; visibility: hidden;
}
.shero-subtitle p {
    font-family: var(--heading); font-size: 2rem; color: #fff; line-height: 1.5;
    margin-bottom: 2.5rem; font-weight: 500;
}
.shero-subtitle strong { color: var(--red); font-weight: 900; }
.shero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ---- ORTAK BUTONLAR ---- */
.btn-red {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; border-radius: 50px;
    background: var(--red); color: #fff;
    font-family: var(--heading); font-weight: 800; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 6px 20px var(--red-glow); transition: all 0.3s var(--ease); border: none; cursor: pointer;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 30px var(--red-glow); }
.btn-glass {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; border-radius: 50px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    font-family: var(--heading); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; transition: all 0.3s var(--ease);
}
.btn-glass:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }


/* ============================================
   CONTAINER SCROLL ANIMATION — ACETERNITY STYLE
   (Vizyonumuz Bölümü)
   ============================================ */

/* Scroll alanı: 60rem mobile / 80rem desktop — Aceternity ile birebir */
/* Aceternity: h-[60rem] md:h-[80rem] flex items-center justify-center relative p-2 md:p-20 */
.container-scroll-section {
    height: 60rem;
    position: relative;
    z-index: 10;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .container-scroll-section {
        height: 80rem;
        padding: 5rem;
    }
}

/* Sticky sarmalayıcı — Aceternity'nin perspective wrapper'ı */
/* Aceternity: py-10 md:py-40 w-full relative — perspective inline style */
.csa-wrapper {
    padding: 2.5rem 0;
    width: 100%;
    position: relative;
    /* perspective buraya değil — JS'te inline style olarak ekleniyor */
}
@media (min-width: 768px) {
    .csa-wrapper { padding: 10rem 0; }
}

/* Başlık — Aceternity Header bileşeni */
.csa-header {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 20;
    will-change: transform;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}
.csa-title {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 1rem;
    color: var(--dark);
}

/* Kart — Aceternity Card bileşeni: birebir */
.csa-mobile-scale-wrap {
    width: 100%;
}

/* Aceternity: max-w-5xl -mt-12 mx-auto h-[30rem] md:h-[40rem] w-full
   border-4 border-[#6C6C6C] p-2 md:p-6 bg-[#222222] rounded-[30px] */
.csa-card-container {
    max-width: 64rem;          /* max-w-5xl */
    margin: -3rem auto 0;      /* -mt-12 */
    width: 100%;
    height: 30rem;             /* h-[30rem] */

    border: 4px solid #6C6C6C;
    border-radius: 30px;
    background: #222222;
    box-shadow:
        0 0 #0000004d,
        0 9px 20px #0000004a,
        0 37px 37px #00000042,
        0 84px 50px #00000026,
        0 149px 60px #0000000a,
        0 233px 65px #00000003;

    /* ⚠️ TRANSFORM YOK — GSAP tamamen kontrol ediyor */
    transform-origin: center top;
    overflow: hidden;
    will-change: transform;
    position: relative;
    z-index: 10;
    padding: 0.5rem;
}
@media (min-width: 768px) {
    .csa-card-container {
        height: 40rem;   /* md:h-[40rem] */
        padding: 1.5rem; /* md:p-6 */
    }
}

/* Kart içi — Aceternity'nin zinc-900 dark inner */
.csa-card {
    width: 100%;
    height: 100%;
}
.csa-card-inner {
    width: 100%;
    height: 100%;
    background: #f4f4f5;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
/* Karanlık tema için dark:bg-zinc-900 */
@media (prefers-color-scheme: dark) {
    .csa-card-inner { background: #18181b; }
}

/* ── İçerik Alanları ── */
.csa-content-left {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.csa-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.csa-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.csa-text strong { color: var(--dark); }

.mission-stats {
    display: flex;
    gap: 2rem;
    border-top: 2px solid var(--light-gray);
    padding-top: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-val {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
}
.stat-lbl {
    font-family: var(--heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.csa-content-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.csa-insta-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
    color: #fff;
    text-align: center;
}
.csa-insta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-teal), var(--dark));
    z-index: 0;
}
.csa-insta-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.csa-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
}
.csa-insta-body p {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.csa-insta-body span {
    font-family: var(--heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}



/* ============================================
   DESTEKLEYENLER CAROUSEL (Logo Marquee)
   ============================================ */
.logo-carousel-section {
    position: relative; z-index: 10;
    background: var(--white); padding: 4rem 0 6rem;
    overflow: hidden;
}
.carousel-heading {
    text-align: center; font-family: var(--heading); font-weight: 900; font-size: 2rem;
    color: var(--dark); margin-bottom: 3rem; letter-spacing: 0;
}
.carousel-wrapper {
    position: relative; width: 100%;
    display: flex; overflow: hidden;
}
/* Kenardaki beyaz geçişler */
.carousel-fade-left, .carousel-fade-right {
    position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.carousel-fade-left { left: 0; background: linear-gradient(to right, white, transparent); }
.carousel-fade-right { right: 0; background: linear-gradient(to left, white, transparent); }

.carousel-track {
    display: flex; align-items: center; gap: 0;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

.gov-item {
    display: flex; align-items: center; justify-content: center;
    flex: 0 0 280px;
    padding: 0 2rem;
    transition: transform 0.3s var(--ease);
    cursor: pointer;
}
.gov-item img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Resim yüklenmezse placeholder göster */
    min-width: 80px;
    background-color: transparent;
}
/* Bozuk logo yerine placeholder */
.gov-item img::after {
    display: none;
}
.gov-item:hover {
    transform: scale(1.15);
}
.gov-item:hover img {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.section-festival { position: relative; z-index: 10; background: var(--dark); padding: 8rem 0; color: #fff; }
.festival-header { text-align: center; margin-bottom: 4rem; }
.festival-header h2 { font-family: var(--heading); font-size: 2.5rem; font-weight: 900; color: #fff; margin-top: 1rem; }
.festival-header p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-top: 0.5rem; }
.festival-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.city-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--red);
    padding: 1.5rem; transition: all 0.3s var(--ease);
}
.city-card:hover { background: rgba(227, 10, 23, 0.1); border-color: var(--red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(227,10,23,0.15); }
.city-date { font-size: 0.75rem; color: var(--red); font-family: var(--heading); font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.city-name { font-family: var(--heading); font-size: 1.25rem; font-weight: 900; color: #fff; }
.festival-cta { text-align: center; margin-top: 3rem; }

.section-highlights { position: relative; z-index: 10; background: var(--off-white); padding: 6rem 0; }
.hl-header { text-align: center; margin-bottom: 4rem; }
.hl-header h2 { font-family: var(--heading); font-size: 2.5rem; font-weight: 900; }
.hl-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.hl-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; cursor: pointer; }
.hl-circle {
    width: 90px; height: 90px; border-radius: 50%; background: var(--red);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--red); transition: all 0.4s var(--ease);
}
.hl-circle i { color: #fff; font-size: 1.75rem; }
.hl-item:hover .hl-circle { transform: scale(1.15); box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--red), 0 10px 30px var(--red-glow); }
.hl-item span { font-family: var(--heading); font-size: 0.85rem; font-weight: 700; color: var(--dark); }

.footer { position: relative; z-index: 10; background: var(--red); padding: 5rem 0 2rem; color: #fff; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo-img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }
.footer-brand p { color: rgba(255,255,255,0.85); margin-top: 1.5rem; font-size: 1rem; line-height: 1.6; }
.footer h4 { font-family: var(--heading); font-size: 1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.85); font-weight: 500; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.social-btn {
    width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.15);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; transition: 0.3s;
}
.social-btn:hover { background: #fff; color: var(--red); transform: translateY(-5px); }
.footer .btn-red { background: #fff; color: var(--red); }
.footer .btn-red:hover { background: var(--dark); color: #fff; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); font-family: var(--heading); font-weight: 600; font-size: 0.8rem; color: rgba(255,255,255,0.8); letter-spacing: 0.5px; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.hero-accent { color: var(--red); }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }

/* ============================================
   BİZİ DESTEKLEYEN KURUMLAR
   ============================================ */
.supporters-section {
    position: relative; z-index: 10;
    background: var(--off-white);
    padding: 7rem 0 6rem;
    border-top: 1px solid var(--light-gray);
}

.supporters-header {
    text-align: center;
    margin-bottom: 4rem;
}
.supporters-title {
    font-family: var(--heading); font-size: 2.4rem; font-weight: 900;
    color: var(--dark); margin: 0.75rem 0 1rem; line-height: 1.15;
}
.supporters-subtitle {
    font-size: 1rem; color: var(--gray); max-width: 520px; margin: 0 auto; line-height: 1.7;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.supporter-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    transition: all 0.35s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.supporter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(227, 10, 23, 0.12);
    border-color: rgba(227, 10, 23, 0.2);
}

.supporter-emblem {
    width: 80px; height: 80px;
    filter: drop-shadow(0 4px 12px rgba(227,10,23,0.3));
    transition: filter 0.3s;
}
.supporter-card:hover .supporter-emblem {
    filter: drop-shadow(0 6px 20px rgba(227,10,23,0.5));
}

.supporter-info { display: flex; flex-direction: column; gap: 0.3rem; }
.sup-tc {
    font-family: var(--heading); font-size: 0.7rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase; color: var(--red);
}
.sup-name {
    font-family: var(--heading); font-size: 0.95rem; font-weight: 800;
    color: var(--dark); line-height: 1.4;
}

@media (max-width: 900px) {
    .supporters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .supporters-grid { grid-template-columns: 1fr; }
    .supporters-title { font-size: 1.8rem; }
}


/* ============================================
   MİSYONUMUZ – VIDEO SCROLL HERO
   ============================================ */
.section-misyon { position: relative; z-index: 10; background: #fff; }

/* ── PART 1: Scroll-Scale Hero ── */
.msh-container {
    height: 400vh;
    position: relative;
}
.msh-sticky {
    position: sticky; top: 0; left: 0;
    width: 100%; height: 100vh;
    height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

/* Video wrap: starts small, grows to full */
.msh-video-wrap {
    position: absolute; inset: 0;
    transform: scale(0.5);
    transform-origin: center center;
    border-radius: 20px;
    overflow: hidden;
    will-change: transform;
    transition: border-radius 0.1s;
    box-shadow: 0 20px 80px rgba(0,0,0,0.25);
}
.msh-video-wrap.msh-full {
    border-radius: 0;
    box-shadow: none;
}
.msh-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.msh-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(15,25,35,0.3) 0%, rgba(15,25,35,0.5) 100%);
}

/* Text overlay */
.msh-text {
    position: absolute; z-index: 10;
    text-align: center;
    pointer-events: none;
    opacity: 1;
    padding: 0 2rem;
}
.msh-headline {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 1.4rem; /* JS will grow this on scroll */
    color: #fff; line-height: 1.15;
    margin: 1rem 0 1.25rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7);
    transition: font-size 0.05s linear;
}
.msh-tw { color: var(--red); }
.msh-cursor {
    color: var(--red); font-weight: 300;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.msh-sub {
    color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Scroll hint */
.msh-scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.7); font-size: 0.7rem; font-family: 'Montserrat',sans-serif;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase; z-index: 10;
    animation: fadeUpDown 2s ease-in-out infinite;
}
.msh-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}
@keyframes fadeUpDown {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── PART 2: Cards Section ── */
.msh-cards-section {
    position: relative; z-index: 10;
    background: var(--off-white);
    padding: 8rem 0 7rem;
}
.msh-cards-header {
    text-align: center; margin-bottom: 4rem;
}
.msh-cards-title {
    font-family: 'Montserrat',sans-serif; font-size: 2.5rem; font-weight: 900;
    color: var(--dark); margin-top: 0.75rem;
}
.msh-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Individual card */
.msh-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    opacity: 0; transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s;
    will-change: transform, opacity;
}
.msh-card.msh-card-visible {
    opacity: 1; transform: translateY(0);
}
.msh-card:nth-child(2) { transition-delay: 0.15s; }
.msh-card:nth-child(3) { transition-delay: 0.3s; }

.msh-card:hover {
    box-shadow: 0 20px 60px rgba(227,10,23,0.15);
    transform: translateY(-8px);
}
.msh-card.msh-card-visible:hover { transform: translateY(-8px); }

.msh-card-img {
    position: relative; height: 220px;
    background-size: cover; background-position: center;
    overflow: hidden;
    transition: transform 0.6s ease;
}
.msh-card:hover .msh-card-img { transform: scale(1.04); }
.msh-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(15,25,35,0.5), rgba(227,10,23,0.25));
}
.msh-card-icon {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 6px 20px rgba(227,10,23,0.5);
    transition: transform 0.4s;
}
.msh-card:hover .msh-card-icon { transform: scale(1.1) rotate(-5deg); }

.msh-card-body {
    padding: 1.75rem;
}
.msh-card-body h3 {
    font-family: 'Montserrat',sans-serif; font-weight: 800;
    font-size: 1.25rem; color: var(--dark); line-height: 1.3; margin-bottom: 0.75rem;
}
.msh-card-body p {
    font-size: 0.95rem; line-height: 1.75; color: var(--gray);
    margin-bottom: 1.25rem;
}
.msh-card-line {
    height: 3px; background: var(--red); border-radius: 2px;
    width: 0; transition: width 0.5s ease 0.2s;
}
.msh-card.msh-card-visible .msh-card-line { width: 40%; }
.msh-card:hover .msh-card-line { width: 100%; }

@media (max-width: 900px) {
    .msh-cards-grid { grid-template-columns: 1fr; }
    .msh-cards-title { font-size: 2rem; }
}
/* ============================================
   BAŞKANDAN MESAJ
   ============================================ */

.section-president {
    position: relative; z-index: 10;
    background: #fff;
    padding: 8rem 0;
    overflow: hidden;
}

/* Dekoratif kırmızı vurgu */
.section-president::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--red);
}

.president-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.president-img-wrap {
    position: relative;
    flex: 1.6;
    min-width: 400px;
    max-width: 700px;
    align-self: center;
    display: flex;
    justify-content: center;
}

/* Alt kırmızı çizgi */
.president-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 5%; right: 5%;
    height: 4px;
    background: var(--red);
    border-radius: 2px 2px 0 0;
}

.president-frame { display: none; }

.president-img {
    width: 100%;
    height: auto;
    max-height: 900px;
    object-fit: contain;
    object-position: top center;
    position: relative;
    z-index: 1;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    transition: filter 0.4s ease;
}
.president-img-wrap:hover .president-img {
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
}

.president-badge {
    position: absolute;
    bottom: 20px; right: -20px;
    background: var(--red);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-family: var(--heading);
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(227,10,23,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.president-content { flex: 1.5; padding-bottom: 2rem; }

.president-name {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-top: 1rem;
    line-height: 1;
}
.president-title {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin: 0.5rem 0 2rem;
}
.president-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 1.4rem;
}

@media (max-width: 900px) {
    .president-wrapper { flex-direction: column; align-items: center; gap: 2rem; }
    .president-img-wrap { max-width: 280px; min-width: unset; align-self: auto; }
    .president-badge { right: -10px; }
    .president-name { font-size: 2rem; }
}

/* ============================================
   İNTERAKTİF HARİTA (KÜLTÜR YOLU)
   ============================================ */
.svg-map-wrapper {
    position: relative; width: 100%; max-width: 1400px; margin: 0 auto;
    background-color: transparent;
    overflow: hidden; /* Taşmayı engelle */
}

#map-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.real-turkey-map {
    width: 100%;
    height: auto;
    display: block;
}

/* NATIVE SVG DOTS */
.svg-city-dot {
    cursor: pointer;
    transition: r 0.3s var(--ease), fill 0.3s;
}
.svg-city-dot:hover {
    r: 3.5;
    fill: #b80812;
}

.svg-pulse-anim {
    fill: none;
    stroke: rgba(227, 10, 23, 0.7);
    animation: svg-pulse-r 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes svg-pulse-r {
    0% { r: 3px; opacity: 1; stroke-width: 0.8px; }
    70% { r: 12px; opacity: 0; stroke-width: 0px; }
    100% { r: 12px; opacity: 0; stroke-width: 0px; }
}

/* GLOBAL MAP TOOLTIP */
.global-map-tooltip {
    position: absolute; 
    transform: translate(-50%, -100%);
    background: rgba(15, 25, 35, 0.95); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 1rem 1.5rem; text-align: center; color: #fff;
    min-width: 200px; pointer-events: none; opacity: 0; visibility: hidden; 
    transition: opacity 0.2s var(--ease), visibility 0.2s; z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.global-map-tooltip.active {
    opacity: 1; visibility: visible;
}
.tooltip-city { font-family: var(--heading); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.tooltip-date { font-family: var(--heading); font-size: 0.85rem; font-weight: 700; color: var(--red); text-transform: uppercase; }

/* ============================================
   EKİBİMİZ SAYFASI
   ============================================ */
.team-hero {
    position: relative; padding: 8rem 0 4rem; background: var(--dark); overflow: hidden;
}
.team-hero-bg {
    position: absolute; inset: 0; background: url('background.png') center/cover; opacity: 0.1;
}
.team-grid-section { background: #0a1018; }
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem;
}
.team-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: 0.4s var(--ease); cursor: pointer;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); border-color: rgba(227,10,23,0.4); }
.team-photo-wrap {
    width: 100%; aspect-ratio: 3/4; overflow: hidden;
    background: #1a1f2a; position: relative;
}
.team-photo {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
    transition: 0.5s var(--ease); filter: grayscale(0.2);
}
.team-card:hover .team-photo { transform: scale(1.05); filter: grayscale(0); }
.team-info {
    padding: 1.5rem 1.5rem 1.75rem; text-align: center;
    border-bottom: 4px solid var(--red);
    background: rgba(0,0,0,0.2);
}
.team-info h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.team-info p { font-size: 0.8rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 1.5px; }

/* ============================================
   FAALİYETLER AKORDEON
   ============================================ */
.accordion-container {
    display: flex; width: 100%; height: 500px; max-width: 1200px; margin: 0 auto; gap: 15px;
}
.acc-item {
    flex: 1; border-radius: 20px; overflow: hidden; position: relative;
    background-size: cover; background-position: center;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.acc-item:hover, .acc-item.active { flex: 4; }
.acc-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%; background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.acc-icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--red);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem;
    margin-bottom: 1rem; transition: 0.4s;
}
.acc-text {
    opacity: 0; transform: translateY(20px); transition: all 0.5s var(--ease);
    color: #fff; white-space: nowrap; overflow: hidden;
}
.acc-item.active .acc-text, .acc-item:hover .acc-text {
    opacity: 1; transform: translateY(0); white-space: normal;
}
.acc-text h3 { font-family: var(--heading); font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.acc-text p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

@media (max-width: 1024px) {
    .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .scroll-hero { height: 250vh; }
    .president-wrapper { flex-direction: column; text-align: center; gap: 3rem; }
    .president-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
}
@media (max-width: 900px) {
    .nav-menu { display: none !important; }
    .nav-hamburger { display: flex !important; margin-right: 1rem; }
    .nav-inner { padding: 0 1rem; }
}
@media (max-width: 768px) {
    .shero-word { font-size: 2.2rem; }
    .shero-media-wrap { width: 90vw; height: 250px; }
    .hl-grid { gap: 2rem; }
    .hl-circle { width: 70px; height: 70px; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    
    /* FAALIYETLER ACCORDION MOBILE YATAY FIX */
    .accordion-container {
        flex-direction: row;
        height: 450px;
        gap: 5px;
    }
    .acc-item { flex: 1 !important; min-width: 50px; }
    .acc-item.active, .acc-item:hover { flex: 6 !important; }
    .acc-icon { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 0.5rem; }
    .acc-content { padding: 0.75rem; background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%); }
    .acc-text h3 { font-size: 1.1rem; line-height: 1.2; margin-bottom: 0.25rem; white-space: normal; word-wrap: break-word; }
    .acc-text p { font-size: 0.75rem; line-height: 1.3; color: rgba(255,255,255,0.9); white-space: normal; }

    /* ARAMIZA KATIL / FORMLAR FIX */
    .join-headline { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}


/* ============================================
   BİZE KATIL – JOIN SECTION
   ============================================ */
.section-join {
    position: relative; z-index: 10;
    background: linear-gradient(135deg, #0f1923 0%, #1a0a0a 50%, #1a0505 100%);
    overflow: hidden;
}
.section-join::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(227,10,23,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227,10,23,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.join-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    position: relative; z-index: 1;
}

/* SOL */
.join-left {
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 4rem 6rem 8rem;
}
.join-left-inner { max-width: 480px; }

.join-headline {
    font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900;
    color: #fff; line-height: 1.15; margin: 1rem 0 1.5rem;
}
.join-red { color: var(--red); }

.join-sub {
    font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.join-bullets {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.9rem;
}
.join-bullets li {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.join-bullets li i { color: var(--red); font-size: 1rem; flex-shrink: 0; }

/* SAĞ */
.join-right {
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 8rem 6rem 4rem;
}

.join-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%; max-width: 440px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.join-form-title {
    font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800;
    color: #fff; margin-bottom: 0.4rem;
}
.join-form-sub {
    font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem;
}

.join-form { display: flex; flex-direction: column; gap: 1.25rem; }

.join-field { display: flex; flex-direction: column; gap: 0.4rem; }
.join-field label {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
    color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px;
}
.join-field input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 0.9rem 1.2rem;
    color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem;
    outline: none; transition: border-color 0.3s, background 0.3s;
}
.join-field input::placeholder { color: rgba(255,255,255,0.3); }
.join-field input:focus {
    border-color: var(--red);
    background: rgba(227,10,23,0.08);
}

.join-submit {
    margin-top: 0.5rem;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 1rem 2rem;
    background: var(--red); color: #fff;
    border: none; border-radius: 12px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(227,10,23,0.45);
    transition: all 0.3s var(--ease);
}
.join-submit:hover {
    background: #c00; transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(227,10,23,0.6);
}

@media (max-width: 900px) {
    .join-split { grid-template-columns: 1fr; }
    .join-left { padding: 4rem 2rem 2rem; }
    .join-right { padding: 2rem 2rem 4rem; }
}


/* Team card link */
.team-card-link { text-decoration: none; display: block; cursor: pointer; }
.team-card-link .team-info h3 { color: #fff !important; }
.team-card-link .team-info p { color: rgba(255,255,255,0.6) !important; }
.team-card-link:hover .team-photo-wrap img { transform: scale(1.07); }
.team-card-link:hover .team-card-hover-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.team-card-hover-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0.7);
    background: rgba(227,10,23,0.9);
    color: #fff; width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; opacity: 0;
    transition: all 0.35s ease; pointer-events: none;
    backdrop-filter: blur(4px);
    z-index: 3;
}
.team-card-soon { opacity: 0.4; cursor: default; }


/* President mesaj stilleri */
.president-salute {
    font-family: 'Cinzel', serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--red) !important;
    margin-bottom: 1rem !important;
    letter-spacing: 1px;
}
.president-closing {
    margin-top: 1.5rem !important;
    font-style: italic;
    color: rgba(15,25,35,0.6) !important;
    border-top: 1px solid rgba(227,10,23,0.2);
    padding-top: 1rem;
}
.president-closing strong {
    font-family: 'Cinzel', serif;
    color: var(--dark) !important;
    font-style: normal;
    font-size: 1.05rem;
}


/* ============================================
   İSTATİSTİKLER BANDİ
   ============================================ */
.section-stats {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 2rem;
}
.stats-inner {
    max-width: 860px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1; text-align: center; padding: 0 2rem;
}
.stat-num {
    font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; color: #fff; line-height: 1;
    margin-bottom: 0.6rem;
}
.stat-plus { color: var(--red); }
.stat-label {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.stat-label i { color: var(--red); font-size: 0.85rem; }
.stat-divider {
    width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0;
}

@media (max-width: 600px) {
    .stats-inner { flex-direction: column; gap: 2rem; }
    .stat-divider { width: 60px; height: 1px; }
}

/* ============================================
   KVKK ONAY KUTUSU
   ============================================ */
.kvkk-check-wrap {
    margin-top: 0.5rem;
}
.kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: var(--body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.kvkk-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    transition: all 0.25s ease;
}
.kvkk-label input[type="checkbox"]:checked {
    background: var(--red);
    border-color: var(--red);
}
.kvkk-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 6px; height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.kvkk-label input[type="checkbox"]:hover {
    border-color: var(--red);
}
.kvkk-label span a {
    font-weight: 600;
}


/* ============================================
   MOBILE & IOS SPECIFIC FIXES
   ============================================ */

/* iOS Low Power Mode Video Play Button Fix */
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* Video scroll jump önleme - içerik scroll başlamadan önce ekrana sabit yükseklik ver */
.msh-container, .scroll-hero {
    contain: layout;
}

@media (max-width: 900px) {
    /* Navbar collapse */
    .nav-menu { display: none !important; }
    .nav-hamburger { display: flex !important; margin-right: 1rem; }

    /* ── HERO SCROLL FIXES ── */
    .mobile-br { display: none !important; }
    .shero-text {
        justify-content: center; align-items: center; text-align: center;
        gap: 0.3rem; flex-direction: column; top: 40%;
        width: 90vw; left: 5vw; margin-left: 0;
        transform: none;
    }
    .shero-word { white-space: normal !important; font-size: clamp(1.2rem, 5vw, 2rem) !important; }
    #sheroLeft, #sheroRight { font-size: clamp(1.2rem, 5vw, 2rem) !important; margin: 0; padding: 0; }
    .shero-media-wrap { width: 95vw; height: 55vw; max-width: none; }
    .shero-subtitle p { font-size: 1rem; line-height: 1.5; }

    /* ── VİZYON CARD FIX (mobil scroll animasyon) ── */
    /* ── VİZYON CARD — Aceternity Mobile (scale 0.7→0.9) ── */
    .csa-mobile-scale-wrap {
        width: 100%;
        padding: 0 0.5rem;
    }
    .csa-card-container {
        /* JS fromTo başlatacak, CSS sadece başlangıç boyutunu ayarla */
        width: 100% !important;
        max-width: 100% !important;
        height: 30rem !important;    /* Aceternity: h-[30rem] mobile */
        border-radius: 20px;
        /* transform başlangıcını JS'e bırak — !important KULLANMA */
        margin-top: 0 !important;
    }
    .csa-card-inner {
        grid-template-columns: 1fr !important;  /* Mobilde tek sütun */
        overflow-y: auto;
    }
    .csa-content-left {
        padding: 1.5rem !important;
    }
    .csa-content-right {
        display: none; /* Mobilde sağ panel gizle */
    }


    /* ── PRESIDENT SECTION FIX ── */
    .section-president { padding: 4rem 0; }
    .president-wrapper {
        display: flex; flex-direction: column;
        align-items: center; gap: 1rem;
        text-align: center; padding: 0 1.5rem;
    }
    .president-img-wrap {
        width: 100%;
        max-width: 220px;
        min-width: unset;
        height: auto;
        overflow: visible; /* contain değil, fotoğraf tam görünsün */
        align-self: center;
        margin-bottom: 1rem;
        position: relative;
    }
    /* Fotoğrafı tam göster, kırpma yok */
    .president-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: top center !important;
        transform: none !important; /* translateY ve scale kaldırıldı */
    }
    .president-badge {
        right: -10px !important;
        transform: none !important;
        bottom: 10px;
        z-index: 5;
        font-size: 0.7rem !important;
        padding: 0.5rem 1rem !important;
    }
    .president-name { font-size: 1.8rem !important; margin-top: 1.5rem !important; }
    .president-title { font-size: 0.9rem !important; }

    /* ── LOGO CAROUSEL FIX ── */
    .gov-item { flex: 0 0 160px; padding: 0 1.25rem; }
    .gov-item img {
        height: 50px;
        max-width: 120px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .carousel-wrapper { overflow: hidden; }

    /* ── HARİTA FIX ── */
    .section-festival { overflow: hidden; padding: 4rem 0; }
    .svg-map-wrapper {
        width: 100%;
        overflow: hidden;
        transform: none; /* Scale kaldırıldı, harita container'a sığsın */
        margin: 1.5rem auto;
        padding: 0;
    }
    #map-container svg {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .festival-header h2 { font-size: 1.8rem !important; }

    /* ── MİSYON VIDEO FIX ── */
    .msh-headline { font-size: 1.5rem !important; white-space: normal !important; word-wrap: break-word; line-height: 1.3; padding: 0 1rem; }

    /* Diğer yedek logolar */
    .supporters-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1rem !important; }
    .supporter-card { padding: 0.5rem !important; justify-content: center; align-items: center; }
    .supporter-emblem { width: 50px !important; height: 50px !important; max-width: 100%; object-fit: contain; }
    .sup-name { display: none; }
    .sup-tc { display: none; }
}

@media (max-width: 768px) {
    /* Faliyeler Yatay Fix - Mobilde dik değil yatay kalsın */
    .accordion-container { flex-direction: row; height: 350px; gap: 5px; }
    .acc-item { flex: 1 !important; min-width: 45px; }
    .acc-item.active, .acc-item:hover { flex: 5 !important; }
    .acc-icon { width: 35px; height: 35px; font-size: 1rem; margin-bottom: 0.5rem; }
    .acc-content { padding: 0.5rem; }
    .acc-text h3 { font-size: 0.9rem; line-height: 1.3; white-space: normal; }
    .acc-text p { font-size: 0.75rem; line-height: 1.3; color: rgba(255,255,255,0.9); white-space: normal; }

    /* Harita - küçük ekran */
    .real-turkey-map { max-width: 100% !important; }

    /* VIDEO SCROLL JUMP FIX: iOS'ta sticky element yükseklik değişiri scroll jump yapıyor */
    /* Bu nedenle mobilde 400vh yerine 250vh ile sınırla */
    .msh-container { height: 250vh; }
    .scroll-hero { height: 220vh; }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar */
    .csa-title { font-size: 1.8rem !important; }
    .csa-lead { font-size: 1rem !important; }
    .csa-text { font-size: 0.85rem !important; }
    .stat-val { font-size: 1.4rem !important; }
    .stat-lbl { font-size: 0.65rem !important; }
    .mission-stats { gap: 1rem !important; }
    .festival-header { padding: 0 1rem; }
    .festival-header h2 { font-size: 1.5rem !important; }
    .festival-cta { padding: 0 1rem; }
    .btn-red { font-size: 0.8rem !important; padding: 0.8rem 1.4rem !important; }
    .shero-subtitle p { font-size: 0.9rem !important; }
    .shero-btns { flex-direction: column; align-items: center; }
    .join-left { padding: 3rem 1.5rem 1.5rem; }
    .join-right { padding: 1.5rem 1.5rem 3rem; }
}


