/* =========================
   REKOR DAĞITIM — style.css (FINAL / TEK DOSYA)
   Not: Eski/tekrarlı blokları SİLMEDİM. "DEPRECATED" diye işaretleyip pasif tuttum.
   ========================= */

html{
  overflow-y: scroll; /* scrollbar her zaman varmış gibi davran */
}

:root{
  --red:#c8102e;
  --dark:#0f0f0f;
  --white:#ffffff;
  --soft:#f4f4f4;
  --text:#1a1a1a;
  --shadow: 0 12px 30px rgba(0,0,0,.12);
  --radius:14px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.5;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

/* =========================
   TOP BAR — (DEPRECATED v1)
   Bu blok eski "topbar .container" düzeni içindi.
   Yeni HTML'de marquee var. Silmedim, pasif kalsın diye yorumladım.
   ========================= */
/*
.topbar{
  background:var(--dark);
  color:var(--white);
  font-size:14px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.topbar a{ color:var(--white); text-decoration:none; opacity:.9; }
.topbar a:hover{ opacity:1; }
*/

/* =========================
   HEADER
   ========================= */
.header{
  background:var(--white);
  border-bottom:1px solid #e8e8e8;
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;

  /* küçük stabilize */
  min-height: 86px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:inherit;
}
.brand img{
  height:58px; /* logo net görünsün */
  width:auto;
  display:block;
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{ font-size:18px; letter-spacing:.2px; }
.brand .title span{ font-size:12px; opacity:.75; }

/* =========================
   NAV — (DEPRECATED v1)
   Eski HTML .nav kullanıyordu. Yeni HTML .nav-wrap kullanıyor.
   Silmedim, pasif kalsın diye yorumladım.
   ========================= */
/*
.nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--text);
  font-weight:800;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
}
.nav a:hover{ background:var(--soft); }
*/

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:2px solid var(--red);
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
}
.btn-primary:hover{ filter:brightness(.95); }
.btn-outline{
  background:transparent;
  color:var(--red);
}
.btn-outline:hover{ background:rgba(200,16,46,.08); }

/* =========================
   HERO (GENEL)
   ========================= */
.hero{
  background: linear-gradient(135deg, var(--red), #8f0b20);
  color:var(--white);
  padding:60px 0 46px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
.hero h1{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.05;
}
.hero p{
  margin:0 0 22px;
  font-size:16px;
  opacity:.95;
  max-width:58ch;
}
.hero-box{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

/* =========================
   SECTION / CARDS
   ========================= */
.section{ padding:54px 0; }
.section h2{ margin:0 0 18px; font-size:28px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  border:1px solid #e8e8e8;
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  background:var(--white);
}
.card h3{ margin:0 0 10px; font-size:18px; }
.card p{ margin:0; opacity:.85; }

/* =========================
   FOOTER
   ========================= */
.footer{
  background:var(--dark);
  color:var(--white);
  padding:34px 0;
  margin-top:40px;
}
.footer a{ color:var(--white); opacity:.9; text-decoration:none; }
.footer a:hover{ opacity:1; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}
.footer small{ opacity:.8; }

/* =========================
   RESPONSIVE (GENEL)
   ========================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  /* .nav { display:none; }  DEPRECATED v1 zaten yorumda */
}

/* =========================
   Ana sayfa: yenilikçi kurumsal hero (ek bileşenler)
   ========================= */
.topbar-links{ display:flex; align-items:center; gap:10px; }
.sep{ opacity:.5; }

.hero-home{
  padding:70px 0 48px;
  background: linear-gradient(
    135deg,
    #f55c6e 0%,
    #ec163a 45%,
    #970228 100%
  );
  border-bottom-right-radius: 350px;
  border-top-left-radius: 350px;
}

.hero-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}

.hero-tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
  margin-bottom:14px;
}

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-mini{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.mini{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  padding:12px;
}
.mini strong{ display:block; font-size:14px; }
.mini span{ display:block; font-size:12px; opacity:.9; margin-top:2px; }

/* panel */
.panel{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 16px;
  background:rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.18);
}
.panel-head strong{ display:block; font-size:14px; }
.panel-head span{ display:block; font-size:12px; opacity:.9; margin-top:2px; }
.dot{
  width:12px; height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  box-shadow: 0 0 0 6px rgba(255,255,255,.18);
}
.panel-body{ padding:16px; }

.panel-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.bar-label{ font-size:12px; opacity:.95; margin-bottom:8px; font-weight:800; }
.bar-track{
  width:100%;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
  overflow:hidden;
}
.bar-fill{
  height:100%;
  background:rgba(255,255,255,.92);
  border-radius:999px;
}
.w85{ width:85%; }
.w75{ width:75%; }

.panel-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.p-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  padding:12px;
}
.p-card strong{ display:block; font-size:14px; }
.p-card span{ display:block; font-size:12px; opacity:.9; margin-top:3px; }

.panel-note{
  margin-top:12px;
  font-size:12px;
  opacity:.9;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.35);
}

/* Section Head */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head p{ margin:0; opacity:.75; max-width:60ch; }

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.stat{
  border:1px solid #e8e8e8;
  border-radius:16px;
  padding:16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  background:var(--white);
}
.num{
  font-size:34px;
  font-weight:900;
  color:var(--red);
  line-height:1;
}
.label{ margin-top:8px; font-weight:800; font-size:13px; opacity:.85; }

