/* ================================
   Light Theme – Global
=================================== */
:root{
  --bg:#faf9f6;
  --surface:#ffffff;
  --surface-2:#f7f8fb;
  --border:#e6e8ef;
  --text:#101828;
  --muted:#667085;
  --primary:#2563eb;
  --primary-600:#1d4ed8;
  --ring:#c7d2fe;
  --success:#22c55e;
  --success-600:#16a34a;
  --shadow:0 10px 20px rgba(16,24,40,.06),0 4px 6px rgba(16,24,40,.04);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.55 "Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1180px;margin:0 auto;padding:24px}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.85);backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header .container{display:flex;align-items:center;gap:20px}
.brand{font-weight:700;color:#111827;font-size:18px}
.nav a{margin-right:14px;color:#344054}
.nav a:hover{color:#111827}

.site-footer{margin-top:48px;padding:28px 0;border-top:1px solid var(--border);color:#475467}

h1{font-size:28px;line-height:1.2;margin:12px 0 6px}
h2{font-size:22px;margin:18px 0 8px}
h3{font-size:18px;margin:10px 0 6px}
.lead{color:var(--muted)}

/* Buttons */
.btn{
  display:inline-block;padding:.6rem .6rem;border-radius:7px;
  border:1px solid #d0d5dd;background:#fff;color:#111827;font-weight:600;
}
.btn:hover{background:#f9fafb}
.btn-primary{background:var(--primary);color:#fff;border-color:var(--primary);box-shadow:0 1px 2px rgba(37,99,235,.3)}
.btn-primary:hover{background:var(--primary-600)}
.btn-ghost{background:#f2f4f7;border:1px solid #e6e8ef;color:#111827}
.btn-success{background:var(--success);border-color:var(--success);color:#053d1e}
.btn-success:hover{background:var(--success-600);border-color:var(--success-600)}
.btn-lg{padding:.5rem .5rem;border-radius:12px;    text-align: center;font-weight:800;font-size:14px}
.btn-xl{padding:.6rem 0.6rem;border-radius:14px;font-weight:800;font-size:14px}

.logo-fallback{
  width:56px;height:56px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--surface-2);border:1px dashed var(--border);color:#111827;font-weight:700;
}

/* ========== Legacy simple cards (if any) ========== */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(16,24,40,.10),0 6px 10px rgba(16,24,40,.06);
  border-color:#e2e8f0;
}
.actions{display:flex;gap:10px;margin-top:12px}

/* ================================
   HERO (Top) – 4 Cards
=================================== */
.hero-grid{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:16px}
@media (max-width:1200px){ .hero-grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:640px){ .hero-grid{grid-template-columns:1fr} }

.hero4-card{
  position:relative;
  background:#fff;
  border:1px solid #e7e5e4;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(16,24,40,.08);
  padding-bottom:14px;
}
.hero4-rank{
  position:absolute; top:8px; left:8px;
  width:34px; height:34px; border-radius:999px;
  background:#fff; border:1px solid #e6e8ef;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; color:#111827; z-index:2;
}
.hero4-score{
  position:absolute; top:8px; right:8px;
  padding:6px 10px; border-radius:12px;
  background:#0f172a; color:#fff; font-weight:700; font-size:13px;
  box-shadow:0 2px 6px rgba(0,0,0,.18); z-index:2;
}
.hero4-score .star{color:#facc15; margin-right:6px}
.hero4-logo{background:#0b0f1a; height:120px; display:flex; align-items:center; justify-content:center}
.hero4-logo img{height:72px; object-fit:contain}
.hero4-promo{
  margin:10px auto 0; width:max-content;
  background:#e0ecff; color:#1e3a8a; font-size:14px; font-weight:800;
  padding:4px 13px; border-radius:999px; border:1px solid #c7d2fe;
}
.hero4-bgrid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  padding:14px 16px 0 16px; text-align:center;
}
.bcol{background:#fff}
.bsub{color:#667085; font-size:14px; margin-bottom:4px}
.bval{font-size:14px; font-weight:800; color:#111827}
.bcap{font-weight:700; color:#101828; margin-top:-2px}
.hero4-cta{display:flex; gap:10px; justify-content:center; padding:12px 16px 6px 16px}
.hero4-tnc{color:#667085; font-size:13px; text-align:center; padding:0 16px; margin-top:4px}

/* ================================
   LIST (Below Hero) – Mobile First
=================================== */
/* tek kolon mobil görünüm */
.all-list{display:flex; flex-direction:column; gap:14px}
.list-card{
  display:block;
  padding:16px;
  border:1px solid #ece9e3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 6px 16px rgba(16,24,40,.06);
}
.lc-row{margin-bottom:12px}
.lc-row:last-child{margin-bottom:0}

/* Üst satır */
.lc-row-top{display:flex; gap:12px; align-items:center}
.lc-logo{
  width:84px;height:84px;border-radius:14px;
  background:#f2f1ee;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.lc-logo img{width:68px;height:68px;object-fit:contain}
.lc-title{margin:0 0 6px;font-size:24px;line-height:1.2}
.lc-title a{color:#101828;text-decoration:none}
.lc-sub{color:#667085;font-size:14px}
.lc-badge{
  display:inline-block;margin-top:6px;padding:6px 12px;border-radius:999px;
  font-weight:800;font-size:14px;border:1px solid #dbe7d9;background:#ecfdf3;color:#166534;
}

/* Boonused + Özellikler */
.lc-head{font-weight:900;color:#20124d;margin-bottom:6px;font-size:20px}
.lc-ul{list-style:none;margin:0;padding:0}
.lc-ul li{color:#110C2E;margin:6px 0;font-size:18px;line-height:1.35}
.lc-ul--ticks li{position:relative;padding-left:22px}
.lc-ul--ticks li::before{
  content:"";position:absolute;left:0;top:.55em;width:12px;height:12px;border-radius:50%;
  background:#22c55e;box-shadow:0 0 0 3px #c7f7d6 inset;
}

/* Butonlar (mobil) */
.lc-actions{display:flex;padding: 14px;gap:12px}
.lc-actions .btn-lg{flex:1}

/* Ödeme satırı (mobil) */
.lc-pay{display:flex;align-items:center;justify-content:center;gap:10px}
.lc-pay-chips{display:flex;gap:8px;flex-wrap:wrap}
.pay-chip{
  display:inline-block;padding:6px 10px;border-radius:999px;background:#f2f4f7;border:1px solid #e6e8ef;
  color:#344054;font-weight:700;font-size:13px;white-space:nowrap;
}
.pay-more{color:var(--primary);font-weight:700;font-size:14px;text-decoration:none}
.pay-more:hover{text-decoration:underline}

/* ================================
   LIST – Tablet (641–1023)
=================================== */
@media (min-width:641px) and (max-width:1023px){
  .list-card{
    display:grid;
    grid-template-columns: 96px 1fr 220px; /* logo | bilgi | CTA */
    gap:16px; align-items:center; padding:16px;
    border:1px solid #ece9e3;border-radius:18px;background:#fff;box-shadow:0 6px 12px rgba(16,24,40,.05);
  }
  .lc-row-top{display:grid;grid-template-columns:96px 1fr;grid-column:1 / 3;margin-bottom:0;align-items:center}
  .lc-row-bonuses{grid-column:2;grid-row:2;margin-bottom:0}
  .lc-row-bonuses .lc-ul li{font-size:16px;margin:4px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .lc-row-feats{grid-column:2;grid-row:3;margin-bottom:0}
  .lc-ul--ticks li{font-size:16px;margin:4px 0}
  .lc-actions{grid-column:3;grid-row:2 / span 2;display:flex;gap:10px;justify-content:flex-end;align-items:center;margin-bottom:0}
  .lc-pay{grid-column:2 / 4;grid-row:4;display:flex;justify-content:space-between;gap:10px;margin-bottom:0}
}

/* ================================
   LIST – Desktop (>=1024)
=================================== */
/* ================================
   LIST – Desktop (>=1024) — 5 sütun kompakt
   Logo | Title Block | Boonused | Feats | CTA(+payments)
=================================== */
@media (min-width:1024px){

  /* Kart kabuğu */
  .list-card{
    display:grid;
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 260px; /* 5 sütun */
    grid-auto-rows: auto;
    column-gap:22px; row-gap:6px;
    align-items:center;
    padding:14px 18px;
    border:1px solid #ece9e3; border-radius:18px; background:#fff;
    box-shadow:0 6px 14px rgba(16,24,40,.06);
  }

  /* Sütun-1 + Sütun-2 : logo + başlık bloğu */
  .lc-row-top{
    grid-column: 1 / 3; grid-row: 1;               /* 1-2. sütunları kapsa */
    display:grid; grid-template-columns:170px 1fr; /* içinde 2 kolon: logo | title */
    align-items:center; gap:14px; margin-bottom:0;
  }
  .lc-logo{width:138px;height:117px;border-radius:14px;background:#f2f1ee;
    display:flex;align-items:center;justify-content:center;flex-shrink:0}
  .lc-logo img{width:128px;height:107px;border-radius: 10px;object-fit:contain}

  /* — Title Block (kompakt tip) — */
  .lc-title-wrap{min-width:0}
  .lc-title{margin:0 0 4px; font-size:14px; line-height:1.25; font-weight:800}
  .lc-title a{color:#101828; text-decoration:none; display:inline-block; max-width:36ch;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
  .lc-sub{color:#667085; font-size:12px; margin:0 0 4px}
  .lc-badge{display:inline-block; padding:4px 9px; border-radius:999px;
    font-weight:800; font-size:11px; border:1px solid #dbe7d9; background:#ecfdf3; color:#166534}

  /* Sütun-3 : Boonused (başlık + 2 satır) */
  .lc-row-bonuses{
    grid-column: 3; grid-row: 1; margin-bottom:0;
  }
  .lc-head{font-weight:900; color:#20124d; margin:0 0 6px; font-size:14px}
  .lc-row-bonuses .lc-ul{margin:0;padding:0; list-style:none}
  .lc-row-bonuses .lc-ul li{
    font-size:12px; line-height:1.35; color:#110C2E; margin:3px 0;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:40ch;
  }

  /* Sütun-4 : Özellikler (tikli) */
  .lc-row-feats{
    grid-column: 4; grid-row: 1; margin-bottom:0;
  }
  .lc-row-feats .lc-ul{margin:0;padding:0; list-style:none}
  .lc-ul--ticks li{
    position:relative; padding-left:18px; margin:3px 0;
    font-size:12px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:38ch;
  }
  .lc-ul--ticks li::before{
    content:""; position:absolute; left:0; top:.55em; width:9px; height:9px; border-radius:50%;
    background:#22c55e; box-shadow:0 0 0 3px #c7f7d6 inset;
  }

  /* Sütun-5 : CTA ve altına küçük payments */
  .lc-actions{
    grid-column: 5; grid-row: 1;
    display:flex; gap:8px; justify-content:flex-end; align-items:center; margin-bottom:0;
  }
  .btn-lg{padding:.5rem .65rem; border-radius:10px; font-weight:800; font-size:14px; text-align:center}
  .btn-success{background:#22c55e; border-color:#22c55e; color:#053d1e}
  .btn-success:hover{background:#16a34a; border-color:#16a34a}
  .btn-ghost{background:#f4f6f9; border:1px solid #e6e8ef; color:#111827}

  /* Payments: CTA sütununun altında küçük */
  .lc-pay{
    grid-column: 5; grid-row: 2;                   /* butonların altı */
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    margin:2px 0 0 0;
  }
  .lc-pay-chips{display:flex; gap:6px; flex-wrap:wrap}
  .pay-chip{
    padding:2px 4px; border-radius:999px;
    background:#f2f4f7; border:1px solid #e6e8ef; color:#344054;
    font-weight:700; font-size:9px; white-space:nowrap;
  }
  .pay-more{color:#2563eb; font-weight:700; font-size:12px; text-decoration:none}
  .pay-more:hover{text-decoration:underline}
}

/* ================================
   Casino Detail Page bits
=================================== */
.casino-detail .detail-head{display:flex;gap:18px;align-items:center;margin-bottom:14px}
.casino-detail .logo{width:72px;height:72px;object-fit:contain}
.grid-2{display:grid;grid-template-columns:1.1fr .9fr;gap:20px}
@media (max-width:900px){ .grid-2{grid-template-columns:1fr} }
.kv{list-style:none;margin:0;padding:0;background:var(--surface);border:1px solid var(--border);border-radius:14px}
.kv li{display:flex;justify-content:space-between;gap:12px;padding:10px 12px;border-bottom:1px solid var(--border)}
.kv li:last-child{border-bottom:0}
.kv span{color:#475467}
.faq details{background:var(--surface);border:1px solid var(--border);margin:10px 0;padding:10px;border-radius:12px}
.faq summary{cursor:pointer;font-weight:600;color:#111827}

/* ===== Detail page headline ===== */
.detail-headline{text-align:center;margin:8px 0 12px}
.detail-headline h1{font-size:32px;margin:6px 0}
@media (max-width:720px){ .detail-headline h1{font-size:26px} }

/* hero kartını sayfada kullanırken rank rozetini gizle */
.detail-hero .hero4-rank{display:none}

/* ===== Info panels ===== */
.info-panels{
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-top:14px;
}
@media (max-width:1024px){ .info-panels{grid-template-columns:1fr; } }

.panel{
  background:#fff; border:1px solid #e6e8ef; border-radius:14px; padding:14px;
  box-shadow:0 6px 12px rgba(16,24,40,.05);
}
.panel-head{font-weight:800;color:#111827;display:flex;align-items:center;gap:8px;margin-bottom:8px}
.panel .picon{font-size:18px}

.prows{list-style:none;margin:0;padding:0}
.prows li{display:flex;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid #f0f2f7}
.prows li:last-child{border-bottom:0}
.prows span{color:#667085;font-size:14px}
.prows b{font-weight:700;color:#101828}

.panel .chips{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}
.panel .chip{
  display:inline-block;padding:6px 10px;border-radius:999px;background:#f2f4f7;border:1px solid #e6e8ef;
  color:#344054;font-weight:700;font-size:12px;white-space:nowrap;
}

/* === Detail hero: compact version of hero4 === */
.detail-hero .hero4-card{border-radius:16px;padding-bottom:8px}
.detail-hero .hero4-logo{height:90px}
.detail-hero .hero4-logo img{height:58px}
.detail-hero .hero4-promo{font-size:12px;padding:4px 10px}
.detail-hero .hero4-bgrid{gap:10px;padding:10px 12px 0}
.detail-hero .bsub{font-size:12px;margin-bottom:2px}
.detail-hero .bval{font-size:18px}
.detail-hero .bcap{font-size:12px}
.detail-hero .hero4-cta{gap:8px;padding:10px 12px 6px}
.detail-hero .btn-xl{font-size:14px;padding:.6rem .8rem;border-radius:10px}
.detail-hero .hero4-score{top:6px;right:6px;font-size:12px;padding:4px 8px}
.detail-hero .hero4-rank{display:none} /* rank gizli */


/* Detay sayfada kullanılan liste kartı (anasayfadaki ile aynı, sadece spacing kompakt) */
.detail-hero .list-card.detail-hero-list{
  border-radius:16px;
  padding:14px 16px;
  box-shadow:0 6px 12px rgba(16,24,40,.05);
}
@media (min-width:1024px){
  .detail-hero .list-card.detail-hero-list{
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 260px; /* 5 sütun düzenimiz korunur */
    column-gap:22px; row-gap:6px;
  }
}


/* Detay sayfa üst kartı (top-card): card_list’in sade versiyonu */
.detail-hero .top-card{
  border-radius:16px; padding:14px 16px; box-shadow:0 6px 12px rgba(16,24,40,.05);
}
@media (min-width:1024px){
  .detail-hero .top-card{
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 160px; /* son sütun sadece 1 buton için daha dar */
    column-gap:22px; row-gap:6px;
  }
}
/* h2 görünümü h3 ile aynı boyda kalsın */
.h2-like{font-size:inherit; font-weight:inherit; margin:inherit}


/* Blog grid */
.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:12px}
@media (max-width:900px){ .blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:640px){ .blog-grid{grid-template-columns:1fr} }

.blog-card{
  background:#fff;border:1px solid #ece9e3;border-radius:16px;padding:14px;
  box-shadow:0 6px 14px rgba(16,24,40,.06);
}
.blog-card .b-title{margin:.2rem 0 .4rem;font-size:18px}
.blog-card .b-title a{color:#101828;text-decoration:none}
.blog-card .b-title a:hover{text-decoration:underline}
.blog-card .b-excerpt{color:#475467;margin:.3rem 0 .7rem}
.blog-loader{text-align:center;color:#667085;margin:16px 0;display:none}


/* Header layout */
.header-bar{display:flex;align-items:center;justify-content:space-between;gap:16px}
.desktop-only{display:block}
.mobile-only{display:none}
@media (max-width:900px){ .desktop-only{display:none} .mobile-only{display:inline-block} }

/* Root menu */
.menu-root, .menu-sub{list-style:none;margin:0;padding:0}
.menu-root{display:flex;gap:18px}
.menu-link{color:#344054;text-decoration:none;padding:10px 6px;display:inline-block}
.menu-link:hover{color:#111827;text-decoration:underline}
.menu-item.active>.menu-link{font-weight:700;color:#111827}

/* Dropdown (desktop) */
.menu-item.has-children{position:relative}
.menu-item.has-children>.menu-sub{
  position:absolute;left:0;top:100%;min-width:200px;
  background:#fff;border:1px solid #e6e8ef;border-radius:12px;box-shadow:0 10px 16px rgba(16,24,40,.08);
  display:none; padding:8px; z-index:50;
}
.menu-item.has-children:hover>.menu-sub{display:block}
.menu-sub>.menu-item{padding:0}
.menu-sub .menu-link{padding:8px 10px;display:block}

/* Burger & mobile nav */
.burger{
  background:#fff;border:1px solid #d0d5dd;border-radius:10px;padding:8px 10px;cursor:pointer
}
.mobile-nav{
  display:none; background:#fff; border-top:1px solid #e6e8ef; box-shadow:0 10px 16px rgba(16,24,40,.08);
  padding:10px 16px;
}
.mobile-nav.open{display:block}
.mobile-nav .menu-root{display:block}
.mobile-nav .menu-item{border-bottom:1px solid #f0f2f7}
.mobile-nav .menu-item:last-child{border-bottom:0}
.mobile-nav .menu-link{display:block;padding:12px 6px}
.mobile-nav .menu-item.has-children>.menu-sub{display:none;position:static;border:0;box-shadow:none;padding:0;margin:0}
.mobile-nav .menu-item.has-children.open>.menu-sub{display:block}


/* Home — blog vitrin (4x2 grid) */
.home-blog{margin-top:24px}
.home-blog-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.home-blog-head h2{margin:0}
.home-blog-grid{
  display:grid;gap:16px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
@media (max-width:1100px){ .home-blog-grid{grid-template-columns:repeat(3,minmax(0,1fr))} }
@media (max-width:900px){ .home-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:640px){ .home-blog-grid{grid-template-columns:1fr} }

/* blog-card zaten tanımlıysa tekrar gerek yok; yoksa: */
.blog-card{
  background:#fff;border:1px solid #ece9e3;border-radius:16px;padding:20px;
  box-shadow:0 6px 14px rgba(16,24,40,.06);
}
.blog-card .b-title{margin:.2rem 0 .4rem;font-size:14px}
.blog-card .b-title a{color:#101828;text-decoration:none}
.blog-card .b-title a:hover{text-decoration:underline}
.blog-card .b-excerpt{color:#475467;margin:.3rem 0 .7rem;font-size:12px}


/* === Blog Single: Hero Slab (detail-headline) === */
.blog-single .detail-headline{
  position: relative;
  min-height: 200px;          /* masaüstü yüksekliği */
  border-radius: 20px;
  padding: 24px;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;         /* yatay merkez */
  justify-content: center;     /* dikey merkez */
  text-align: center;
  color: #0f172a;              /* koyu metin */
  overflow: hidden;
  /* Arkaplan: iki soft radial + yumuşak gradient */
 background: radial-gradient(1000px 300px at 0% 0%, rgba(37, 99, 235, .10), transparent 70%), radial-gradient(800px 260px at 100% 100%, rgb(197 34 34 / 12%), transparent 65%), linear-gradient(135deg, #ffeeee 0%, #f8fafc 55%, #fdf2f8 100%);
  box-shadow: 0 1px 2px rgba(16,24,40,.06), 0 3px 4px rgba(16,24,40,.04);
}

/* İnce doku: noktalı desen (çok soft) */
.blog-single .detail-headline::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 1px 1px, rgba(2,6,23,.06) 1px, transparent 0) 0 0/16px 16px;
  opacity:.5;
  pointer-events:none;
}

/* Dekoratif highlight: sağ üste renk lekesi */
.blog-single .detail-headline::after{
  content:"";
  position:absolute; right:-80px; top:-80px; width:240px; height:240px; border-radius:50%;
  background: radial-gradient(closest-side, rgba(37,99,235,.18), transparent 70%);
  filter: blur(6px);
  pointer-events:none;
}

/* Başlık & açıklama tipografisi */
.blog-single .detail-headline h1{
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}
.blog-single .detail-headline .lead{
  margin: 0;
  max-width: 70ch;
  color: #334155;              /* daha yumuşak ton */
}

/* Tablet & mobil uyarlamalar */
@media (max-width: 1024px){
  .blog-single .detail-headline{ min-height: 160px; padding: 20px; }
  .blog-single .detail-headline h1{ font-size: 26px; }
}
@media (max-width: 640px){
  .blog-single .detail-headline{ min-height: 120px; padding: 16px; }
  .blog-single .detail-headline h1{ font-size: 22px; }
  .blog-single .detail-headline .lead{ font-size: 14px; }
}


/* Footer grid */
.footer-grid{
  display:grid; gap:20px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-top: 24px;
}
@media (max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr} }
@media (max-width:640px){ .footer-grid{grid-template-columns:1fr} }

.site-footer{margin-top:48px;padding:28px 0;border-top:1px solid #e6e8ef;color:#475467;background:#fff}
.site-footer h3{margin:0 0 8px; font-size:16px; color:#111827}
.footer-about p{margin:.4rem 0}
.footer-list{list-style:none;margin:0;padding:0}
.footer-list li{margin:6px 0}
.footer-list a{text-decoration:none;color:#344054}
.footer-list a:hover{text-decoration:underline}
.footer-copy{margin-top:12px; text-align:center; color:#667085}


/* Kontakt sayfası */
.kontakt-hero{
  background:linear-gradient(135deg,#eef2ff 0%,#f8fafc 60%,#fdf2f8 100%);
  border:1px solid #e6e8ef;border-radius:18px;padding:22px;text-align:center;
  box-shadow:0 8px 18px rgba(16,24,40,.06);
  margin:10px 0 16px;
}
.kontakt-wrap{display:grid;grid-template-columns:1.4fr .8fr;gap:18px}
@media (max-width:900px){ .kontakt-wrap{grid-template-columns:1fr} }

.kontakt-card{background:#fff;border:1px solid #e6e8ef;border-radius:16px;padding:16px;box-shadow:0 8px 18px rgba(16,24,40,.06)}
.kontakt-side .info-box{background:#fff;border:1px solid #e6e8ef;border-radius:16px;padding:14px;margin-bottom:12px;box-shadow:0 8px 18px rgba(16,24,40,.06)}
.kontakt-form label{display:block;margin:8px 0 6px;color:#344054}
.kontakt-form input,.kontakt-form textarea{width:100%;padding:10px;border:1px solid #d0d5dd;border-radius:10px;background:#fff}
.kontakt-form input:focus,.kontakt-form textarea:focus{outline:3px solid #c7d2fe;border-color:#94a3ff}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:640px){ .grid2{grid-template-columns:1fr} }
.chk{display:flex;gap:8px;align-items:flex-start;margin-top:8px}
.alert{border-radius:10px;padding:10px;margin:8px 0}
.alert.ok{background:#ecfdf3;border:1px solid #bbf7d0;color:#166534}
.alert.err{background:#fef2f2;border:1px solid #fecaca;color:#991b1b}
.form-actions{margin-top:10px}
