/* =========================================================
   MEDGRUP BÜRO ARAÇLARI — Tasarım Sistemi
   Palet: Lacivert (#0e1a3a) + Kırmızı (#e2001a) + Kağıt (#f7f5f1)
   ========================================================= */

:root{
  --navy: #0e1a3a;
  --navy-2: #16265c;
  --navy-3: #1f3170;
  --red: #e2001a;
  --red-dark: #a8000f;
  --paper: #f7f5f1;
  --paper-2: #efece5;
  --ink: #17191f;
  --ink-soft: #4a4e5a;
  --line: #e2ded4;
  --white: #ffffff;

  /* Tema bazlı (açık/koyu) nötr tonlar — marka renkleri (navy/red) sabit kalır */
  --page-bg: var(--paper);
  --surface: #ffffff;
  --surface-2: var(--paper-2);
  --text-strong: var(--navy);
  --text-body: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--line);
  --topbar-bg: #091027;
  --topbar-text: #b9c0d6;

  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --container: 1160px;
  --shadow-card: 0 1px 2px rgba(14,26,58,.06), 0 8px 24px rgba(14,26,58,.07);
}

html[data-theme="dark"]{
  --page-bg: #0b1226;
  --surface: #121b36;
  --surface-2: #101a34;
  --text-strong: #ffffff;
  --text-body: #dde1f0;
  --text-soft: #aab0c8;
  --border: #283260;
  --topbar-bg: #05060f;
  --topbar-text: #8890ae;
  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.4);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .2s ease, color .2s ease;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--text-strong);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
}
p{ margin:0 0 1em; max-width: 62ch; }
:focus-visible{ outline: 2.5px solid var(--red); outline-offset: 2px; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-plain{
  color: var(--red);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4em;
  display:block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding: .85em 1.6em;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: .98rem;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-red{ background: var(--red); color: var(--white); }
.btn-red:hover{ background: var(--red-dark); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover{ border-color: var(--white); }
.btn-navy{ background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy-2); }
.btn-line{ background: transparent; color: var(--text-strong); border-color: var(--text-strong); }
.btn-line:hover{ background: var(--text-strong); color: var(--page-bg); }

/* ---------- Theme toggle ---------- */
.theme-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px; height:40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  color:#fff;
  flex-shrink:0;
  transition: background-color .15s ease, border-color .15s ease;
}
.theme-toggle:hover{ background: rgba(255,255,255,.14); }
.theme-toggle svg{ width:19px; height:19px; display:block; }
.theme-toggle .icon-moon{ display:block; }
.theme-toggle .icon-sun{ display:none; }
html[data-theme="dark"] .theme-toggle .icon-moon{ display:none; }
html[data-theme="dark"] .theme-toggle .icon-sun{ display:block; }

/* ---------- Top utility bar ---------- */
.topbar{
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: .84rem;
}
.topbar .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px; height:26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  margin-right: 8px;
  transition: background-color .15s ease, border-color .15s ease;
}
.topbar-social a:hover{ background: var(--red); border-color: var(--red); }
.topbar-social svg{ width:13px; height:13px; fill: #cfd4e6; }
.topbar-social a:hover svg{ fill:#fff; }
.topbar-contact span{ margin-left: 18px; white-space: nowrap; }
.topbar-contact span:first-child{ margin-left:0; }

/* ---------- Header / Nav ---------- */
.site-header{
  background: var(--navy);
  position: sticky;
  top:0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  min-height: 84px;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ width:42px; height:42px; }
.brand-logo-img{ width:auto !important; height:56px !important; border-radius:4px; }
.footer-brand .brand-logo-img{ height:64px !important; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand-text span{ color: #9aa4c2; font-size: .72rem; letter-spacing:.02em; }

.main-nav{ display:flex; align-items:center; gap: 2px; }
.main-nav a{
  color: #cfd4e6;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 11px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.main-nav a:hover{ color: var(--white); background: rgba(255,255,255,.06); }
.main-nav a.active{ color: var(--white); background: var(--red); }

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-phone{
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone .badge{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--red);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-head);
  font-weight:800;
  font-size: .72rem;
  flex-shrink:0;
}
.header-phone .nums{ line-height:1.2; }
.header-phone .nums strong{ display:block; color:#fff; font-size: .88rem; font-family: var(--font-head); white-space:nowrap; }
.header-phone .nums span{ color:#9aa4c2; font-size:.76rem; white-space:nowrap; }

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  background:none; border:none;
  padding:0;
  width: 40px; height:40px;
  flex-shrink:0;
  color:#fff;
  cursor:pointer;
}
.nav-toggle span{
  position:relative;
  display:block;
  width: 22px; height:2px;
  background:#fff;
  flex-shrink:0;
}
.nav-toggle span::before, .nav-toggle span::after{
  content:'';
  position:absolute;
  left:0;
  width: 22px; height:2px;
  background:#fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }

/* ---------- Hero (home) ---------- */
.hero{
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 90% at 75% 30%, #000 30%, transparent 75%);
  pointer-events:none;
}
.hero-fold{
  position:absolute;
  top:-60px; right:-60px;
  width: 480px; height:480px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  opacity:.9;
  pointer-events:none;
}
.hero-fold::after{
  content:'';
  position:absolute;
  top: 30%; left:0;
  width:0; height:0;
  border-style: solid;
  border-width: 0 0 70px 70px;
  border-color: transparent transparent rgba(0,0,0,.28) transparent;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items:center;
}
.hero h1{
  color:#fff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  max-width: 15ch;
}
.hero p.lead{
  color: #c2c8de;
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px; }
.hero-stats{
  display:flex;
  gap: 34px;
  flex-wrap:wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats div strong{
  display:block;
  font-family: var(--font-head);
  color:#fff;
  font-size: 1.7rem;
  font-weight:800;
}
.hero-stats div span{ color:#9aa4c2; font-size:.84rem; }

.hero-panel{
  position:relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 30px;
  backdrop-filter: blur(2px);
}
.hero-panel .doc-icon{ width:46px; height:46px; margin-bottom: 16px; }
.hero-panel h3{ color:#fff; font-size:1.15rem; margin-bottom:.3em; }
.hero-panel p{ color:#aab0c8; font-size: .92rem; margin-bottom: 18px; }
.hero-panel-list{ display:flex; flex-direction:column; gap:12px; }
.hero-panel-list li{
  display:flex; align-items:center; gap:10px;
  color:#dfe2ef; font-size:.92rem;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  border-left: 3px solid var(--red);
}

/* ---------- Section shells ---------- */
.section{ padding: 84px 0; }
.section-alt{ background: var(--surface-2); }
.section-navy{ background: var(--navy); color:#fff; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.section-head p{ color: var(--text-soft); }
.section-navy .section-head p{ color:#aab0c8; }

/* ---------- Service / fold cards ---------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fold-card{
  position:relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-card);
  overflow:hidden;
}
.fold-card::before{
  content:'';
  position:absolute;
  top:0; right:0;
  width:0; height:0;
  border-style:solid;
  border-width: 0 26px 26px 0;
  border-color: transparent var(--surface-2) transparent transparent;
  transition: border-color .15s ease;
}
.fold-card:hover::before{ border-color: transparent var(--red) transparent transparent; }
.fold-card .num{
  font-family: var(--font-head);
  font-weight:800;
  color: var(--red);
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 14px;
  display:block;
}
.fold-card h3{ font-size: 1.2rem; margin-bottom:.5em; }
.fold-card p{ color: var(--text-soft); font-size: .95rem; margin-bottom: 1.1em; }
.fold-card a.more{
  font-family: var(--font-head);
  font-weight:700;
  color: var(--text-strong);
  font-size: .9rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* ---------- Brand strip ---------- */
.brand-strip{
  display:flex;
  flex-wrap:wrap;
  gap: 18px;
  justify-content:space-between;
}
.brand-chip{
  flex:1 1 200px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 96px;
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand-chip img{ max-height: 36px; max-width: 100%; width:auto; }
.brand-chip:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ---------- Brand select cards (Ürünlerimiz ana sayfa) ---------- */
.brand-select-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.brand-select-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align:center;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand-select-card:hover{ transform: translateY(-4px); box-shadow: 0 10px 30px rgba(14,26,58,.12); }
.brand-select-logo{
  height: 64px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
}
.brand-select-logo img{ max-height: 46px; max-width: 100%; width:auto; margin:0 auto; }
.brand-select-name{
  display:block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-strong);
  font-size: 1.05rem;
  letter-spacing:.01em;
}
.brand-select-count{ display:block; color: var(--text-soft); font-size:.85rem; margin-top:2px; }

/* ---------- Real-photo product cards (brand detail pages) ---------- */
.product-photo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-photo-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display:flex;
  flex-direction:column;
  transition: transform .15s ease;
}
.product-photo-card:hover{ transform: translateY(-3px); }
.product-photo-frame{
  height: 150px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 14px;
}
.product-photo-frame img{ max-height: 150px; max-width:100%; }
.product-photo-card .p-brand{
  font-size:.72rem;
  font-weight:700;
  color: var(--red);
  letter-spacing:.03em;
  display:block;
  margin-bottom:2px;
}
.product-photo-card h4{ font-size: .98rem; margin-bottom: 12px; line-height:1.3; min-height: 2.6em; }
.product-photo-card .btn{ margin-top:auto; width:100%; justify-content:center; padding:.65em 1em; font-size:.82rem; }
.brand-detail-head{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom: 40px;
  flex-wrap:wrap;
}
.brand-detail-head img{ height: 44px; width:auto; }
.brand-detail-head p{ margin:0; color: var(--text-soft); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color:#fff;
  border-radius: 6px;
  padding: 46px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
}
.cta-banner h3{ color:#fff; font-size:1.5rem; margin-bottom:.25em; }
.cta-banner p{ color: rgba(255,255,255,.85); margin:0; }
.cta-banner .btn-outline{ border-color: rgba(255,255,255,.6); }
.cta-banner .btn-outline:hover{ background:#fff; color: var(--red-dark); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: var(--navy);
  color:#fff;
  padding: 58px 0 46px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 100% at 85% 0%, #000 20%, transparent 70%);
}
.page-hero h1{ color:#fff; position:relative; font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom:.3em; }
.breadcrumb{ position:relative; color:#9aa4c2; font-size:.88rem; }
.breadcrumb a{ color:#c2c8de; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb .sep{ margin: 0 8px; color:#5a6284; }

/* ---------- About page ---------- */
.about-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items:start;
}
.about-mark{
  background: var(--navy);
  border-radius: 6px;
  padding: 40px 30px;
  color:#fff;
  position: sticky;
  top: 110px;
}
.about-mark svg{ width:56px; height:56px; margin-bottom:18px; }
.about-mark h4{ color:#fff; font-size:1.05rem; }
.about-mark p{ color:#aab0c8; font-size:.9rem; }
.about-mark .yr{
  font-family: var(--font-head);
  font-weight:800;
  font-size: 3rem;
  color:#fff;
  line-height:1;
  margin-bottom: 6px;
}
.about-mark .yr + span{ color:#9aa4c2; font-size:.82rem; }
.about-mark hr{ border:none; border-top:1px solid rgba(255,255,255,.15); margin: 22px 0; }

.about-body h2{ font-size: 1.5rem; margin-top: 1.4em; }
.about-body h2:first-child{ margin-top:0; }
.about-body p{ color: var(--text-soft); max-width: 68ch; }
.about-body strong{ color: var(--text-strong); }

.service-table{
  width:100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: .95rem;
}
.service-table th, .service-table td{
  text-align:left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align:top;
}
.service-table th{
  font-family: var(--font-head);
  color: var(--text-strong);
  background: var(--surface-2);
  font-size: .84rem;
  letter-spacing:.02em;
}
.pull-quote{
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 22px;
  margin: 1.8em 0;
  color: var(--text-strong);
  font-family: var(--font-head);
  font-weight:600;
  font-size: 1.05rem;
}

/* ---------- Products page ---------- */
.brand-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.brand-tabs button{
  font-family: var(--font-head);
  font-weight:700;
  font-size: .95rem;
  background:none;
  border:none;
  padding: 12px 6px;
  color: var(--text-soft);
  cursor:pointer;
  position:relative;
  top:1px;
}
.brand-tabs button.active{
  color: var(--red);
  border-bottom: 2.5px solid var(--red);
}
.brand-panel{ display:none; }
.brand-panel.active{ display:block; }
.brand-panel-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap:wrap;
}
.brand-panel-head h2{ margin:0; font-size:1.4rem; }
.brand-panel-head p{ margin:0; color: var(--text-soft); font-size:.92rem; }

.product-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.product-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.product-card .p-icon{
  width:52px; height:52px;
  border-radius: 4px;
  background: var(--surface-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
}
.product-card .p-icon svg{ width:26px; height:26px; }
.product-card .p-brand{
  font-size:.75rem;
  font-weight:700;
  color: var(--red);
  letter-spacing:.03em;
  margin-bottom:4px;
  display:block;
}
.product-card h4{ font-size: 1.08rem; margin-bottom:.4em; }
.product-card p{ font-size:.9rem; color: var(--text-soft); margin-bottom: 14px; }
.product-card .specs{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.product-card .specs li{
  font-size: .84rem;
  color: var(--text-soft);
  display:flex;
  justify-content:space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom:6px;
}
.product-card .specs li b{ color: var(--text-strong); font-weight:600; }

/* ---------- Copy centers ---------- */
.branch-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-card);
}
.branch-card .branch-top{
  background: var(--navy);
  color:#fff;
  padding: 22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.branch-card .branch-top h3{ color:#fff; margin:0; font-size:1.1rem; }
.branch-card .branch-top span{
  background: var(--red);
  color:#fff;
  font-size:.7rem;
  font-weight:700;
  padding: 4px 9px;
  border-radius: 20px;
}
.branch-card .branch-body{ padding: 22px 24px; }
.branch-card .branch-body .b-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom: 12px;
  font-size:.92rem;
  color: var(--text-soft);
}
.branch-card .branch-body svg{ width:18px; height:18px; flex-shrink:0; color: var(--red); margin-top:2px; }
.branch-card .branch-body a.phone-link{ color: var(--text-strong); font-weight:700; font-family: var(--font-head); }

/* ---------- Driver page ---------- */
.driver-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.driver-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align:center;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease;
}
.driver-card:hover{ transform: translateY(-4px); }
.driver-card .brand-name{
  font-family: var(--font-head);
  font-weight:800;
  font-size: 1.15rem;
  color: var(--text-strong);
  margin: 16px 0 6px;
}
.driver-card .brand-icon{
  width:72px; height:72px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--surface-2);
  display:flex; align-items:center; justify-content:center;
  padding: 10px;
}
.driver-card .brand-icon img{ max-width: 100%; max-height: 100%; width:auto; height:auto; }
.driver-card p{ font-size:.85rem; color: var(--text-soft); margin: 0 0 18px; }
.driver-card .btn{ width:100%; justify-content:center; padding: .7em 1em; font-size:.85rem; }

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items:start;
}
.contact-info-card{
  background: var(--navy);
  color:#fff;
  border-radius: 6px;
  padding: 34px 30px;
}
.contact-info-card h3{ color:#fff; font-size:1.2rem; }
.contact-info-card p{ color:#aab0c8; font-size:.92rem; }
.contact-info-list{ margin-top: 22px; display:flex; flex-direction:column; gap:20px; }
.contact-info-list li{ display:flex; gap:14px; align-items:flex-start; }
.contact-info-list svg{ width:20px; height:20px; color: var(--red); flex-shrink:0; margin-top:3px; }
.contact-info-list strong{ display:block; color:#fff; font-size:.92rem; margin-bottom:2px; }
.contact-info-list span, .contact-info-list a{ color:#c2c8de; font-size:.9rem; }
.contact-info-list a:hover{ color:#fff; }
.contact-social{ margin-top: 26px; display:flex; gap:10px; }
.contact-social a{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
}
.contact-social svg{ width:16px; height:16px; fill:#cfd4e6; }
.contact-social a:hover{ background: var(--red); border-color: var(--red); }
.contact-social a:hover svg{ fill:#fff; }

.form-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field{ margin-bottom: 18px; }
.field label{
  display:block;
  font-family: var(--font-head);
  font-weight:700;
  font-size:.85rem;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--page-bg);
  color: var(--text-body);
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--text-strong); outline:none; }
.field textarea{ min-height: 130px; resize: vertical; }
.form-note{ font-size:.82rem; color: var(--text-soft); margin-top: -6px; margin-bottom: 18px; }
.form-alert{
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size:.92rem;
  margin-bottom: 20px;
  font-weight:600;
}
.form-alert.ok{ background:#e8f6ec; color:#1a7a3a; border:1px solid #bfe6cb; }
.form-alert.err{ background:#fdecec; color:#a8000f; border:1px solid #f5c2c2; }

.map-wrap{
  margin-top: 46px;
  border-radius: 6px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe{ display:block; width:100%; height: 340px; border:0; }

/* ---------- Footer ---------- */
.site-footer{
  background: #091027;
  color: #9aa4c2;
  padding: 64px 0 0;
  font-size: .92rem;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand p{ color:#8890ae; font-size:.9rem; }
.footer-col h4{
  color:#fff;
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: 16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:#9aa4c2; transition: color .15s ease; }
.footer-col a:hover{ color:#fff; }
.footer-col .f-row{ display:flex; gap:10px; align-items:flex-start; }
.footer-col svg{ width:16px; height:16px; color: var(--red); margin-top:3px; flex-shrink:0; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 22px 0;
  font-size:.82rem;
  color:#6b7396;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom a{ color:#9aa4c2; }
.footer-bottom a:hover{ color:#fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-panel{ order:-1; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-mark{ position:static; }
  .card-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: 1fr; }
  .brand-select-grid{ grid-template-columns: repeat(2,1fr); }
  .product-photo-grid{ grid-template-columns: repeat(2,1fr); }
  .branch-grid{ grid-template-columns: 1fr; }
  .driver-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .topbar-contact span{ display:none; }
  .topbar-contact span:last-child{ display:inline; margin-left:0; }
  .main-nav{
    position:fixed;
    inset: 84px 0 0 0;
    background: var(--navy);
    flex-direction:column;
    align-items:stretch;
    padding: 10px 20px 30px;
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
    overflow:auto;
  }
  .main-nav.open{ opacity:1; transform:none; pointer-events:auto; }
  .main-nav a{ padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius:0; }
  .nav-toggle{ display:flex; }
  .header-phone .nums{ display:none; }
  .card-grid, .driver-grid{ grid-template-columns: 1fr; }
  .brand-select-grid, .product-photo-grid{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 480px){
  /* Header dar telefonlarda taşmasın: "Teklif Al" butonunu gizle,
     zaten aynı sayfaya hamburger menüdeki "İletişim" linki de gidiyor. */
  .header-cta .btn-red{ display:none; }
  .header-phone{ display:none; }
  .site-header .container{ gap: 8px; }
  .header-cta{ gap: 8px; }

  /* Kart ızgaraları en dar telefonlarda tek sütuna insin, aksi halde
     kartlar ~120px genişliğe düşüp logo/buton/yazı sıkışıyordu. */
  .brand-select-grid, .product-photo-grid{ grid-template-columns: 1fr; }
}

/* WhatsApp yüzen buton — marka rengi (WhatsApp yeşili) her iki temada da sabit kalır */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  z-index: 999;
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float:hover{
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.34);
}
@media (max-width: 640px){
  .whatsapp-float{
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}