/* Soft section */
.section-soft{
  background: var(--soft);
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.box{
  background:var(--white);
  border:1px solid #e8e8e8;
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.box-outline{
  background:transparent;
  border:2px solid var(--red);
  box-shadow:none;
}
.box h3{ margin:0 0 10px; }
.box p{ margin:0; opacity:.85; }
.box-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

.ticks{
  margin:0;
  padding-left:18px;
}
.ticks li{ margin:10px 0; font-weight:800; opacity:.9; }

/* CTA */
.cta{
  border-radius:20px;
  background: linear-gradient(135deg, var(--red), #8f0b20);
  color:var(--white);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.18);
}
.cta h3{ margin:0 0 6px; font-size:20px; }
.cta p{ margin:0; opacity:.95; }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Footer helpers */
.footer-title{ font-size:16px; display:block; }
.footer-text{ margin:10px 0 0; opacity:.9; }
.footer-copy{ display:block; margin-top:12px; opacity:.85; }
.footer-links{ margin-top:10px; display:grid; gap:8px; }

/* Responsive (ek bileşenler) */
@media (max-width: 980px){
  .hero-split{ grid-template-columns:1fr; }
  .panel-row{ grid-template-columns:1fr; }
  .hero-mini{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr 1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .cta{ flex-direction:column; align-items:flex-start; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 520px){
  .stats{ grid-template-columns:1fr; }
}

/* =========================
   TOPBAR (FINAL) — Marquee
   Yeni HTML yapın: .topbar > .topbar-marquee > .topbar-track > .topbar-set
   ========================= */
.topbar{
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}

.topbar-marquee{
  overflow: hidden;
  width: 100%;
}

.topbar-track{
  display: flex;
  width: max-content;
  will-change: transform;
  /* soldan sağa akış */
  animation: topbarScrollLTR 26s linear infinite;
}

/* Her set tek satır */
.topbar-set{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 10px 24px;
}

.tb-item{ opacity:.92; font-weight:800; }
.tb-dot{ opacity:.7; }
.tb-sep{ display:inline-block; width: 36px; }

.tb-link{
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  opacity: .92;
}
.tb-link:hover{ opacity:1; text-decoration: underline; }

@keyframes topbarScrollLTR{
  from { transform: translateX(-40%); }
  to   { transform: translateX(0%); }
}

/* =========================
   NAVBAR (FINAL) — .nav-wrap / .nav-link / .nav-cta
   Menü: Ana Sayfa, Hakkımızda, Dağıtım Ağı, İş Ortaklarımız, İletişim + Bayilik Başvurusu (CTA)
   ========================= */
.nav-wrap{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-link{
  position:relative;
  padding:10px 14px;
  font-weight:800;
  font-size:14px;
  color:var(--text);
  text-decoration:none;
  border-radius:12px;
  transition: color .25s ease, background-color .25s ease, transform .15s ease;
}

.nav-link:hover{
  color:var(--red);
  background:rgba(200,16,46,.08);
  transform:translateY(-1px);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:2px;
  background:var(--red);
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.nav-link:hover::after{
  transform:scaleX(1);
}

.nav-cta{
  margin-left:10px;
  padding:12px 18px;
  font-size:14px;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(200,16,46,.25);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.nav-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(200,16,46,.35);
  filter:brightness(.98);
}

/* Responsive: küçük ekranda menüyü sakla (sonra hamburger) */
@media (max-width: 980px){
  .nav-wrap{ display:none; }
}

/* ========== HOME: Yeni HERO + 2 Kutu ========== */



.hero-split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}

.hero-left h1{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.05;
}

.hero-left p{
  margin:0;
  font-size:16px;
  opacity:.95;
  max-width:60ch;
}

/* sadece .hero içindeki hero görseli */
.hero .hero-media img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  border-radius: 15px;

  /* daha soldan başlasın */
  transform: translateX(-400px);
  opacity:0;

  /* daha ağır, premium akış */
  animation: heroImgIn 2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes heroImgIn{
  to{
    transform: translateX(0);
    opacity:1;
  }
}

.hero-below{
  padding-top:28px;
}

.home-boxes{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.home-box{
  background: var(--white);
  border:1px solid #e8e8e8;
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.home-box h3{
  margin:0 0 10px;
  font-size:18px;
}

.home-box p{
  margin:0 0 14px;
  opacity:.85;
}

/* Responsive */
@media (max-width: 980px){
  .hero-split{ grid-template-columns:1fr; }
  .hero .hero-media img{ height:260px; }
  .home-boxes{ grid-template-columns:1fr; }
}

/* Navbar aktif sayfa */
.nav-link.active{
  color: var(--red);
  background: rgba(200,16,46,.12);
}
.nav-link.active::after{
  transform: scaleX(1);
}

/* === İKİNCİ HERO === */
.hero-secondary{
  padding:70px 0 40px;
  background:#f5b43c; 
  border-bottom-left-radius: 350px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 350px;
  
}

.hero-secondary-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  align-items:center;
}

.hero-secondary-media img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:22px;
  box-shadow: 0 18px 40px rgba(3, 2, 2, 0.12);
   /* sağdan gelsin */
  transform: translateX(400px);
  opacity:0;

  animation: heroImgInRight 2s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes heroImgInRight{
  to{
    transform: translateX(0);
    opacity:1;
  }
  
}

.hero-secondary-content h2{
  margin:14px 0 16px;
  font-size:34px;
  line-height:1.15;
}

.hero-secondary-content p{
  margin:0 0 14px;
  font-size:15px;
  opacity:.9;
  max-width:52ch;
}

.hero-secondary-actions{
  margin-top:18px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* koyu etiket */
.hero-tag.dark{
  background:rgba(200,16,46,.08);
  color:var(--red);
  border:1px solid rgba(200,16,46,.2);
}

/* responsive */
@media (max-width: 980px){
  .hero-secondary-grid{
    grid-template-columns:1fr;
  }

  .hero-secondary-media img{
    height:300px;
  }
}

/* =========================
   FIX: Logo'yu hero img kurallarından izole et (ana sayfada bozulma)
   ========================= */
.brand img{
  height:58px !important;
  width:auto !important;
  max-width:none !important;
  object-fit:contain !important;
  transform:none !important;
  opacity:1 !important;
  animation:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}
/* === 3. HERO === */
.hero-third{
  padding:70px 0 40px;
  background: #4a90e2;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 350px;
  border-top-left-radius: 350px;
  border-top-right-radius: 0px;
}

.hero-third-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  align-items:center;
}

.hero-third-content h2{
  margin:0 0 16px;
  font-size:32px;
  line-height:1.15;
}

.hero-third-content p{
  margin:0 0 20px;
  font-size:15px;
  opacity:.9;
  max-width:52ch;
}

/* görsel animasyon: soldan */
.hero-third-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:22px;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);

  transform: translateX(-400px);
  opacity:0;
  animation: heroImgIn 2s cubic-bezier(.22,.61,.36,1) forwards;
}

/* responsive */
@media (max-width: 980px){
  .hero-third-grid{
    grid-template-columns:1fr;
  }
  .hero-third-media img{
    height:280px;
  }
}
/* =========================================
   HERO GRADIENT STEP SYSTEM (1-2-3)
   En sona ekle
   ========================================= */

/* hero içinde arka plan yumuşak aksın */
.hero{
  position: relative;
  overflow: hidden;
}

/* 1. HERO (en açık) */
.hero-home{
  background: linear-gradient(
    180deg,
    #f14556 0%,
    #f12446 55%,
    #c30303 100%
  );
}

/* 2. HERO (orta koyuluk) */
.hero-secondary{
  background: linear-gradient(
    180deg,
    #c30303 25%,
    #940404 55%,
    #95070c 100%
  );
}

/* 3. HERO (en koyu) — sen ekleyince bu class'ı vereceğiz */
.hero-third{
  background: linear-gradient(
    180deg,
    #95070c 25%,
    #6b0202 55%,
    #4a0012 100%
  );
}

/* Hero'lar arası geçişi "daha kusursuz" yapmak için
   section altına çok hafif gölge/duman ekliyoruz */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:80px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 100%);
  pointer-events:none;
}

/* içerik üstte kalsın */
.hero > .container{
  position: relative;
  z-index: 2;
}

/* =========================
   INTRO / HAKKIMIZDA ÖZET
   ========================= */

.intro-about{
  padding: 40px 0 4px;
  background: #cfd4dc; /* kurumsal gri */
  text-align: center;
}

.intro-inner{
  max-width: 720px;
}

.intro-logo{
  margin-top: 0%;
  height: 150px;
  width: auto;
}

.intro-text{
  margin-top: 0px;
  font-size: 26px;
  line-height: 1.6;
  opacity: .95;
  margin: 0 0 22px;
}
/* Kaligrafi vurgu – premium imza */
.intro-signature{
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #000000;
}

.hero-home{
  position: relative; /* şart */
  overflow: visible;   /* taşanı kesmek istersen */
}

/* sola sıfır, kare blok */
.hero-home::before{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:400px;        /* karenin genişliği */
  height:400px;       /* karenin yüksekliği */
  background:#aeb1b8;
  border-radius: 0px; /* istersen köşeyi yumuşat */
  z-index: -1;
}
.hero-home .container{
  position: relative;
  z-index: 2;
}

/* HERO 1 – SAĞ ALT DİKDÖRTGEN */
.hero-home{
  position: relative; /* yoksa şart */
}

.hero-home::after{
  content:"";
  position:absolute;

  right:0;
  top:0;

  width:400px;
  height:400px;
  background:#cfd4dc;


  z-index: -1;
}

/* HERO 2 – SAĞ ÜST DİKDÖRTGEN */
.hero-secondary{
  position: relative; /* şart */
  overflow: visible;   /* taşanı kesmek istersen */
}

.hero-secondary::before{
  content:"";
  position:absolute;
  right:0;
  top:0;

  width: 400px;
  height:400px;
  background:#aeb1b8;

  z-index:-1;
}

.hero-secondary::after{
  content:"";
  position:absolute;

  width: 400px;
  height: 400px;

  left: 0px;
  bottom: 0px;
  background:#7a7c81 ;



  z-index:-1;
}

.hero-third{
  position: relative;
  overflow: visible;

}
.hero-third::before{
  content:"";
  position:absolute;

  width: 400px;
  height: 400px;
  background:#7a7c81;
  left: 0px;
  top: 0px;



  z-index:-1;
}

.hero-third::after{
  content:"";
  position:absolute;
  background: #55565a;
  width: 400px;
  height: 400px;
  left: 1120px;
  top: 76px;
  z-index:-1;
}

.about-logo{
  width: 380px;          /* ana kontrol noktası */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.96);
  animation: logoFadeIn 6s ease-out forwards;
}


/* Avoid motion hassasiyeti olanlar için */
@media (prefers-reduced-motion: reduce){
  .about-logo{
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes logoFadeIn{
  to{
    opacity: 1;
    transform: scale(1);
  }
}

/* === Side CTA — İş Başvurusu === */
.side-cta{
  padding: 0px ;
  background: transparent;
}

.side-cta-inner{
  display:grid;
  grid-template-columns: 1fr 420px; /* sağda sabit kart */
  gap:24px;
  align-items:center;
}

.side-cta-box{
  background:#f3f4f6; /* kurumsal gri */
  border:1px solid #e5e5e5;
  border-radius:20px;
  padding:28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.side-cta-box h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
}

.side-cta-box p{
  margin:0 0 18px;
  font-size:14px;
  opacity:.85;
}

@media (max-width: 980px){
  .side-cta-inner{
    grid-template-columns:1fr;
  }

  .side-cta-box{
    width:100%;
  }
}

/* === Side CTA — İş Başvurusu (Görselli) === */
.side-cta{
  padding: 10px ;
}

.side-cta-inner{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:32px;
  align-items:center;
}

/* Görsel */
.side-cta-media img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}


/* Kart */
.side-cta-box{
  background:#f3f4f6;
  border:1px solid #e5e5e5;
  border-radius:22px;
  padding:30px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.side-cta-box h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
}

.side-cta-box p{
  margin:0 0 18px;
  font-size:14px;
  opacity:.85;
}

/* Responsive */
@media (max-width: 980px){
  .side-cta-inner{
    grid-template-columns:1fr;
  }

  .side-cta-media img{
    height:240px;
  }
}

/* =========================
   ABOUT PAGE (Hakkımızda)
   ========================= */

.about-page { padding: 28px 0 44px; }

.about-intro { margin: 10px 0 18px; }
.about-intro h1 { margin: 0 0 8px; }
.about-intro p { margin: 0; max-width: 780px; }

.about-section { margin-top: 22px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 14px;
}
.about-card h3 { margin: 0 0 8px; }
.about-card p { margin: 0; color: rgba(0,0,0,.72); line-height: 1.55; }

.about-heading p { margin: 6px 0 0; color: rgba(0,0,0,.70); max-width: 780px; }

.about-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: #c40000;
}
.about-stat span { display: block; margin-top: 6px; color: rgba(0,0,0,.72); }

.about-note { margin: 10px 0 0; color: rgba(0,0,0,.65); }

.about-two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
}

