/* ═══════════════════════════════════════════════
   Miroğulları Rent A Car — Ana Stil Dosyası
   Renkler: kırık beyaz zemin, kırmızı + mavi vurgu
   ═══════════════════════════════════════════════ */

:root {
  --bg:          #f7f5f1;   /* kırık beyaz */
  --bg-soft:     #efece6;
  --card:        #ffffff;
  --ink:         #15203a;
  --ink-soft:    #5b667e;
  --red:         #d92332;
  --red-dark:    #b3121f;
  --blue:        #1e3a8a;
  --blue-dark:   #16295f;
  --blue-soft:   #e8edf9;
  --red-soft:    #fdeaec;
  --line:        #e6e1d8;
  --shadow:      0 10px 30px rgba(21, 32, 58, .08);
  --shadow-lg:   0 24px 60px rgba(21, 32, 58, .14);
  --radius:      18px;
  --radius-sm:   12px;
  --header-h:    76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

/* ── Butonlar ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 35, 50, .3);
}
.btn-red:hover { box-shadow: 0 12px 28px rgba(217, 35, 50, .42); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .3);
}
.btn-blue:hover { box-shadow: 0 12px 28px rgba(30, 58, 138, .42); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ── Header ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 241, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(21, 32, 58, .07);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(30, 58, 138, .25);
}
.logo-text {
  font-weight: 800;
  font-size: 19px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.logo-text small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--red);
}
.logo-light .logo-text { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }
.main-nav a.active { color: var(--blue); background: var(--blue-soft); }
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--blue-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 70px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -240px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,.10), transparent 65%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -260px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,35,50,.08), transparent 65%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,35,50,.4); }
  50%      { box-shadow: 0 0 0 7px rgba(217,35,50,0); }
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  margin: 22px auto 16px;
  max-width: 760px;
  letter-spacing: -1px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 17px;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── 3D Coverflow Slider ──────────────────── */
.cf-section {
  padding: 26px 0 56px;
  position: relative;
  overflow: hidden;
  --cf-shift: 320px;   /* yan kartların yatay kayması */
  --cf-rotate: 38deg;  /* yan kartların açısı */
  --cf-depth: 190px;   /* yan kartların derinliği */
  --cf-w: 560px;       /* kart genişliği */
  --cf-h: 360px;       /* kart yüksekliği */
}
.cf-stage {
  position: relative;
  height: calc(var(--cf-h) + 50px);
  perspective: 1600px;
}
.cf-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.cf-card {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--cf-w);
  height: var(--cf-h);
  margin: calc(var(--cf-h) / -2) 0 0 calc(var(--cf-w) / -2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(21, 32, 58, .28);
  transition: transform .75s cubic-bezier(.25, .8, .25, 1), opacity .55s, box-shadow .55s, filter .55s;
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  display: block;
}
.cf-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cf-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 30, .88) 0%, rgba(8, 14, 30, .25) 42%, transparent 65%);
}
.cf-card.is-active   { opacity: 1; pointer-events: auto; z-index: 5; }
.cf-card.is-near     { opacity: .92; pointer-events: auto; z-index: 4; filter: brightness(.72) saturate(.85); cursor: pointer; }
.cf-card.is-far      { opacity: .55; z-index: 3; filter: brightness(.5) saturate(.6); }
.cf-card.is-active { box-shadow: 0 40px 90px rgba(21, 32, 58, .38); }

.cf-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 30px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.cf-info { min-width: 0; }
.cf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
}
.cf-tag.rent { background: rgba(59, 100, 211, .85); }
.cf-tag.sale { background: rgba(217, 35, 50, .85); }
.cf-info h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cf-info .cf-meta {
  display: flex;
  gap: 12px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 600;
  opacity: .92;
  flex-wrap: wrap;
}
.cf-price {
  flex-shrink: 0;
  text-align: right;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 16px;
}
.cf-price strong { display: block; font-size: 21px; font-weight: 800; letter-spacing: -.4px; }
.cf-price small { font-size: 11.5px; font-weight: 600; opacity: .85; }

