/* ============================================
   İNNOVA PREMIUM IPTV — Tema
   Koyu zemin + elektrik mavisi, premium & dönüşüm odaklı
   ============================================ */

:root {
    --bg:           #0a0e1a;   /* derin lacivert-siyah */
    --bg-2:         #0f1626;   /* kart zemini */
    --bg-3:         #141d33;   /* yükseltilmiş yüzey */
    --line:         #1e2a45;   /* ince çizgi */
    --primary:      #0a84ff;   /* elektrik mavisi */
    --primary-2:    #2da0ff;   /* açık mavi */
    --primary-glow: rgba(10,132,255,.45);
    --accent:       #00d4ff;   /* camgöbeği vurgu */
    --wa:           #25d366;   /* whatsapp yeşili */
    --wa-dark:      #1da851;
    --text:         #eaf1fb;
    --text-dim:     #9fb0cc;
    --text-mute:    #64748b;
    --radius:       16px;
    --radius-sm:    10px;
    --max:          1200px;
    --shadow:       0 18px 50px -12px rgba(0,0,0,.7);
    --shadow-glow:  0 0 0 1px rgba(10,132,255,.25), 0 12px 40px -8px var(--primary-glow);
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ambient arka plan ışıltısı */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 500px at 80% -5%, rgba(10,132,255,.13), transparent 60%),
        radial-gradient(700px 400px at 0% 10%, rgba(0,212,255,.07), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }

img { max-width: 100%; display: block; }

/* ---------- Üst bar ---------- */
.topbar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    padding: 8px 16px;
    position: relative; z-index: 5;
}
.topbar a { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,14,26,.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -.03em; }
.logo .logo-mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: grid; place-items: center; box-shadow: 0 4px 16px var(--primary-glow);
}
.logo .logo-mark svg { width: 17px; height: 17px; fill: #fff; }
.logo b { color: var(--primary-2); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
    padding: 9px 13px; font-size: 14.5px; font-weight: 600; color: var(--text-dim);
    border-radius: 8px; transition: .18s; white-space: nowrap;
}
.nav a:hover { color: #fff; background: var(--bg-3); }
.nav a.active { color: #fff; }

.header-cta {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    color: #fff; font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 10px;
    box-shadow: 0 6px 20px -4px rgba(37,211,102,.5); transition: .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px -4px rgba(37,211,102,.6); }
.header-cta svg { width: 17px; height: 17px; fill: currentColor; }

.menu-toggle { display: none; background: var(--bg-3); border: 1px solid var(--line); color: #fff; width: 42px; height: 42px; border-radius: 10px; cursor: pointer; font-size: 20px; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 56px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10,132,255,.1); border: 1px solid rgba(10,132,255,.3);
    color: var(--primary-2); font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
    letter-spacing: .02em;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--text-dim); margin-bottom: 30px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
    font-weight: 700; font-size: 15.5px; padding: 15px 26px; border-radius: 12px; cursor: pointer;
    transition: .2s; border: none;
}
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; box-shadow: 0 10px 30px -6px rgba(37,211,102,.5); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -6px rgba(37,211,102,.65); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }
.btn-ghost { background: var(--bg-3); color: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-2); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img { width: 100%; max-width: 400px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-visual::after {
    content: ''; position: absolute; inset: -20px; z-index: -1;
    background: radial-gradient(circle at 60% 40%, var(--primary-glow), transparent 70%);
    filter: blur(30px); opacity: .6;
}

.hero-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 27px; font-weight: 800; color: #fff; }
.hero-stat .lbl { font-size: 13px; color: var(--text-mute); font-weight: 600; }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 64px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-eyebrow { color: var(--primary-2); font-weight: 700; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2, .section-head h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 16.5px; }

/* ---------- Paket kartları ---------- */
.paket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 18px; }
.paket-card {
    background: linear-gradient(160deg, var(--bg-2), var(--bg)); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px 22px; text-align: center; position: relative;
    transition: .25s; overflow: hidden;
}
.paket-card:hover { transform: translateY(-5px); border-color: rgba(10,132,255,.5); box-shadow: var(--shadow-glow); }
.paket-card--one-cikan { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.paket-rozet {
    position: absolute; top: 14px; right: -32px; transform: rotate(40deg);
    background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
    font-size: 10.5px; font-weight: 800; letter-spacing: .05em; padding: 4px 36px;
}
.paket-ad { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 14px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.paket-fiyat { display: flex; align-items: baseline; justify-content: center; gap: 3px; margin-bottom: 20px; }
.paket-fiyat-num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: #fff; }
.paket-sembol { font-size: 22px; font-weight: 700; color: var(--primary-2); }
.paket-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; font-weight: 700;
    font-size: 14.5px; padding: 12px; border-radius: 10px; transition: .2s;
}
.paket-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(37,211,102,.6); }

/* ---------- Özellik kartları ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.feature-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: .22s; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(10,132,255,.4); }
.feature-ico {
    width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(10,132,255,.18), rgba(0,212,255,.1)); border: 1px solid rgba(10,132,255,.25);
}
.feature-ico svg { width: 26px; height: 26px; stroke: var(--primary-2); fill: none; stroke-width: 2; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- İçerik blokları (SEO yazıları) ---------- */
.content-block { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-bottom: 20px; }
.content-block h2, .content-block h3 { color: #fff; margin-bottom: 14px; font-size: 23px; }
.content-block h2 { position: relative; padding-left: 16px; }
.content-block h2::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 4px; border-radius: 4px; background: linear-gradient(var(--primary), var(--accent)); }
.content-block p { color: var(--text-dim); margin-bottom: 14px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block strong { color: var(--text); }

.prose-section { padding: 56px 0; }
.prose-section .wrap { max-width: 860px; }

/* ---------- SSS ---------- */
.faq-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 24px; color: var(--primary-2); transition: .2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--text-dim); font-size: 15px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Şehir / ülke ızgaraları ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px;
    padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--text-dim); transition: .18s;
}
.chip:hover { border-color: var(--primary); color: #fff; background: var(--bg-3); transform: translateY(-2px); }

.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.country-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); transition: .25s; position: relative; }
.country-card:hover { transform: translateY(-5px); border-color: rgba(10,132,255,.5); box-shadow: var(--shadow); }
.country-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.country-card .cc-body { padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; }
.country-card .cc-body b { font-family: var(--font-display); font-size: 16px; }
.country-card .cc-body span { color: var(--primary-2); font-size: 19px; }