.about-two-col-media {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
}

.about-two-col-media img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; display: block; }

.about-list { margin: 12px 0 0; padding-left: 18px; color: rgba(0,0,0,.72); }
.about-list li { margin: 6px 0; }

.about-mv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-card-soft { background: #fff; }

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
}

.about-cta h2 { margin: 0 0 6px; }
.about-cta p { margin: 0; color: rgba(0,0,0,.70); }

@media (max-width: 900px) {
  .about-values { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-two-col { grid-template-columns: 1fr; }
  .about-two-col-media img { max-height: 260px; }
  .about-mv { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; align-items: flex-start; }
}

/* ===============================
   İŞ ORTAKLARIMIZ
=============================== */

.partners {
  background: #ffffff;
}

/* GRID ALANI */
.partners__gridSection {
  padding: 70px 0 90px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* KART */
.partnerCard {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 22px;
  text-align: center;
  border-radius: 14px;

  /* EŞİTLİK GARANTİSİ */
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  z-index: 1;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  grid-column: span;
}

.partnerCard:hover {
  transform: scale(1.3);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* LOGO ALANI – HİZALAMA GARANTİSİ */
.partnerCard__logo {
  height: 90px;                 /* TÜM LOGOLAR AYNI REFERANS */
  display: flex;
  align-items: center;          /* DİKEY ORTALAMA */
  justify-content: center;      /* YATAY ORTALAMA */
  margin-bottom: 14px;
}

/* LOGO */
.partnerCard__logo img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
}

/* KISA AÇIKLAMA */
.partnerCard__short {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* DETAY (DESKTOP HOVER) */
.partnerCard__detail {
  font-size: 14px;
  color: #444;
  display: none;
}

.partnerCard__detail a {
  display: inline-block;
  margin-top: 10px;
  color: #c00;
  font-weight: 600;
  text-decoration: none;
}

/* SADECE HOVER OLAN CİHAZLARDA */
@media (hover: hover) {
  .partnerCard:hover .partnerCard__detail {
    display: block;
  }
}

/* TABLET */
@media (max-width: 1200px) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBİL */
@media (max-width: 768px) {
  .partners__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* MOBİLDE DETAY HER ZAMAN GÖRÜNSÜN */
  .partnerCard__detail {
    display: block;
  }
}

/* İŞ ORTAKLARIMIZ - LOGO BOYUTU */
.logo--kucuk {
  transform: scale(1.5);
}
.logo--kucuk1{
  transform: scale(2);
}

/* İş Ortakları Üst Slogan */


.partners__headlineText {
  margin-top: 40px;
  margin-left: 50px;
  margin-bottom: 0px;
  font-size: 35px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #666;
  text-align: center;
}
/* Harf harf yazı efekti – 2 kez çalışır ve kalır */
.partners__headlineText--type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;

  /* İmleç */
  border-right: none;

  /* Metin uzunluğu kontrolü */
  --chars: 56;

  animation:
    typing 10s steps(var(--chars), end) 2 forwards,
    blinkCursor 3s step-end 6;
}

/* Yazma animasyonu */
@keyframes typing {
  0%   { width: 0; }
  40%  { width: calc(var(--chars) * 1ch); }
  60%  { width: calc(var(--chars) * 1ch); }
  100% { width: calc(var(--chars) * 1ch); }
}

/* İmleç yanıp sönme */
@keyframes blinkCursor {
  0%, 50% { border-color: #c00; }
  51%,100% { border-color: transparent; }
}

/* Hareket hassasiyeti */
@media (prefers-reduced-motion: reduce) {
  .partners__headlineText--type {
    animation: none;
    border-right: none;
  }
}

/* ===========================
   DAĞITIM AĞI – GENEL
   =========================== */

.da-intro {
  max-width: 820px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.da-intro h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.da-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* VURGU (RENK KONTROLÜ) */
.da-intro .hl {
  color: #d71920; /* Kurumsal kırmızı */
  font-weight: 600;
}

.dagitim-agi-page .da-badge-title{
  font-size: 12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(0,0,0,.6);
}

.dagitim-agi-page .da-badge-value{
  margin-top: 6px;
  font-size: 20px;
  font-weight: 800;
  color: #b30000;
}

.dagitim-agi-page .da-badge-note{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0,0,0,.55);
}

.dagitim-agi-page .da-kpi{
  padding: 22px 0 10px;
}

.dagitim-agi-page .da-kpi-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-content: center;
}

.dagitim-agi-page .da-kpi-card{
  opacity: 0;
  transform: translatey(40px);
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background:#fff;
  min-height: 86px;
  width: 280px;
  text-align: center;
}

.da-kpi-card:hover {
  transform: translateY(-18px) scale(1.015);
  box-shadow: 0 34px 66px rgba(0, 0, 0, 0.14);
  border-color: #d71920;
}

.dagitim-agi-page .da-kpi-card--accent{
  border-color: rgba(179,0,0,.35);
  background: linear-gradient(180deg, rgba(179,0,0,.06), rgba(255,255,255,1));
}
.dagitim-agi-page .da-kpi-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.dagitim-agi-page .da-kpi-value{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #b30000;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.dagitim-agi-page .da-kpi-label{
  margin-top: 6px;
  font-size: 16px;
  color: #2e3441; 
  letter-spacing: .2px;
}

.dagitim-agi-page .da-map{
  padding: 26px 0 10px;
}

.dagitim-agi-page .da-section-head h2{
  margin:0 0 6px;
  font-size: 20px;
  letter-spacing:-.01em;
}

.dagitim-agi-page .da-section-head p{
  margin:0;
  color: rgba(0,0,0,.64);
  line-height:1.6;
}

.dagitim-agi-page .da-map-card{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 14px;
  background:#fff;
}

.dagitim-agi-page .da-map-placeholder{
  border-radius: 12px;
  border: 1px dashed rgba(0,0,0,.22);
  padding: 18px;
  min-height: 280px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-align:center;
  color: rgba(0,0,0,.65);
}

.dagitim-agi-page .da-map-legend{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
  color: rgba(0,0,0,.65);
  font-size: 13px;
}

.dagitim-agi-page .da-dot{
  width:10px; height:10px;
  border-radius:999px;
  display:inline-block;
}

.dagitim-agi-page .da-dot--service{ background:#b30000; }
.dagitim-agi-page .da-dot--hq{ background: rgba(179,0,0,.35); }

.dagitim-agi-page .da-notes{
  padding: 26px 0 46px;
}

.dagitim-agi-page .da-note-grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dagitim-agi-page .da-note-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 16px;
  background:#fff;
}

.dagitim-agi-page .da-note-card h3{
  margin:0 0 8px;
  font-size: 16px;
}

.dagitim-agi-page .da-note-card p{
  margin:0;
  color: rgba(0,0,0,.65);
  line-height:1.6;
}

.dagitim-agi-page .da-cta{
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  background: #fff;
}

.dagitim-agi-page .da-cta-text strong{
  display:block;
  margin-bottom: 3px;
}

.dagitim-agi-page .da-cta-text span{
  color: rgba(0,0,0,.65);
  line-height:1.5;
}

/* Responsive */
@media (max-width: 960px){
  .dagitim-agi-page .da-hero-inner{
    flex-direction:column;
  }
  .dagitim-agi-page .da-hero-badge{
    min-width: 0;
  }
  .dagitim-agi-page .da-kpi-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .dagitim-agi-page .da-note-grid{
    grid-template-columns: 1fr;
  }
  .dagitim-agi-page .da-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* ===========================
   DAĞITIM AĞI – TÜRKİYE HARİTASI
   =========================== */

.dagitim-harita {
  padding: 48px 0;
  background: #fff;
}

.da-map-inner {
  position: relative;
}

.svg-turkiye-haritasi {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* SVG genel */
#svg-turkiye-haritasi {
  width: 100%;
  height: auto;
  display: block;
}

/* === TÜM ŞEHİRLER (DEFAULT) === */
#trMap g[id] path {
  fill: #424c5f;              /* pasif şehir */
  stroke: #2c2c2c;
  stroke-width: 0.6;
  cursor: pointer;
  transition:
    fill 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}

/* === HOVER === */
#trMap g.is-hover path {
  fill: #ffb26b;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.18));
}

/* === HİZMET VERİLEN İLLER === */
#trMap g.is-service path {
  fill: #d71920;              /* KURUMSAL KIRMIZI */
}