/* Zemin yansıması */
.cf-stage::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: min(640px, 86%);
  height: 44px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(21, 32, 58, .22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--blue);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: background .2s, color .2s, transform .2s;
}
.cf-arrow:hover { background: var(--blue); color: #fff; transform: translateY(-50%) scale(1.08); }
.cf-arrow.prev { left: clamp(4px, 3vw, 30px); }
.cf-arrow.next { right: clamp(4px, 3vw, 30px); }
.cf-arrow svg { width: 22px; height: 22px; }

.cf-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}
.cf-dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: none;
  background: #cdc7bb;
  cursor: pointer;
  padding: 0;
  transition: width .3s, background .3s;
}
.cf-dots button.active {
  width: 30px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

/* ── Bölüm Başlıkları ─────────────────────── */
.section { padding: 70px 0; }
.section.tint { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.18;
}
.section-head p { color: var(--ink-soft); margin-top: 12px; }
.section-foot { text-align: center; margin-top: 40px; }

/* ── Araç Kartları ────────────────────────── */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.car-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.car-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.car-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.car-card:hover .car-card-media img { transform: scale(1.06); }

.badge-popular {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(217,35,50,.35);
}
.badge-year {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(21,32,58,.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.car-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.car-card-body h3 { font-size: 18.5px; font-weight: 800; }
.car-card-loc {
  display: flex; align-items: center; gap: 5px;
  color: var(--ink-soft); font-size: 13px; margin-top: 4px;
}
.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}
.car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}
.car-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.car-price { font-size: 20px; font-weight: 800; color: var(--blue); }
.car-price small { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; display: block; }
.car-price.sale-price { color: var(--red); }

/* ── Hizmet Kartları ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 26px;
}
.service-icon.blue { background: var(--blue-soft); }
.service-icon.red  { background: var(--red-soft); }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; }

/* ── Sayaç Bandı ──────────────────────────── */
.stats-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue) 55%, #2b4ba8);
  color: #fff;
  padding: 54px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num { font-size: 38px; font-weight: 800; letter-spacing: -1px; }
.stat-num em { font-style: normal; color: #ff6b76; }
.stat-label { font-size: 14px; opacity: .85; font-weight: 600; }

/* ── Sayfa Başlığı (alt sayfalar) ─────────── */
.page-hero {
  background:
    linear-gradient(110deg, rgba(22,41,95,.93), rgba(30,58,138,.82) 55%, rgba(217,35,50,.55)),
    url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?auto=format&fit=crop&w=1600&q=60') center/cover;
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.8px; }
.page-hero p { opacity: .88; max-width: 560px; margin: 10px auto 0; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 14px;
  opacity: .85;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ── Detay Sayfası ────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumbs button {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  aspect-ratio: 16 / 11;
  transition: border-color .2s, opacity .2s;
  opacity: .75;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.active,
.gallery-thumbs button:hover { border-color: var(--red); opacity: 1; }

.detail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.detail-card + .detail-card { margin-top: 22px; }
.detail-card h2, .detail-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 16px; }

.detail-title h1 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; line-height: 1.25; letter-spacing: -.5px; }
.detail-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  margin: 10px 0 2px;
}
.detail-price small { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.detail-loc {
  display: flex; align-items: center; gap: 6px;
  color: var(--ink-soft); font-size: 14px; font-weight: 600;
}

.info-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.info-table td { padding: 10px 4px; border-bottom: 1px dashed var(--line); }
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--ink-soft); font-weight: 600; width: 46%; }
.info-table td:last-child { font-weight: 700; text-align: right; }

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}
.detail-desc { color: var(--ink-soft); font-size: 15px; white-space: pre-line; }

.detail-actions { display: grid; gap: 11px; margin-top: 18px; }
.btn-wp {
  background: linear-gradient(135deg, #25d366, #1aa84f);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .32);
}
.btn-wp:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, .44); }

/* ── Randevu Formu ────────────────────────── */
.booking-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, .12);
  background: #fff;
}
.form-note { font-size: 12.5px; color: var(--ink-soft); text-align: center; }

