/* =====================================================================
   Belora Dizayn - Ana Stil Dosyasi
   ===================================================================== */

:root {
  --renk-lacivert: #0b2f52;
  --renk-lacivert-koyu: #071f38;
  --renk-mavi: #1565c0;
  --renk-mavi-acik: #e8f1fb;
  --renk-turuncu: #f4762a;
  --renk-turuncu-koyu: #d95f16;
  --renk-yesil-whatsapp: #25d366;
  --renk-yesil-whatsapp-koyu: #1eb355;
  --renk-metin: #29323d;
  --renk-metin-soluk: #5b6774;
  --renk-arkaplan: #ffffff;
  --renk-arkaplan-alt: #f6f8fb;
  --renk-cizgi: #e3e8ef;
  --golge: 0 4px 18px rgba(11, 47, 82, 0.08);
  --golge-kart: 0 2px 10px rgba(11, 47, 82, 0.07);
  --radius: 14px;
  --radius-kucuk: 8px;
  --max-genislik: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', 'Inter', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--renk-metin);
  background: var(--renk-arkaplan);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--renk-mavi); text-decoration: none; }
ul { padding: 0; margin: 0; }
li { list-style: none; }

.container {
  max-width: var(--max-genislik);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 10px 16px;
  z-index: 10000;
}
.skip-link:focus { left: 10px; top: 10px; }

h1, h2, h3 { color: var(--renk-lacivert); line-height: 1.3; font-weight: 800; }
h1 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0 0 14px; }
h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 0 0 14px; }
h3 { font-size: 1.15rem; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--renk-metin); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-cta {
  background: var(--renk-turuncu);
  color: #fff;
  box-shadow: 0 6px 18px rgba(244, 118, 42, .35);
}
.btn-cta:hover { background: var(--renk-turuncu-koyu); }
.btn-whatsapp {
  background: var(--renk-yesil-whatsapp);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover { background: var(--renk-yesil-whatsapp-koyu); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }

/* ---------------- Topbar ---------------- */
.topbar { background: var(--renk-lacivert-koyu); color: #cfe0f2; font-size: .85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: #fff; font-weight: 600; }
.topbar-item .icon { width: 15px; height: 15px; fill: var(--renk-turuncu); }
.topbar-badge { display: flex; gap: 10px; }
.badge-mini {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .78rem;
  white-space: nowrap;
}

/* ---------------- Header / Nav ---------------- */
.site-header { background: #fff; box-shadow: var(--golge); position: sticky; top: 0; z-index: 999; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 18px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--renk-lacivert); }

.main-nav { display: flex; align-items: center; gap: 26px; flex: 1; justify-content: flex-end; }
.main-nav > ul { display: flex; gap: 22px; align-items: center; }
.main-nav > ul > li > a { font-weight: 600; color: var(--renk-metin); padding: 8px 0; }
.main-nav > ul > li > a:hover { color: var(--renk-mavi); }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: var(--golge);
  border-radius: var(--radius-kucuk);
  min-width: 240px;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--renk-cizgi);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a { display: block; padding: 8px 12px; border-radius: 6px; font-size: .92rem; color: var(--renk-metin); }
.dropdown li a:hover { background: var(--renk-mavi-acik); color: var(--renk-mavi); }

.nav-cta { padding: 11px 20px; font-size: .92rem; }

.mobil-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobil-menu-btn span { width: 26px; height: 3px; background: var(--renk-lacivert); border-radius: 2px; }

/* ---------------- Breadcrumbs ---------------- */
.breadcrumbs { background: var(--renk-arkaplan-alt); border-bottom: 1px solid var(--renk-cizgi); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; font-size: .85rem; }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--renk-metin-soluk); }
.breadcrumbs a { color: var(--renk-metin-soluk); }
.breadcrumbs span { color: var(--renk-metin); font-weight: 600; }