/* === İSTANBUL (MERKEZ – AÇIK TON) === */
#trMap g.is-hq path {
  fill: #f4a3a6;
}

/* === SEÇİLİ İL === */
#trMap g.is-active path {
  fill: #a60f14;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.25));
}

/* SADECE AVRUPA YAKASI RENKLİ OLSUN */
#istanbul-avrupa path {
    fill: #e74c3c !important; /* Kurumsal kırmızı veya istediğin bir renk */
}

/* Üstüne gelince (Hover) efekti */
#istanbul-avrupa:hover path {
    fill: #c0392b !important;
}
/* ===========================
   TOOLTIP
   =========================== */
.map-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-9999px, -9999px);
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-size: 13px;
  padding: 11px 13px;
  border-radius: 8px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
}
/* ================================
   Dağıtım Ağı > Depolar Altyapısı
   (izole sınıflar: .dist-*)
================================ */

.dist-infra {
  padding: clamp(28px, 4vw, 56px) 0;
  background: #ffffff;
}

.dist-infra__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.dist-infra__head {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.dist-infra__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.dist-infra__lead {
  margin: 0 auto;
  max-width: 780px;
  line-height: 1.65;
  color: #444;
  font-size: clamp(14.5px, 1.25vw, 16.5px);
}

.dist-infra__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dist-depo {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dist-depo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
  border-color: rgba(180, 0, 0, 0.35);
}

.dist-depo__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.dist-depo__name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.dist-depo__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #b00000;
  background: rgba(176, 0, 0, 0.08);
  border: 1px solid rgba(176, 0, 0, 0.18);
}

