/* ═══════════════════════════════════════════════
   Engelsiz Hacettepe — Ana Stil Dosyası
   public/css/engelsiz.css
════════════════════════════════════════════════ */

/* RESET & VARIABLES */
*{margin:0;padding:0;box-sizing:border-box}
:root{
    --red:#B5121B;
    --red-dark:#8B0D13;
    --red-light:#fdf2f2;
    --text:#1a1a1a;
    --text-muted:#555;
    --border:#e5e5e5;
    --bg:#f5f5f5;
    --white:#fff;
    --r:10px;
    --sh:0 2px 16px rgba(0,0,0,0.08);
}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    color:var(--text);
    background:var(--bg);
    font-size:16px;
    line-height:1.6;
}

/* ── ERİŞİLEBİLİRLİK SINIFLARI ─────────────────── */
body.dyslexia{
    font-family:'OpenDyslexic',Arial,sans-serif!important;
    letter-spacing:.06em;
    word-spacing:.18em;
}
body.big-cursor *{
    cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpolygon points='4,0 4,26 10,20 14,30 18,28 14,18 22,18' fill='%23B5121B' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 4 0,auto!important;
}
body.link-highlight a{
    background:rgba(255,220,0,.35)!important;
    border-bottom:2px solid #b5121b!important;
    border-radius:3px;
}
body.high-contrast{
    background:#000!important;
    color:#fff!important;
    --text:#fff;
    --text-muted:#ddd;
    --border:#555;
    --bg:#000;
    --white:#111;
    --red-light:#1a0000;
}
body.high-contrast .quick-card,
body.high-contrast .etk-card,
body.high-contrast .hiz-card,
body.high-contrast .faq-item,
body.high-contrast .hikaye-card,
body.high-contrast .duyuru-item{background:#111!important;border-color:#555!important}
body.high-contrast .navbar{background:#000!important;border-bottom:1px solid #555}
body.high-contrast .topbar,body.high-contrast footer{background:#000!important}

/* ── ERİŞİLEBİLİRLİK PANELİ ────────────────────── */
#a11y-toggle{
    position:fixed;right:0;top:50%;transform:translateY(-50%);z-index:10000;
    background:var(--red);color:#fff;border:none;
    padding:10px 7px;border-radius:10px 0 0 10px;
    cursor:pointer;writing-mode:vertical-rl;
    letter-spacing:2px;font-size:12px;font-weight:700;
    display:flex;align-items:center;
    box-shadow:-2px 0 12px rgba(0,0,0,0.2);
}
#a11y-panel{
    position:fixed;right:-320px;top:0;height:100%;width:300px;
    background:#fff;z-index:9999;
    box-shadow:-4px 0 24px rgba(0,0,0,0.15);
    transition:right .3s ease;overflow-y:auto;
    border-left:3px solid var(--red);
}
#a11y-panel.open{right:0}
.a11y-header{
    background:var(--red);color:#fff;
    padding:18px 20px;
    display:flex;justify-content:space-between;align-items:center;
}
.a11y-header h3{font-size:16px;font-weight:700}
.a11y-close{background:none;border:none;color:#fff;font-size:22px;cursor:pointer;padding:0 4px}
.a11y-section{padding:16px 20px;border-bottom:1px solid #eee}
.a11y-section h4{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#888;margin-bottom:12px;font-weight:600}
.a11y-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.a11y-row label{font-size:14px;color:#333}
.a11y-btn{
    background:#f5f5f5;border:1px solid #ddd;border-radius:7px;
    padding:7px 13px;cursor:pointer;font-size:13px;font-weight:600;
    transition:all .2s;color:#333;font-family:inherit;
}
.a11y-btn:hover{background:var(--red);color:#fff;border-color:var(--red)}
.a11y-size-row{display:flex;gap:8px}
.a11y-size-row button{
    flex:1;background:#f5f5f5;border:1px solid #ddd;
    border-radius:7px;padding:8px;cursor:pointer;
    font-weight:700;font-size:15px;transition:.2s;font-family:inherit;
}
.a11y-size-row button:hover{background:var(--red);color:#fff}
.a11y-note{font-size:11px;color:#999;margin-top:8px;line-height:1.5}

/* TOGGLE SWITCH */
.toggle-sw{position:relative;width:42px;height:24px;flex-shrink:0}
.toggle-sw input{opacity:0;width:0;height:0}
.toggle-sw .sl{position:absolute;inset:0;background:#ccc;border-radius:24px;cursor:pointer;transition:.3s}
.toggle-sw .sl::before{content:'';position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.3s}
.toggle-sw input:checked+.sl{background:var(--red)}
.toggle-sw input:checked+.sl::before{transform:translateX(18px)}

/* ── OKUMA KILAVUZU ─────────────────────────────── */
#reading-ruler{
    display:none;position:fixed;left:0;right:0;height:40px;
    background:rgba(181,18,27,.08);
    border-top:2px solid rgba(181,18,27,.3);
    border-bottom:2px solid rgba(181,18,27,.3);
    pointer-events:none;z-index:7000;top:200px;
}

/* ── TTS BAR ────────────────────────────────────── */
#tts-bar{
    position:fixed;bottom:20px;left:50%;transform:translateX(-50%);
    background:#222;color:#fff;border-radius:40px;
    padding:10px 20px;display:none;align-items:center;gap:12px;
    z-index:8000;box-shadow:0 4px 20px rgba(0,0,0,.4);font-size:14px;
}
#tts-bar.show{display:flex}
#tts-bar button{
    background:rgba(255,255,255,.15);border:none;color:#fff;
    border-radius:20px;padding:6px 14px;cursor:pointer;font-size:13px;
    transition:.2s;font-family:inherit;
}
#tts-bar button:hover{background:var(--red)}
#tts-word{color:var(--red);font-weight:700}

/* ── ARAMA OVERLAY (TAM EKRAN) ──────────────────── */
#search-overlay{
    display:none;position:fixed;inset:0;
    background:rgba(241,241,241,.97);
    backdrop-filter:blur(8px);
    z-index:9998;flex-direction:column;
}
#search-overlay.open{display:flex}
.search-fullscreen{
    display:flex;flex-direction:column;height:100%;
    width:100%;max-width:780px;margin:0 auto;padding:0 28px;
}
.search-fs-top{
    display:flex;align-items:center;justify-content:space-between;
    padding:22px 0;border-bottom:1px solid #e0e0e0;flex-shrink:0;
}
.search-fs-top .sf-logo{
    font-size:15px;font-weight:700;color:#333;letter-spacing:.3px;
}
.search-close{
    background:#fff;border:1px solid #ddd;
    border-radius:8px;padding:7px 14px;cursor:pointer;font-size:13px;
    color:#555;transition:.2s;display:flex;align-items:center;gap:6px;
    font-family:inherit;font-weight:500;
}
.search-close:hover{background:var(--red);color:#fff;border-color:var(--red)}
.search-input-wrap{
    display:flex;align-items:center;gap:14px;
    margin:28px 0 0;
    background:#fff;border:2px solid var(--red);
    border-radius:14px;padding:14px 20px;
    box-shadow:0 4px 20px rgba(181,18,27,.1);
    flex-shrink:0;
}
.search-input-wrap svg{width:22px;height:22px;fill:var(--red);flex-shrink:0}
.search-input-wrap input{
    flex:1;background:transparent;border:none;
    font-size:clamp(18px,3vw,24px);color:#222;
    outline:none;font-family:inherit;font-weight:400;caret-color:var(--red);
}
.search-input-wrap input::placeholder{color:#bbb}
.search-input-wrap kbd{
    background:#f5f5f5;color:#999;font-size:12px;
    padding:4px 10px;border-radius:6px;font-family:inherit;
    border:1px solid #e0e0e0;flex-shrink:0;
}
.search-body{flex:1;overflow-y:auto;padding:28px 0}
.search-section-label{
    font-size:11px;color:#aaa;margin-bottom:12px;
    text-transform:uppercase;letter-spacing:1.2px;font-weight:700;
}
.search-tags{display:flex;flex-wrap:wrap;gap:8px}
.search-tags span{
    background:#fff;border:1.5px solid #e5e5e5;
    color:#444;font-size:13px;padding:7px 16px;
    border-radius:20px;cursor:pointer;transition:.2s;
    box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.search-tags span:hover{background:var(--red);color:#fff;border-color:var(--red)}
/* Hızlı erişim */
.search-quick-links{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.search-quick-item{
    display:flex;align-items:center;gap:12px;
    background:#fff;border:1.5px solid #e5e5e5;border-radius:12px;
    padding:14px 16px;text-decoration:none;transition:.2s;
    box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.search-quick-item:hover{border-color:var(--red);transform:translateY(-2px);box-shadow:0 6px 16px rgba(181,18,27,.1)}
.sqi-icon{font-size:22px;flex-shrink:0}
.search-quick-item strong{display:block;font-size:14px;color:#222;font-weight:600;margin-bottom:2px}
.search-quick-item span{font-size:12px;color:#888}
/* Sonuçlar */
.search-results-label{
    font-size:11px;color:#aaa;margin-bottom:14px;
    text-transform:uppercase;letter-spacing:1.2px;font-weight:700;
}
.search-result-item{
    padding:14px 16px;border-radius:12px;cursor:pointer;
    transition:.15s;display:flex;align-items:flex-start;gap:12px;margin-bottom:6px;
    background:#fff;border:1.5px solid #e5e5e5;
}
.search-result-item:hover{border-color:var(--red);box-shadow:0 4px 12px rgba(181,18,27,.08)}
.sri-icon{
    width:38px;height:38px;background:var(--red-light);
    border-radius:10px;display:flex;align-items:center;justify-content:center;
    flex-shrink:0;margin-top:1px;
}
.sri-icon svg{width:16px;height:16px;fill:var(--red)}
.search-result-item h4{font-size:15px;font-weight:600;color:#222;margin-bottom:3px}
.search-result-item p{font-size:13px;color:#888;line-height:1.4}
.search-empty{
    text-align:center;padding:48px 0;
    color:#bbb;font-size:16px;
}

/* ── TOPBAR ─────────────────────────────────────── */
.topbar{background:#f4f4f4;color:#444;font-size:13px;padding:7px 0}
.topbar .inner{
    max-width:1200px;margin:0 auto;padding:0 20px;
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;
}
.topbar a{color:#555;text-decoration:none;margin-left:14px;transition:color .2s}
.topbar a:hover{color:var(--red)}
.tb-left{display:flex;gap:16px;align-items:center}
.tb-left span{display:flex;align-items:center;gap:5px;font-size:12px;color:#444}

/* ── NAV DROPDOWN ───────────────────────────────── */
.nav-dropdown{position:relative}
.nav-dropdown-btn{
    display:flex;align-items:center;gap:4px;
    background:none;border:none;cursor:pointer;
    color:#444;font-size:15px;font-family:inherit;
    padding:7px 13px;border-radius:6px;
    font-weight:600;transition:all .2s;white-space:nowrap;
}
.nav-dropdown-btn:hover,.nav-dropdown:hover .nav-dropdown-btn{
    color:var(--red);background:var(--red-light);
}
.nav-dropdown-btn svg{transition:transform .25s}
.nav-dropdown:hover .nav-dropdown-btn svg{transform:rotate(180deg)}
.nav-dropdown-menu{
    display:none;position:absolute;
    top:100%;
    left:0;
    background:#fff;border-radius:10px;min-width:200px;
    box-shadow:0 8px 28px rgba(0,0,0,.12);
    border:1px solid var(--border);overflow:visible;z-index:999;
    padding-top:6px;
}
.nav-dropdown:hover .nav-dropdown-menu{display:block}
.nav-dropdown-menu>a{
    display:block;padding:11px 18px;
    font-size:14px;font-weight:500;color:#333;
    text-decoration:none;transition:all .15s;
    border-bottom:1px solid #f5f5f5;
}
.nav-dropdown-menu>a:last-child{border-bottom:none}
.nav-dropdown-menu>a:hover{background:var(--red-light);color:var(--red);padding-left:22px}

/* ── 2. SEVİYE DROPDOWN ─────────────────────────── */
.nav-dropdown-sub{position:relative}
.nav-dropdown-sub-trigger{
    display:flex;align-items:center;justify-content:space-between;
    padding:11px 18px;font-size:14px;font-weight:500;color:#333;
    text-decoration:none;transition:all .15s;
    border-bottom:1px solid #f5f5f5;
}
.nav-dropdown-sub-trigger:hover{background:var(--red-light);color:var(--red)}
.nav-dropdown-sub-trigger svg{flex-shrink:0;transition:transform .2s;opacity:.4}
.nav-dropdown-sub-menu{
    display:none;position:absolute;top:0;left:100%;
    background:#fff;border-radius:10px;min-width:190px;
    box-shadow:0 8px 28px rgba(0,0,0,.12);
    border:1px solid var(--border);z-index:1000;
    padding-left:4px;
}
.nav-dropdown-sub:hover .nav-dropdown-sub-menu{display:block}
.nav-dropdown-sub:hover .nav-dropdown-sub-trigger{background:var(--red-light);color:var(--red)}
.nav-dropdown-sub:hover .nav-dropdown-sub-trigger svg{transform:rotate(0deg);opacity:.8}
.nav-dropdown-sub-menu a{
    display:block;padding:11px 18px;
    font-size:14px;font-weight:500;color:#333;
    text-decoration:none;transition:all .15s;
    border-bottom:1px solid #f5f5f5;
}
.nav-dropdown-sub-menu a:last-child{border-bottom:none}
.nav-dropdown-sub-menu a:hover{background:var(--red-light);color:var(--red);padding-left:22px}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar{
    background:var(--white);border-bottom:2px solid var(--red);
    position:sticky;top:0;z-index:900;box-shadow:var(--sh);
}
.navbar .inner{
    max-width:1200px;margin:0 auto;padding:0 20px;
    display:flex;align-items:center;justify-content:space-between;
    height:84px;gap:16px;
}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0}
.logo-icon{width:44px;height:44px;background:var(--red);border-radius:8px;display:flex;align-items:center;justify-content:center}
.logo-icon svg{width:26px;height:26px;fill:#fff}
.logo-text{display:flex;flex-direction:column}
.logo-text .site-name{font-size:17px;font-weight:700;color:var(--red);line-height:1.2}
.logo-text .site-sub{font-size:13px;color:var(--text-muted);display:block}
nav{display:flex;align-items:center;gap:2px}
nav a{
    text-decoration:none;color:#444;font-size:15px;
    padding:7px 13px;border-radius:6px;transition:all .2s;
    font-weight:600;white-space:nowrap;
}
nav a:hover,nav a.active{color:var(--red);background:var(--red-light)}
.hamburger{
    display:none;background:none;border:none;cursor:pointer;
    padding:6px;flex-direction:column;gap:5px;
}
.hamburger span{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:.3s}
#mobile-menu{
    display:none;background:var(--white);
    border-top:1px solid var(--border);padding:12px 20px;
}
#mobile-menu a{
    display:block;padding:10px 0;color:var(--text);
    text-decoration:none;font-size:15px;border-bottom:1px solid var(--border);
}
#mobile-menu a:last-child{border-bottom:none}

/* ── SLIDER ─────────────────────────────────────── */
.slider-wrap{position:relative;overflow:hidden;height:520px}
.slider-track{display:flex;height:100%;transition:transform .7s cubic-bezier(.77,0,.18,1)}
.slide{min-width:100%;height:100%;position:relative;flex-shrink:0}
.slide-img{width:100%;height:100%;object-fit:cover;display:block}
.slide-overlay{
    position:absolute;inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.3) 60%,transparent 100%);
}
.slide-content{
    position:absolute;bottom:0;left:0;right:0;
    padding:52px 60px;max-width:680px;
}
.slide-badge{
    display:inline-block;background:var(--red);color:#fff;
    font-size:12px;font-weight:700;padding:4px 12px;
    border-radius:4px;margin-bottom:14px;letter-spacing:.5px;
}
.slide-content h2{
    font-size:clamp(22px,4vw,42px);font-weight:700;color:#fff;
    line-height:1.2;margin-bottom:12px;text-shadow:0 2px 8px rgba(0,0,0,.3);
}
.slide-content p{
    font-size:16px;color:rgba(255,255,255,.88);
    margin-bottom:22px;line-height:1.6;max-width:460px;
}
.slide-btn{
    display:inline-flex;align-items:center;gap:8px;
    background:#fff;color:var(--red);font-weight:700;font-size:14px;
    padding:11px 22px;border-radius:8px;text-decoration:none;transition:.2s;
}
.slide-btn:hover{background:var(--red);color:#fff}
.slider-prev,.slider-next{
    position:absolute;top:50%;transform:translateY(-50%);
    background:rgba(255,255,255,.15);backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.25);color:#fff;
    width:48px;height:48px;border-radius:50%;cursor:pointer;
    font-size:20px;z-index:10;transition:.2s;
    display:flex;align-items:center;justify-content:center;
}
.slider-prev{left:20px}.slider-next{right:20px}
.slider-prev:hover,.slider-next:hover{background:var(--red);border-color:var(--red)}
.slider-dots{
    position:absolute;bottom:18px;left:50%;transform:translateX(-50%);
    display:flex;gap:8px;z-index:10;
}
.slider-dots span{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4);cursor:pointer;transition:.3s}
.slider-dots span.on{background:#fff;width:24px;border-radius:4px}
.slider-progress{position:absolute;bottom:0;left:0;height:3px;background:var(--red);z-index:10;transition:width .1s linear}

/* ── ARAMA BANT ─────────────────────────────────── */
.search-band{background:var(--red);padding:18px 20px}
.search-band-inner{max-width:800px;margin:0 auto}
.search-band-btn{
    width:100%;background:#fff;border:none;border-radius:40px;
    padding:15px 24px;display:flex;align-items:center;gap:12px;
    cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.2);
    transition:.2s;font-family:inherit;
}
.search-band-btn:hover{transform:translateY(-1px);box-shadow:0 8px 28px rgba(0,0,0,.25)}
.search-band-btn svg{width:20px;height:20px;fill:var(--red);flex-shrink:0}
.search-band-btn span{font-size:16px;color:#aaa;text-align:left;flex:1}
.search-band-btn kbd{background:#f0f0f0;color:#888;font-size:12px;padding:3px 8px;border-radius:4px;font-family:inherit}

/* ── HIZLI ERİŞİM ───────────────────────────────── */
.quick-section{padding:44px 20px 0}
.quick-section .inner{max-width:1200px;margin:0 auto}
.quick-title{text-align:center;margin-bottom:28px}
.quick-title h2{font-size:20px;font-weight:700;color:var(--text)}
.quick-title p{font-size:14px;color:var(--text-muted);margin-top:4px}
.quick-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.quick-card{
    background:var(--white);border-radius:14px;padding:22px 12px 18px;
    text-align:center;box-shadow:var(--sh);border:1.5px solid transparent;
    text-decoration:none;color:var(--text);transition:all .25s;
    position:relative;overflow:hidden;
}
.quick-card::before{
    content:'';position:absolute;bottom:0;left:0;right:0;
    height:3px;background:var(--red);transform:scaleX(0);transition:.3s;
}
.quick-card:hover{transform:translateY(-5px);border-color:var(--red);box-shadow:0 12px 28px rgba(181,18,27,.12)}
.quick-card:hover::before{transform:scaleX(1)}
.qc-icon{
    width:52px;height:52px;border-radius:14px;
    margin:0 auto 12px;display:flex;align-items:center;justify-content:center;transition:.25s;
}
.quick-card:hover .qc-icon{transform:scale(1.1)}
.qc-r{background:#fdeaea}
.qc-b{background:#e8f0fe}
.qc-g{background:#e8f5e9}
.qc-o{background:#fff3e0}
.qc-p{background:#f3e5f5}
.qc-t{background:#e0f7fa}
.qc-icon svg{width:24px;height:24px}
.qc-r svg{fill:#B5121B}
.qc-b svg{fill:#1565c0}
.qc-g svg{fill:#2e7d32}
.qc-o svg{fill:#e65100}
.qc-p svg{fill:#6a1b9a}
.qc-t svg{fill:#00838f}
.quick-card h3{font-size:13px;font-weight:700;margin-bottom:3px;color:var(--text)}
.quick-card p{font-size:11px;color:var(--text-muted);line-height:1.4}

/* ── SECTIONS GENEL ─────────────────────────────── */
.section{padding:56px 20px}
.section-inner{max-width:1200px;margin:0 auto}
.sec-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:28px;flex-wrap:wrap;gap:10px}
.sec-hdr h2{font-size:22px;font-weight:700;color:var(--text);display:flex;align-items:center;gap:10px}
.sec-hdr h2::before{content:'';display:block;width:4px;height:24px;background:var(--red);border-radius:2px;flex-shrink:0}
.see-all{
    color:var(--red);text-decoration:none;font-size:14px;font-weight:600;
    border:1.5px solid var(--red);padding:6px 16px;border-radius:6px;transition:.2s;
}
.see-all:hover{background:var(--red);color:#fff}
.bg-white{background:var(--white)}

/* ── DUYURULAR ──────────────────────────────────── */
.duyuru-list{display:flex;flex-direction:column;gap:12px}
.duyuru-item{
    background:var(--white);border-radius:var(--r);border:1px solid var(--border);
    padding:18px 20px;display:flex;gap:16px;align-items:flex-start;
    box-shadow:var(--sh);transition:all .2s;border-left:4px solid transparent;
    cursor:pointer;
}
.duyuru-item:hover{
    border-left-color:var(--red);
    transform:translateX(4px);
    box-shadow:0 4px 20px rgba(181,18,27,.1);
    background:#fffafa;
}
.duyuru-date{
    flex-shrink:0;background:var(--red);color:#fff;
    border-radius:8px;padding:8px 12px;text-align:center;min-width:54px;
}
.duyuru-date .day{font-size:22px;font-weight:700;line-height:1}
.duyuru-date .mon{font-size:11px;text-transform:uppercase;letter-spacing:.5px;opacity:.85}
.duyuru-content h3{font-size:15px;font-weight:600;margin-bottom:5px}
.duyuru-content p{font-size:13px;color:var(--text-muted);line-height:1.5}
.dtag{display:inline-block;font-size:11px;padding:2px 9px;border-radius:4px;font-weight:600;margin-top:6px}
.t-b{background:#e8f0fe;color:#1565c0}
.t-r{background:#fdeaea;color:#b71c1c}
.t-g{background:#e8f5e9;color:#2e7d32}

/* ── ETKİNLİKLER ────────────────────────────────── */
.etk-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.etk-card{
    background:var(--white);border-radius:14px;overflow:hidden;
    box-shadow:var(--sh);border:1px solid var(--border);transition:all .25s;
}
.etk-card:hover{transform:translateY(-5px);box-shadow:0 16px 36px rgba(0,0,0,.1)}
.etk-img{height:170px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.etk-img img{width:100%;height:100%;object-fit:cover;display:block}
.etk-img-icon{font-size:52px;opacity:.25}
.etk-badge{
    position:absolute;top:12px;left:12px;background:var(--red);color:#fff;
    font-size:11px;font-weight:700;padding:5px 10px;border-radius:6px;
}
.etk-body{padding:16px}
.etk-body h3{font-size:15px;font-weight:700;margin-bottom:6px}
.etk-body p{font-size:13px;color:var(--text-muted);margin-bottom:12px;line-height:1.5}
.etk-meta span{font-size:12px;color:var(--text-muted);display:flex;align-items:center;gap:5px;margin-bottom:3px}
.etk-meta svg{width:12px;height:12px;fill:var(--red)}

/* ── İSTATİSTİKLER ──────────────────────────────── */
.stats-band{
    background:linear-gradient(135deg,var(--red-dark) 0%,var(--red) 100%);
    color:#fff;padding:44px 20px;
}
.stats-grid{
    max-width:1200px;margin:0 auto;
    display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;
}
.stat-item .stat-num{font-size:40px;font-weight:800;line-height:1}
.stat-item .stat-label{font-size:14px;opacity:.85;margin-top:6px}
.stat-item .stat-icon{font-size:24px;margin-bottom:8px;opacity:.7}

/* ── HİZMETLER ──────────────────────────────────── */
.hiz-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.hiz-card{
    background:var(--white);border-radius:14px;padding:26px 22px;
    box-shadow:var(--sh);border:1.5px solid transparent;
    transition:all .25s;position:relative;overflow:hidden;
}
.hiz-card::after{
    content:'';position:absolute;top:0;right:0;width:80px;height:80px;
    border-radius:50%;background:var(--red-light);
    transform:translate(30px,-30px);transition:.3s;
}
.hiz-card:hover{border-color:var(--red);transform:translateY(-4px)}
.hiz-card:hover::after{transform:translate(20px,-20px);background:#fdeaea}
.hiz-icon{
    width:54px;height:54px;background:var(--red-light);border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;position:relative;z-index:1;
}
.hiz-icon svg{width:26px;height:26px;fill:var(--red)}
.hiz-card h3{font-size:16px;font-weight:700;margin-bottom:8px;position:relative;z-index:1}
.hiz-card p{font-size:13px;color:var(--text-muted);line-height:1.6;position:relative;z-index:1}
.hiz-card a{
    display:inline-block;margin-top:14px;color:var(--red);
    font-size:13px;font-weight:700;text-decoration:none;position:relative;z-index:1;
}
.hiz-card a:hover{text-decoration:underline}

/* ── BAŞARI HİKAYELERİ ──────────────────────────── */
.hikaye-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.hikaye-card{
    background:var(--white);border-radius:14px;padding:26px 22px;
    box-shadow:var(--sh);border:1px solid var(--border);position:relative;
}
.hikaye-card::before{
    content:'\201C';position:absolute;top:16px;right:20px;
    font-size:64px;color:var(--red);opacity:.1;
    font-family:Georgia,serif;line-height:1;
}
.hikaye-q{font-size:14px;color:var(--text-muted);line-height:1.75;margin-bottom:18px;font-style:italic}
.hikaye-author{display:flex;align-items:center;gap:10px}
.avatar{
    width:40px;height:40px;border-radius:50%;background:var(--red);
    color:#fff;display:flex;align-items:center;justify-content:center;
    font-size:14px;font-weight:700;flex-shrink:0;
}
.hikaye-author .ai p{font-size:14px;font-weight:600;margin:0}
.hikaye-author .ai span{font-size:12px;color:var(--text-muted)}

/* ── SSS ────────────────────────────────────────── */
.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden}
.faq-q{
    width:100%;text-align:left;background:none;border:none;
    padding:16px 20px;font-size:15px;font-weight:600;color:var(--text);
    cursor:pointer;display:flex;justify-content:space-between;align-items:center;
    gap:12px;transition:.2s;font-family:inherit;
}
.faq-q:hover{background:var(--red-light)}
.faq-q .arr{flex-shrink:0;transition:transform .3s;color:var(--red);font-size:20px}
.faq-q.open .arr{transform:rotate(180deg)}
.faq-a{
    display:none;padding:0 20px 16px;
    font-size:14px;color:var(--text-muted);line-height:1.7;
    border-top:1px solid var(--border);
}
.faq-a.show{display:block}

/* ── CTA BÖLÜMÜ ─────────────────────────────────── */
.cta-section{
    background:linear-gradient(135deg,var(--red) 0%,#d63a41 100%);
    padding:56px 20px;text-align:center;
}
.cta-section h2{font-size:28px;font-weight:800;color:#fff;margin-bottom:12px}
.cta-section>p{
    color:rgba(255,255,255,.88);font-size:17px;
    max-width:520px;margin:0 auto 32px;
}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta-btn-w{
    background:#fff;color:var(--red);padding:13px 26px;border-radius:9px;
    text-decoration:none;font-weight:700;font-size:15px;transition:.2s;
    display:flex;align-items:center;gap:8px;
}
.cta-btn-w:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.2)}
.cta-btn-t{
    background:transparent;color:#fff;padding:13px 26px;border-radius:9px;
    text-decoration:none;font-weight:600;font-size:15px;
    border:2px solid rgba(255,255,255,.5);transition:.2s;
    display:flex;align-items:center;gap:8px;
}
.cta-btn-t:hover{border-color:#fff;background:rgba(255,255,255,.1)}

/* ── FOOTER ─────────────────────────────────────── */
footer{background:#111;color:#bbb;padding:52px 20px 24px}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:36px}
.fb .fbl{display:flex;align-items:center;gap:10px;margin-bottom:14px;text-decoration:none}
.fb .fbl .lbx{
    width:38px;height:38px;background:var(--red);border-radius:7px;
    display:flex;align-items:center;justify-content:center;
}
.fb .fbl .lbx svg{width:22px;height:22px;fill:#fff}
.fb .fbl span{font-size:16px;font-weight:700;color:#fff}
.fb>p{font-size:13px;line-height:1.7;max-width:240px}
footer h4{font-size:14px;font-weight:600;color:#fff;margin-bottom:14px}
footer ul{list-style:none;display:flex;flex-direction:column;gap:9px}
footer ul li a{color:#999;text-decoration:none;font-size:13px;transition:.2s}
footer ul li a:hover{color:#fff}
.fc p{font-size:13px;margin-bottom:8px;display:flex;align-items:flex-start;gap:8px}
.fc svg{width:14px;height:14px;fill:#888;flex-shrink:0;margin-top:2px}
.footer-bottom{
    border-top:1px solid #222;padding-top:20px;
    display:flex;justify-content:space-between;align-items:center;
    flex-wrap:wrap;gap:10px;font-size:12px;color:#666;
}
.footer-bottom a{color:#888;text-decoration:none}
.footer-bottom a:hover{color:#fff}
.socials{display:flex;gap:8px}
.socials a{
    width:34px;height:34px;background:#1e1e1e;border-radius:7px;
    display:flex;align-items:center;justify-content:center;transition:.2s;
}
.socials a:hover{background:var(--red)}
.socials svg{width:15px;height:15px;fill:#888}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:960px){
    .quick-grid{grid-template-columns:repeat(3,1fr)}
    .etk-grid,.hiz-grid,.hikaye-grid{grid-template-columns:repeat(2,1fr)}
    .stats-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
    nav{display:none}
    .hamburger{display:flex}
    .quick-grid{grid-template-columns:repeat(2,1fr)}
    .etk-grid,.hiz-grid,.hikaye-grid{grid-template-columns:1fr}
    .stats-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid{grid-template-columns:1fr}
    .slide-content{padding:30px 24px}
    #a11y-toggle{font-size:10px;padding:8px 5px}
    .duyuru-item{flex-direction:column}
}

/* ── SAYFA HERO ─────────────────────────────────── */
.page-hero{
    background:linear-gradient(135deg,#B5121B,#8B0D13);
    color:#fff;
    padding:40px 20px;
}

.page-hero-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.page-hero h1{font-size:32px;font-weight:800;margin-bottom:8px}
.page-hero p{font-size:15px;opacity:.85;margin:0}
.breadcrumb{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    opacity:.8;
    margin-bottom:0;
    flex-wrap:wrap;
}
.breadcrumb a{color:#fff;text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}

/* ── DETAIL LAYOUT ──────────────────────────────── */
.detail-layout{display:grid;grid-template-columns:1fr 300px;gap:32px;align-items:start}
.detail-content{font-size:15px;line-height:1.8;color:#444}
.detail-info-card{background:#fff;border:1px solid #e5e5e5;border-radius:14px;padding:20px;margin-bottom:16px}
.detail-info-card h3{font-size:14px;font-weight:700;color:#333;margin:0 0 16px;padding-bottom:10px;border-bottom:1px solid #f0f0f0}
.info-row{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px}
.info-row:last-child{margin-bottom:0}
.info-icon{font-size:20px;flex-shrink:0}
.info-row small{font-size:11px;color:#aaa;display:block;margin-bottom:2px}
.info-row p{font-size:14px;color:#333;margin:0;font-weight:600}
.detail-back-btn{display:block;text-align:center;background:#f5f5f5;color:#555;text-decoration:none;border-radius:8px;padding:10px;font-size:13px;font-weight:600;transition:.2s}
.detail-back-btn:hover{background:#fdeaea;color:#B5121B}

/* ── GALERİ ─────────────────────────────────────── */
.galeri-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.galeri-item{display:block;border-radius:10px;overflow:hidden;aspect-ratio:4/3}
.galeri-item img{width:100%;height:100%;object-fit:cover;transition:.3s}
.galeri-item:hover img{transform:scale(1.05)}

/* ── ETKİNLİK KART LİNK ────────────────────────── */
.etk-card-link{text-decoration:none;color:inherit;display:block}
.etk-card-link:hover{transform:translateY(-4px)}

/* ── BOŞ DURUM ──────────────────────────────────── */
.empty-state{text-align:center;padding:60px 20px;color:#aaa}
.empty-state p{font-size:15px;margin-top:12px}

/* ── İLETİŞİM ───────────────────────────────────── */
.iletisim-layout{display:grid;grid-template-columns:1fr 1.5fr;gap:32px;align-items:start}
.iletisim-info{display:flex;flex-direction:column;gap:16px}
.iletisim-card{background:#fff;border:1px solid #e5e5e5;border-radius:14px;padding:20px;display:flex;flex-direction:column;gap:6px}
.iletisim-icon{font-size:28px}
.iletisim-card h3{font-size:14px;font-weight:700;color:#333;margin:0}
.iletisim-card p{font-size:14px;color:#555;margin:0;line-height:1.6}
.iletisim-card a{color:#B5121B;text-decoration:none}
.iletisim-card a:hover{text-decoration:underline}
.iletisim-form-wrap{background:#fff;border:1px solid #e5e5e5;border-radius:14px;padding:28px}
.form-group{margin-bottom:18px}
.form-group label{font-size:13px;font-weight:600;color:#333;display:block;margin-bottom:6px}
.form-input{width:100%;border:1.5px solid #e0e0e0;border-radius:8px;padding:10px 14px;font-size:14px;outline:none;font-family:inherit;transition:.2s;box-sizing:border-box}
.form-input:focus{border-color:#B5121B}
.form-input.is-invalid{border-color:#B5121B;background:#fffafa}
.form-textarea{min-height:120px;resize:vertical}
.form-error{font-size:11px;color:#B5121B;font-weight:600;display:block;margin-top:4px}
.form-success{background:#e8f5e9;color:#2e7d32;border:1px solid #c8e6c9;border-radius:8px;padding:12px 16px;margin-bottom:16px;font-size:14px}
.form-submit{background:#B5121B;color:#fff;border:none;border-radius:8px;padding:12px 28px;font-size:14px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;gap:8px;transition:.2s}
.form-submit:hover{background:#8B0D13}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:900px){
    .detail-layout{grid-template-columns:1fr}
    .iletisim-layout{grid-template-columns:1fr}
    .galeri-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .page-hero h1{font-size:24px}
    .galeri-grid{grid-template-columns:repeat(2,1fr)}
}