/* ---------- Şehir banner (kod ile üretilen) ---------- */
.city-banner {
    border-radius: var(--radius); padding: 54px 40px; position: relative; overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10,132,255,.16), rgba(0,212,255,.05)),
        var(--bg-2);
    border: 1px solid var(--line); margin-bottom: 0;
}
.city-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(10,132,255,.12) 1px, transparent 1px);
    background-size: 26px 26px; opacity: .5; mask-image: linear-gradient(90deg, #000, transparent);
}
.city-banner::after {
    content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%); filter: blur(20px);
}
.city-banner .cb-inner { position: relative; z-index: 2; }
.city-banner .cb-brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--primary-2); margin-bottom: 14px; }
.city-banner h1 { font-size: clamp(30px, 5vw, 50px); color: #fff; line-height: 1.05; }
.city-banner h1 span { display: block; background: linear-gradient(120deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.city-banner .cb-tag { margin-top: 14px; color: var(--text-dim); font-size: 16px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13.5px; color: var(--text-mute); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--primary-2); }
.breadcrumb span { margin: 0 7px; }

/* ---------- Genel banner (ülke görseli) ---------- */
.page-hero-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin: 24px auto; max-width: 820px; }
.page-hero-img img { width: auto; max-width: 100%; max-height: 520px; height: auto; margin: 0 auto; display: block; }

/* ---------- CTA şeridi ---------- */
.cta-band {
    background: linear-gradient(120deg, rgba(10,132,255,.14), rgba(0,212,255,.08)); border: 1px solid rgba(10,132,255,.3);
    border-radius: var(--radius); padding: 44px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-band p { color: var(--text-dim); margin-bottom: 26px; font-size: 16.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; color: #fff; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; padding: 5px 0; transition: .15s; }
.footer-col a:hover { color: var(--primary-2); }
.footer-about p { color: var(--text-dim); font-size: 14px; margin: 14px 0; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--text-mute); font-size: 13px; }
.footer-disc { max-width: 760px; font-size: 12px; color: var(--text-mute); margin-top: 16px; line-height: 1.6; }

/* ---------- Yüzen WhatsApp butonu ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 80;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    display: grid; place-items: center; box-shadow: 0 10px 30px -4px rgba(37,211,102,.6);
    animation: floatPulse 2.5s infinite;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes floatPulse { 0%,100%{ box-shadow: 0 10px 30px -4px rgba(37,211,102,.6);} 50%{ box-shadow: 0 10px 40px 2px rgba(37,211,102,.85);} }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 12px; }
    .nav.open { display: flex; }
    .nav a { padding: 13px; width: 100%; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .hero { padding: 44px 0 36px; }
    .content-block { padding: 22px; }
    .cta-band { padding: 30px 22px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ===== IPTV Rehber & Kılavuz yazıları ===== */
.rehber-yazi{margin-bottom:48px}
.rehber-gorsel{margin-bottom:22px;border-radius:14px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,.35)}
.rehber-gorsel img{width:100%;height:auto;display:block}
.rehber-yazi h2{margin:0 0 14px;line-height:1.25}
.rehber-yazi p{margin:0 0 14px;line-height:1.75}

/* ===== Logo görselleri (header/footer) ===== */
.logo{display:inline-flex;align-items:center;text-decoration:none}
.logo-img{height:42px;width:auto;display:block}
.logo-footer img{height:40px;width:auto;display:block;opacity:.95}
@media(max-width:600px){.logo-img{height:36px}}

/* ===== Bayilik sayfası görselleri ===== */
.bayilik-gorsel{margin:0 auto 32px;max-width:760px;border-radius:14px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,.35)}
.bayilik-gorsel img{width:auto;max-width:100%;max-height:560px;height:auto;display:block;margin:0 auto}