.dist-depo__text {
  margin: 0 0 14px;
  color: #444;
  line-height: 1.65;
  font-size: 15px;
}

.dist-depo__cap {
  margin: 0 0 14px;
  padding: 12px 12px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
}

.dist-depo__capLabel {
  font-size: 12.5px;
  font-weight: 800;
  color: #b00000;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.dist-depo__capText {
  font-size: 14.5px;
  line-height: 1.55;
  color: #333;
  font-weight: 600;
}

.dist-depo__list {
  margin: 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.6;
  font-size: 14.5px;
}

.dist-depo__list li + li {
  margin-top: 6px;
}

.dist-depo__list strong {
  color: #111;
}

@media (max-width: 860px) {
  .dist-infra__grid {
    grid-template-columns: 1fr;
  }
  .dist-depo {
    padding: 16px;
  }
}

/* Şube konumu (harita görünümü) */
.dist-depo__loc {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
}

.dist-depo__locHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dist-depo__locTitle {
  font-size: 12.5px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.dist-depo__locLink {
  font-size: 12.5px;
  font-weight: 800;
  color: #b00000;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(176, 0, 0, 0.22);
  background: rgba(176, 0, 0, 0.06);
  transition: transform 140ms ease, background 140ms ease;
}

.dist-depo__locLink:hover {
  transform: translateY(-1px);
  background: rgba(176, 0, 0, 0.10);
}

/* Harita görünümü: gerçek harita değil, kurumsal preview */
.dist-depo__map {
  position: relative;
  height: 110px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 35%, rgba(176,0,0,0.14), transparent 38%),
    radial-gradient(circle at 78% 62%, rgba(0,0,0,0.08), transparent 45%),
    linear-gradient(0deg, rgba(0,0,0,0.04), rgba(0,0,0,0.04)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.08) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 22px);
}