/* ---------------- Hero (anasayfa) ---------------- */
.hero { background: linear-gradient(135deg, var(--renk-lacivert) 0%, var(--renk-lacivert-koyu) 100%); color: #fff; padding: 60px 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; }
.hero p { color: #d7e3f0; }
.etiket {
  display: inline-block;
  background: rgba(244, 118, 42, .18);
  color: #ffb27c;
  border: 1px solid rgba(244,118,42,.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-rozetler { display: flex; flex-wrap: wrap; gap: 14px; }
.rozet { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; }
.rozet-ikon { font-size: 1.1rem; }
.hero-gorsel img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.35); }

/* ---------------- Hizmet hero (ic sayfa) ---------------- */
.hizmet-hero { background: linear-gradient(135deg, var(--renk-mavi-acik) 0%, #fff 60%); padding: 46px 0; border-bottom: 1px solid var(--renk-cizgi); }
.hizmet-hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; }
.hizmet-hero-alt { font-size: 1.08rem; color: var(--renk-metin-soluk); }
.hizmet-hero-gorsel img { border-radius: var(--radius); box-shadow: var(--golge); aspect-ratio: 4/3; object-fit: contain; object-position: center; width: 100%; background: var(--renk-arkaplan-alt); }

/* ---------------- Bolumler / Content ---------------- */
.bolum { padding: 46px 0; }
.bolum-alt { color: var(--renk-metin-soluk); margin-top: -8px; margin-bottom: 26px; }
.icerik-govde .bolum { padding: 30px 0; border-bottom: 1px solid var(--renk-cizgi); }
.icerik-govde .bolum:last-child { border-bottom: none; }
.vurgu-bolum { background: var(--renk-arkaplan-alt); border-radius: var(--radius); padding: 30px !important; border-bottom: none !important; margin: 10px 0; }

.madde-listesi { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px 20px; margin: 18px 0; }
.madde-listesi li {
  position: relative;
  padding-left: 28px;
  color: var(--renk-metin);
}
.madde-listesi li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--renk-mavi);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bolge-notu { background: var(--renk-mavi-acik); border-left: 4px solid var(--renk-mavi); padding: 14px 18px; border-radius: 0 8px 8px 0; font-size: .95rem; }

/* ---------------- Hizmet grid (anasayfa) ---------------- */
.hizmet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.hizmet-karti {
  background: #fff;
  border: 1px solid var(--renk-cizgi);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--golge-kart);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hizmet-karti:hover { transform: translateY(-4px); box-shadow: var(--golge); border-color: var(--renk-mavi); }
.hizmet-karti-ikon { font-size: 1.8rem; margin-bottom: 10px; }
.hizmet-karti h3 { font-size: 1.02rem; margin-bottom: 10px; }
.hizmet-karti-link { color: var(--renk-turuncu); font-weight: 700; font-size: .88rem; }

/* ---------------- Neden biz ---------------- */
.neden-biz-bolumu { background: var(--renk-arkaplan-alt); }
.neden-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.neden-karti { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--golge-kart); text-align: center; }
.neden-ikon { font-size: 2rem; margin-bottom: 10px; }

/* ---------------- Bolgeler ---------------- */
.bolge-grid, .alt-bolge-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.bolge-etiket, .alt-bolge-link {
  background: var(--renk-mavi-acik);
  color: var(--renk-mavi);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid transparent;
}
.bolge-etiket:hover, .alt-bolge-link:hover { background: var(--renk-mavi); color: #fff; }

/* ---------------- SSS ---------------- */
.sss-liste { display: flex; flex-direction: column; gap: 10px; }
.sss-item {
  background: #fff;
  border: 1px solid var(--renk-cizgi);
  border-radius: var(--radius-kucuk);
  padding: 6px 18px;
}
.sss-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  color: var(--renk-lacivert);
  list-style: none;
}
.sss-item summary::-webkit-details-marker { display: none; }
.sss-item summary::after { content: '+'; float: right; font-size: 1.3rem; color: var(--renk-turuncu); }
.sss-item[open] summary::after { content: '−'; }
.sss-item p { padding-bottom: 14px; margin-bottom: 0; color: var(--renk-metin-soluk); }

/* ---------------- CTA bolumu ---------------- */
.cta-bolumu, .cta-inline-bolum {
  background: linear-gradient(135deg, var(--renk-turuncu) 0%, var(--renk-turuncu-koyu) 100%);
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  padding: 44px 24px !important;
  border-bottom: none !important;
}
.cta-bolumu h2, .cta-inline-bolum h2 { color: #fff; }
.cta-bolumu p, .cta-inline-bolum p { color: #ffe6d4; }
.cta-bolumu .btn-cta, .cta-inline-bolum .btn-cta { background: #fff; color: var(--renk-turuncu-koyu); }
.cta-bolumu .hero-cta, .cta-inline-bolum .hero-cta { justify-content: center; }

/* ---------------- Iletisim sayfasi ---------------- */
.iletisim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 24px 0; }
.iletisim-karti { background: var(--renk-arkaplan-alt); border-radius: var(--radius); padding: 22px; text-align: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--renk-lacivert-koyu); color: #b9c9dc; padding-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-col p { color: #b9c9dc; font-size: .92rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-link-list li { margin-bottom: 8px; }
.footer-link-list a { color: #b9c9dc; font-size: .9rem; }
.footer-link-list a:hover { color: #fff; }
.footer-col a { color: #cfe0f2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 20px; padding: 18px 0; text-align: center; font-size: .82rem; }

/* ---------------- Sabit alt aksiyon cubugu (mobil) ---------------- */
.sabit-aksiyon-cubugu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
}
.aksiyon-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-weight: 700;
  color: #fff;
}
.aksiyon-ara { background: var(--renk-mavi); }
.aksiyon-whatsapp { background: var(--renk-yesil-whatsapp); }
.aksiyon-btn .icon { width: 18px; height: 18px; fill: #fff; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero-inner, .hizmet-hero-inner { grid-template-columns: 1fr; }
  .hero-gorsel, .hizmet-hero-gorsel { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .topbar-badge { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    box-shadow: var(--golge);
  }
  .main-nav.acik { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .dropdown { position: static; display: block !important; box-shadow: none; border: none; padding-left: 12px; max-height: none; }
  .has-dropdown .dropdown { display: none !important; }
  .has-dropdown.acik .dropdown { display: block !important; }
  .mobil-menu-btn { display: flex; }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .sabit-aksiyon-cubugu { display: flex; }
  body { padding-bottom: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
}