/* ===== Anasayfa tanıtım görselleri ===== */
.home-banner{margin:0 auto 8px;max-width:820px;border-radius:16px;overflow:hidden;box-shadow:0 10px 34px rgba(0,0,0,.4)}
.home-banner.wide{max-width:900px}
.home-banner img{width:auto;max-width:100%;max-height:540px;height:auto;display:block;margin:0 auto}
.home-banner-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;max-width:760px;margin:0 auto 8px}
.home-banner-row .home-banner{margin:0;max-width:none}
.home-banner-row .home-banner img{max-height:620px}
@media(max-width:760px){.home-banner-row{grid-template-columns:1fr}}

/* ===== Anasayfa görsel açıklamaları ===== */
.home-banner-desc{max-width:820px;margin:14px auto 30px;color:var(--text-dim);line-height:1.7;text-align:center;font-size:15px}
.home-banner-desc.wide{max-width:1000px}

/* ===== İletişim sayfası buton grubu ===== */
.iletisim-btns{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px}
.iletisim-btns .btn{flex:0 1 auto}
@media(max-width:600px){.iletisim-btns{flex-direction:column}.iletisim-btns .btn{width:100%}}

/* ===== Rehber kart listesi ===== */
.rehber-kartlar{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:10px}
.rehber-kart{display:flex;flex-direction:column;background:var(--bg-2);border:1px solid var(--line);border-radius:16px;overflow:hidden;text-decoration:none;transition:transform .2s,border-color .2s}
.rehber-kart:hover{transform:translateY(-4px);border-color:var(--primary)}
.rehber-kart-img img{width:100%;height:auto;display:block}
.rehber-kart-body{padding:20px 22px 24px}
.rehber-kart-body h2{font-size:19px;line-height:1.35;margin:0 0 10px;color:var(--text)}
.rehber-kart-body p{color:var(--text-dim);font-size:14.5px;line-height:1.6;margin:0 0 14px}
.rehber-kart-link{color:var(--accent);font-weight:600;font-size:14.5px}
.rehber-liste{margin:8px 0 0;padding-left:20px;line-height:2}
.rehber-liste a{color:var(--text-dim);text-decoration:none}
.rehber-liste a:hover{color:var(--accent)}
@media(max-width:760px){.rehber-kartlar{grid-template-columns:1fr}}