/* Pin */
.dist-depo__pin {
  position: absolute;
  left: 62%;
  top: 48%;
  width: 14px;
  height: 14px;
  background: #b00000;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(176,0,0,0.22);
}

.dist-depo__pin::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  left: 4px;
  top: 4px;
}

/* Adres */
.dist-depo__addr {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dist-depo__addr strong {
  font-size: 14.5px;
  color: #111;
}

.dist-depo__addr span {
  font-size: 13.5px;
  color: #444;
  line-height: 1.45;

}

/* HARİTA KUTUSU: gerçek harita için tam dolum fix */
.dist-depo__map {
  position: relative;
  width: 100%;
  height: 170px;              /* 110 az kalıyor, daha profesyonel */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Gerçek harita modunda arka planı kapat (grid vs. görünmesin) */
.dist-depo__map--real {
  background: none !important;
}

/* iframe'i tam kaplat */
.dist-depo__map--real iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* ================================
   Dağıtım Ağı - Sayfa Sonu CTA
   (izole sınıflar: .dist-cta*)
================================ */

.dist-cta {
  padding: clamp(18px, 3vw, 34px) 0 clamp(28px, 4vw, 56px);
  background: #fff;
}

.dist-cta__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.dist-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.dist-cta__box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #b00000;
}

.dist-cta__content {
  padding-left: 10px;
  min-width: 0;
}

.dist-cta__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.01em;
}