/* ── Ekspertiz Şeması ─────────────────────── */
/* Sahibinden tarzı açılmış görünüm panosu */
.exp-board {
  background: #f8f5e6;
  border: 1px solid #ebe5cd;
  border-radius: 16px;
  padding: 18px 14px 24px;
}
.expertise-svg {
  width: 100%;
  max-width: 460px;
  display: block;
  margin-inline: auto;
}
.expertise-svg .part {
  stroke: #dedede;
  stroke-width: 5;
  stroke-linejoin: round;
  transition: filter .2s;
}
.expertise-svg .part:hover { filter: brightness(.92); }
.expertise-svg .exp-center-static {
  fill: #c9c9c9;
  stroke: #dedede;
  stroke-width: 5;
  pointer-events: none;
}
.expertise-svg .exp-glass {
  fill: #ffffff;
  stroke: #dedede;
  stroke-width: 5;
  pointer-events: none;
}
.expertise-svg .exp-wheel {
  fill: #d5d5d5;
  stroke: #f8f5e6;
  stroke-width: 5;
  pointer-events: none;
}
.expertise-svg .exp-small { fill: #d5d5d5; pointer-events: none; }

/* Durum renkleri (örnek kod paleti) */
.exp-orijinal { fill: #c9c9c9; }
.exp-lokal    { fill: #ff8c45; }
.exp-boyali   { fill: #3c78bd; }
.exp-degisen  { fill: #ff5738; }
.exp-ezik     { fill: #8e44ad; }

.expertise-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 14px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
}
.legend-item.orijinal { color: #9c9c9c; }
.legend-item.lokal    { color: #ff8c45; }
.legend-item.boyali   { color: #3c78bd; }
.legend-item.degisen  { color: #ff5738; }
.legend-item.ezik     { color: #8e44ad; }
.legend-swatch {
  width: 19px; height: 19px;
  border-radius: 4px;
  flex-shrink: 0;
}

.expertise-table-wrap { margin-top: 22px; }
.expertise-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.expertise-table td { padding: 9px 4px; border-bottom: 1px dashed var(--line); }
.expertise-table tr:last-child td { border-bottom: none; }
.expertise-table td:first-child { color: var(--ink-soft); font-weight: 600; }
.exp-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  float: right;
}
.exp-pill.orijinal { background: #e8ecf3; color: #44506b; }
.exp-pill.lokal    { background: #ffe9d2; color: #c26200; }
.exp-pill.boyali   { background: #dbeafe; color: #1d4ed8; }
.exp-pill.degisen  { background: #ffe0db; color: #d61c04; }
.exp-pill.ezik     { background: #f3e6fb; color: #7d2f9e; }

/* ── İletişim Sayfası ─────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-info-card + .contact-info-card { margin-top: 16px; }
.contact-info-card .ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}
.contact-info-card h3 { font-size: 16px; font-weight: 800; }
.contact-info-card p { color: var(--ink-soft); font-size: 14.5px; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── Hakkımızda ───────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,58,138,.18), transparent 55%);
}
.about-text .kicker {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
}
.about-text h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 10px 0 16px;
  line-height: 1.2;
}
.about-text p { color: var(--ink-soft); margin-bottom: 14px; }
.about-checks { margin: 20px 0 26px; display: grid; gap: 11px; }
.about-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 15px;
}
.check-ico {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

/* ── Yönetilebilir Sayfa İçeriği ──────────── */
.page-content h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 10px 0 16px;
  line-height: 1.2;
}
.page-content h3 { font-size: 21px; font-weight: 800; margin: 16px 0 10px; }
.page-content p { color: var(--ink-soft); margin-bottom: 14px; }
.page-content ul { margin: 20px 0 10px; display: grid; gap: 11px; }
.page-content ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 15px;
}
.page-content ul li::before {
  content: '✓';
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}
.page-hero-sub { opacity: .88; max-width: 560px; margin: 10px auto 0; }

/* ── Filtre Barı ──────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 38px;
}
.filter-bar button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.filter-bar button:hover { border-color: var(--blue); color: var(--blue); }
.filter-bar button.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(30,58,138,.28);
}

/* ── CTA Bandı ────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red) 60%, #e8505d);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.5px; }
.cta-band p { opacity: .9; margin: 10px auto 26px; max-width: 540px; }
.cta-band .btn { background: #fff; color: var(--red-dark); }
.cta-band .btn:hover { box-shadow: 0 14px 30px rgba(0,0,0,.22); }

/* ── Footer ───────────────────────────────── */
.site-footer {
  background: #0f1830;
  color: #c4cbdd;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.1fr;
  gap: 38px;
  padding: 60px 0 44px;
}
.footer-col p { font-size: 14px; margin-top: 16px; opacity: .8; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.footer-col ul { display: grid; gap: 9px; font-size: 14px; }
.footer-col ul a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--red); }
.footer-wp-btn { margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 18px 0;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { opacity: .65; }

/* ── Altunsoft İmzası — kurumsal altın seri ── */
.design-by {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 6px 10px;
}
/* Alt çizgi: hover'da ortadan açılan ince altın çizgi */
.design-by::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #d4af5f, #f7e7b4, #d4af5f, transparent);
  transform: translateX(-50%);
  transition: width .55s cubic-bezier(.4, .1, .2, 1);
}
.design-by:hover::after { width: 100%; }

.db-text { display: flex; flex-direction: column; gap: 3px; }

/* Altunsoft logosu — yazının solunda, küçük ve zarif */
.db-logo {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .35s, transform .35s, filter .35s;
}
.design-by:hover .db-logo {
  opacity: 1;
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 3px 12px rgba(212, 175, 95, .45));
}

/* Metalik altın logotype — yavaş ışıltı geçişi */
.db-brand {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  background: linear-gradient(105deg, #9a7b3c 0%, #d4af5f 22%, #f9eec3 38%, #d4af5f 54%, #9a7b3c 72%, #d4af5f 90%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: db-sheen 7s ease-in-out infinite;
}
.db-brand em {
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.4px;
  vertical-align: 2px;
}
@keyframes db-sheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.db-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #6f7a99;
  transition: color .4s;
}
.design-by:hover .db-label { color: #b7a877; }


@media (max-width: 600px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ── Sabit Arama Butonu (WhatsApp üstü) ───── */
.call-float {
  position: fixed;
  right: 22px;
  bottom: 94px; /* whatsapp (60px) + 12px boşluk */
  z-index: 90;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b64d3, var(--blue-dark));
  box-shadow: 0 10px 28px rgba(30, 58, 138, .45);
  transition: transform .25s;
  animation: call-ring 2.6s ease-in-out infinite;
}
.call-float:hover { transform: scale(1.1); }
@keyframes call-ring {
  0%, 100% { box-shadow: 0 10px 28px rgba(30, 58, 138, .45); }
  50%      { box-shadow: 0 10px 28px rgba(30, 58, 138, .45), 0 0 0 12px rgba(30, 58, 138, .12); }
}

/* ── WhatsApp Sabit Buton ─────────────────── */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1aa84f);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .25s;
  animation: wp-bob 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wp-bob {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ── Tanıtım Filmi — Sinematik Modal ──────── */
/* hidden özniteliği display tanımlarını ezsin (tıklama blokajını önler) */
.intro-modal[hidden], .intro-fab[hidden] { display: none !important; }

.intro-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 11, 24, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s ease;
}
.intro-modal.show { opacity: 1; }

.im-card {
  width: min(920px, 100%);
  padding: 1.5px; /* altın çerçeve kalınlığı */
  border-radius: 24px;
  background: linear-gradient(135deg, #8a6a2f, #d4af5f 30%, #f7e7b4 50%, #d4af5f 70%, #8a6a2f);
  box-shadow: 0 60px 160px rgba(0, 0, 0, .7), 0 0 80px rgba(212, 175, 95, .12);
  transform: translateY(34px) scale(.94);
  opacity: 0;
  transition: transform .6s cubic-bezier(.22, 1.2, .3, 1), opacity .5s;
}
.intro-modal.show .im-card { transform: none; opacity: 1; }

.im-frame {
  background: #0c1226;
  border-radius: 22.5px;
  overflow: hidden;
}

.im-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: #e8ecf8;
}
.im-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: #d4af5f;
}
.im-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
}
.im-title {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .2px;
  opacity: .9;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.im-close {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.im-close:hover { background: var(--red); transform: rotate(90deg); }

.im-video { position: relative; background: #000; }
.im-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.im-sound {
  position: absolute;
  left: 16px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(10, 15, 30, .65);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  animation: im-nudge 2.2s ease-in-out infinite;
}
.im-sound:hover, .im-sound.on {
  background: rgba(212, 175, 95, .9);
  border-color: transparent;
  color: #101a33;
  animation: none;
}
@keyframes im-nudge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 95, .5); }
  50%      { box-shadow: 0 0 0 9px rgba(212, 175, 95, 0); }
}
.im-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
}
.im-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #d4af5f);
  transition: width .25s linear;
}

.im-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  color: #8d97b5;
  font-size: 13px;
  font-weight: 600;
}

/* Mini oynatıcı (kapatınca sol altta) */
.intro-fab {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  padding: 12px 20px 12px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1b2747, #0e1430);
  box-shadow: 0 10px 30px rgba(8, 12, 28, .5), inset 0 0 0 1px rgba(212, 175, 95, .4);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.intro-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(8, 12, 28, .6), inset 0 0 0 1px rgba(212, 175, 95, .8);
}
.intro-fab svg { color: #d4af5f; flex-shrink: 0; }
.intro-fab em { font-style: normal; letter-spacing: .3px; }
.if-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: if-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes if-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 95, .45); }
  70%  { box-shadow: 0 0 0 14px rgba(212, 175, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 95, 0); }
}

/* Mobil: modal tam ekrana oturur */
@media (max-width: 700px) {
  .intro-modal { padding: 0; }
  .im-card {
    width: 100%;
    height: 100dvh;
    padding: 0;
    border-radius: 0;
  }
  .im-frame {
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .im-head { padding-top: max(14px, env(safe-area-inset-top)); }
  .im-video {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
  }
  .im-video video {
    width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
  }
  .im-foot { padding-bottom: max(13px, env(safe-area-inset-bottom)); }
  .im-title { display: none; }
  .im-sound { padding: 8px 14px; font-size: 12px; left: 10px; bottom: 12px; }
  .im-foot span { font-size: 11.5px; }
}
@media (max-width: 600px) {
  .intro-fab { left: 14px; bottom: 14px; padding: 10px 16px 10px 12px; font-size: 12.5px; }
}

/* ── Scroll Reveal ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Boş Durum ────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

/* ═════════════ RESPONSIVE ═════════════════ */
@media (max-width: 1024px) {
  .cars-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 26px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(21,32,58,.12);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.4,.1,.2,1);
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 13px 16px; font-size: 15.5px; }
  .main-nav .nav-cta { margin: 8px 0 0; justify-content: center; }

  .cf-section {
    --cf-shift: 215px;
    --cf-rotate: 34deg;
    --cf-depth: 150px;
    --cf-w: 420px;
    --cf-h: 300px;
  }
  .cf-info h3 { font-size: 19px; }
  .cf-price strong { font-size: 17px; }
  .cf-overlay { padding: 18px 20px; }
}

@media (max-width: 600px) {
  .container { width: min(1200px, 100% - 32px); }
  .cars-grid, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .expertise-wrap { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 48px 0 26px; }
  .section { padding: 52px 0; }
  .cf-section {
    --cf-shift: 70px;
    --cf-rotate: 30deg;
    --cf-depth: 130px;
    --cf-w: min(330px, calc(100vw - 70px));
    --cf-h: 250px;
  }
  .cf-info h3 { font-size: 16.5px; }
  .cf-info .cf-meta { font-size: 11.5px; gap: 8px; }
  .cf-price { padding: 8px 12px; border-radius: 12px; }
  .cf-price strong { font-size: 14.5px; }
  .cf-arrow { width: 42px; height: 42px; }
  .cf-overlay { padding: 14px 16px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .call-float { width: 54px; height: 54px; right: 16px; bottom: 80px; }
}