.dist-cta__text {
  margin: 0;
  max-width: 680px;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}

.dist-cta__actions {
  flex: 0 0 auto;
}

.dist-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  background: #b00000;
  color: #fff;
  border: 1px solid rgba(176,0,0,0.55);
  transition: transform 140ms ease, filter 140ms ease;
  white-space: nowrap;
}

.dist-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.dist-cta__btn:focus-visible {
  outline: 3px solid rgba(176,0,0,0.25);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .dist-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
  .dist-cta__actions {
    width: 100%;
  }
  .dist-cta__btn {
    width: 100%;
  }
}
/* ===============================
   CONTACT PAGE
================================ */

.contact-page {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  color: #b40000;
  margin-bottom: 0.5rem;
}

.contact-section {
  margin-bottom: 3rem;
}

.contact-section-title {
  margin-bottom: 1.5rem;
  color: #b40000;
  font-size: 1.5rem;
}

/* Kartlar */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-card a {
  color: #b40000;
  text-decoration: none;
}

/* Merkez Harita */
.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 1px solid #eee;
  border-radius: 10px;
}

/* Şubeler */
.contact-branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-branch-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-branch-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  border: none;
  margin-bottom: 0.75rem;
}

.contact-branch-address {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.contact-branch-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-branch-info li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Form */
.contact-form {
  max-width: 800px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid #b40000;
}

.contact-kvkk{
  display: grid;
  grid-template-columns: 16px 1fr; /* checkbox + metin */
  column-gap: 6px;                /* aradaki boşluk (en düşük temiz değer) */
  align-items: start;             /* metin 2 satıra düşerse hizası bozulmaz */
  margin: 6px 0 10px 0;
  padding: 0;
  line-height: 1.2;
  cursor: pointer;
}

.contact-kvkk input{
  width: 16px;
  height: 16px;
  margin: 0 !important;
  padding: 0 !important;
  align-self: start;
}

.contact-kvkk span{
  margin: 0 !important;
  padding: 0 !important;
}




/* Butonlar */
.contact-btn-primary {
  background: #b40000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-btn-primary:hover {
  background: #8f0000;
}

.contact-btn-outline {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid #b40000;
  color: #b40000;
  text-decoration: none;
  border-radius: 6px;
}

/* İş Başvurusu */
.contact-career {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  text-align: center;
}

/* ===============================
   CONTACT PAGE (isolated)
================================ */

.contact-page {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-hero h1 {
  color: #b40000;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  color: #444;
  max-width: 860px;
  margin: 0 auto;
}

.contact-section {
  margin-bottom: 2.75rem;
}

.contact-section-title {
  margin-bottom: 1.25rem;
  color: #b40000;
  font-size: 1.5rem;
}

.contact-muted { color: #555; }
.contact-link { color: #b40000; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

/* Genel Merkez tek kutu */
.contact-hq {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.contact-hq-info {
  padding: 1.5rem;
}

.contact-hq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-hq-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.15rem;
}

.contact-hq-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Şubeler */
.contact-branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-branch-card {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  padding: 1.25rem;
}

.contact-branch-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  color: #111;
}

.contact-branch-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 0;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-branch-address {
  margin: 0 0 0.75rem 0;
  color: #555;
  font-size: 0.92rem;
}

.contact-branch-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

/* Form */
.contact-form {
  max-width: 900px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-field span {
  display: block;
  font-size: 0.88rem;
  color: #444;
  margin: 0 0 0.35rem 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid #b40000;
  outline-offset: 2px;
}



.contact-btn-primary {
  background: #b40000;
  color: #fff;
  border: 1px solid #b40000;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
}

.contact-btn-primary:hover {
  background: #8f0000;
  transform: translateY(-1px);
}

.contact-btn-primary:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.contact-career {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  text-align: center;
}

.contact-career h2 {
  color: #b40000;
  margin-bottom: 0.5rem;
}

.contact-career p {
  color: #444;
  max-width: 720px;
  margin: 0 auto 0.75rem auto;
}

.contact-btn-outline {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid #b40000;
  color: #b40000;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.12s ease, transform 0.12s ease;
}

.contact-btn-outline:hover {
  background: rgba(180,0,0,0.06);
  transform: translateY(-1px);
}

.contact-btn-outline:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

/* Mobil */
@media (max-width: 900px) {
  .contact-hq {
    grid-template-columns: 1fr;
  }
  .contact-hq-map iframe {
    min-height: 320px;
  }
  .contact-branch-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}


.contact-subtext {
  color: #444;
  margin: -0.5rem 0 1.25rem 0;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-note {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  padding: 1.25rem;
}

.contact-note h3 {
  margin: 0 0 0.5rem 0;
  color: #b40000;
  font-size: 1.05rem;
}

.contact-note p {
  margin: 0 0 0.75rem 0;
  color: #444;
  font-size: 0.95rem;
}

.contact-note-actions {
  display: grid;
  gap: 0.6rem;
  margin: 0.75rem 0;
}

.contact-note-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(180,0,0,0.22);
  background: rgba(180,0,0,0.04);
  color: #b40000;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease;
}

.contact-note-link:hover {
  background: rgba(180,0,0,0.07);
  transform: translateY(-1px);
}

.contact-note-link:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.contact-note-muted {
  margin: 0.75rem 0 0 0;
  color: #666;
  font-size: 0.88rem;
}

/* Mobil uyum */
@media (max-width: 900px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }
}

.contact-form-single {
  grid-template-columns: 1fr;
}
label.contact-kvkk,
label.contact-kvkk *{
  letter-spacing: normal;
  word-spacing: normal;
}

/* İş Başvurusu */
.contact-career {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  margin-top: 2.5rem;
  margin-left: 140px;
}

.contact-career h2 {
  color: #b40000;
  margin-bottom: 0.4rem;
  margin-right: 90px;
}

.contact-career-subtext {
  color: #444;
  margin: 0 0 1.25rem 0;
  max-width: 860px;
}

.contact-career-form {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  padding: 1.25rem;
  max-width: 900px;
}

.contact-hint {
  display: block;
  margin-top: 0.35rem;
  color: #666;
  font-size: 0.85rem;
}

.contact-file {
  padding: 0.6rem 0.75rem;
}
/* İş Başvurusu (Profesyonel) */
.contact-career {
  border-top: 1px solid #eee;
  padding-top: 2rem;
  margin-top: 2.75rem;
}

.contact-career-head {
  margin-bottom: 1.1rem;
}

.contact-career h2 {
  color: #b40000;
  margin: 0 0 0.35rem 0;
}

.contact-career-subtext {
  color: #444;
  margin: 0;
  max-width: 900px;
  line-height: 1.45;
}

.contact-career-form {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  padding: 1.25rem;
  max-width: 900px;
}

/* Daha sıkı KVKK (checkbox-metin arası) */
.contact-kvkk-tight {
  margin: 0.35rem 0 0.75rem 0;
}

/* Hints */
.contact-hint {
  display: block;
  margin-top: 0.35rem;
  color: #666;
  font-size: 0.85rem;
}

/* Actions */
.contact-career-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-career-disclaimer {
  margin: 0;
  color: #666;
  font-size: 0.86rem;
}

/* Dosya input düzeni */
.contact-file {
  padding: 0.6rem 0.75rem;
}

/* Mobilde nefes */
@media (max-width: 900px) {
  .contact-career-form {
    padding: 1.1rem;
  }
}
html {
  scroll-behavior: smooth;
}
/* ============================= */
/* ABOUT PAGE */
/* ============================= */

.about-page {
  background: #ffffff;
  color: #1a1a1a;
}

/* Hero */
.about-hero {
  padding: 80px 0 50px;
  background: #b30000;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
}

/* Definition */
.about-definition {
  padding: 70px 0;
}

.about-definition h2 {
  color: #b30000;
  margin-bottom: 20px;
}

.about-definition p {
  max-width: 850px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Operations */
.about-operations {
  padding: 70px 0;
  background: #f7f7f7;
}

.about-operations h2 {
  color: #b30000;
  margin-bottom: 10px;
}

.about-operations-intro {
  max-width: 800px;
  margin-bottom: 40px;
}

.about-operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-radius: 12px;
}

.about-op-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 24px;
  transition: transform 0.2s ease;
  border-radius: 12px;
}

.about-op-card:hover {
  transform: translateY(-4px);
}

.about-op-card h3 {
  color: #b30000;
  margin-bottom: 8px;
}

/* Mission & Vision */
.about-mission-vision {
  padding: 70px 0;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-mv-card h2 {
  color: #b30000;
  margin-bottom: 12px;
}

.about-mv-card p {
  line-height: 1.7;
}

/* Why */
.about-why {
  padding: 70px 0;
  background: #f7f7f7;
}

.about-why h2 {
  color: #b30000;
  margin-bottom: 24px;
}

.about-why-list {
  list-style: none;
  padding: 0;
}

.about-why-list li {
  padding-left: 18px;
  margin-bottom: 12px;
  position: relative;
}

.about-why-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b30000;
}

/* Responsive */
@media (max-width: 992px) {
  .about-operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 32px;
  }

  .about-operations-grid {
    grid-template-columns: 1fr;
  }
}

/* Outline Button – Red Variant */
.btn-outline-red {
  border-color: #9e5959;
  color: #ffffff;
}



/* =========================
   ABOUT – BİZ KİMİZ
   ========================= */

.about-who {
  background: #ffffff;
}

.about-who-text {
  max-width: 920px;
}

.about-who-text p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #222;
  font-size: 15.5px;
}

.about-who-text strong {
  color: #111;
  font-weight: 600;
}

.about-who-highlight {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid #c40000;
}

