/*
 * Eskişehir Oto Çilingir — beyaz / kurumsal otomotiv tema katmanı
 * Bu dosya style.css ve upgrade.css dosyalarından sonra yüklenmelidir.
 */

:root {
  color-scheme: light;
  --bg: #f5f7f9;
  --panel: #ffffff;
  --panel2: #edf2f5;
  --text: #13222e;
  --muted: #5b6a76;
  --amber: #d9911b;
  --line: #dce4e9;
  --max: 1180px;
  --auto-navy: #0c2d42;
  --auto-blue: #126b9a;
  --auto-blue-dark: #0a5279;
  --auto-sky: #eaf5fa;
  --auto-amber-soft: #fff5e2;
  --auto-green: #147a55;
  --auto-green-soft: #eaf7f1;
  --auto-shadow-sm: 0 8px 24px rgba(18, 42, 57, .07);
  --auto-shadow-md: 0 18px 48px rgba(18, 42, 57, .11);
  --auto-radius-sm: 10px;
  --auto-radius: 18px;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: #f6ca7f;
  color: #14202a;
}

a,
button,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 107, 154, .3);
  outline-offset: 3px;
}

/* Üst menü ve korunacak mevcut logo */
.site-header {
  height: 82px;
  color: var(--text);
  border-bottom: 1px solid rgba(19, 34, 46, .09);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 5px 24px rgba(18, 42, 57, .06);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}

.brand {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.brand b {
  color: var(--auto-navy);
  font-weight: 850;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border: 1px solid rgba(19, 34, 46, .08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(18, 42, 57, .08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

.site-header nav {
  color: #41515e;
  font-weight: 650;
}

.site-header nav a {
  position: relative;
  padding: 29px 0 25px;
  transition: color .2s ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--auto-blue-dark);
}

.site-header nav a:hover::after,
.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  color: #ffffff;
  border: 1px solid var(--auto-navy);
  border-radius: 9px;
  background: var(--auto-navy);
  box-shadow: 0 8px 20px rgba(12, 45, 66, .16);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-call:hover {
  color: #ffffff;
  border-color: var(--auto-blue);
  background: var(--auto-blue);
  transform: translateY(-1px);
}

.menu {
  color: var(--auto-navy);
}

/* Düğmeler */
.btn {
  min-height: 52px;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, color .2s ease,
    box-shadow .2s ease, transform .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary,
.primary {
  color: #ffffff;
  border: 1px solid var(--auto-navy);
  background: var(--auto-navy);
  box-shadow: 0 10px 24px rgba(12, 45, 66, .18);
}

.btn.primary:hover,
.primary:hover {
  color: #ffffff;
  border-color: var(--auto-blue);
  background: var(--auto-blue);
}

.btn.secondary,
.secondary {
  color: var(--auto-navy);
  border: 1px solid #aebcc5;
  background: rgba(255, 255, 255, .86);
}

.btn.secondary:hover,
.secondary:hover {
  color: var(--auto-blue-dark);
  border-color: var(--auto-blue);
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
}

/* Mevcut ana sayfa hero ve yeni oto hero */
.hero,
.auto-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 700px;
  align-items: center;
  color: var(--text);
  background-color: #eaf0f3;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .94) 39%, rgba(255, 255, 255, .5) 64%, rgba(255, 255, 255, .08) 100%),
    var(--auto-hero-image, url("auto-hero.jpg"));
  background-position: center;
  background-size: cover;
}

.auto-site .auto-hero {
  --auto-hero-image: url("auto-hero.jpg");
  background-position: center center;
}

.hero::after,
.auto-hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(245, 247, 249, .92));
}

.hero-content,
.auto-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero-content > p,
.auto-hero .hero-content > p {
  color: #475965;
}

.hero h1,
.auto-hero h1 {
  max-width: 780px;
  color: var(--auto-navy);
}

.hero h1 em,
.auto-hero h1 em {
  color: var(--amber);
}

.eyebrow {
  color: #ad6d08;
}

.trust,
.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  color: #334753;
  font-size: 12px;
}

.trust span,
.hero-proof span,
.hero-proof > div {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid rgba(12, 45, 66, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .87);
  box-shadow: 0 6px 18px rgba(18, 42, 57, .06);
  backdrop-filter: blur(8px);
}

.hero-proof strong {
  color: var(--auto-navy);
  font-weight: 800;
}

.hero-proof small {
  color: var(--muted);
}

/* Genel içerik */
.section h2,
.cta h2,
.map h2,
.split article h2 {
  color: var(--auto-navy);
}

.intro p,
.lead,
.prose > p,
.split article p,
.cta p {
  color: var(--muted);
}

.section + .section {
  border-top-color: rgba(19, 34, 46, .06);
}

/* Mevcut fotoğraflı kartlar */
.cards {
  gap: 16px;
}

.card {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--auto-radius);
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.card:hover {
  border-color: rgba(18, 107, 154, .4);
  box-shadow: var(--auto-shadow-md);
  transform: translateY(-5px);
}

.card-media {
  border-bottom: 1px solid var(--line);
  background: #edf2f5;
}

.card-media::after {
  background: linear-gradient(180deg, transparent 68%, rgba(12, 45, 66, .12));
}

.card-content h3 {
  color: var(--auto-navy);
}

.card-content p,
.card p {
  color: var(--muted);
}

.card-content a,
.card a,
.mini-service-card a,
.all-regions-link a,
.map-link {
  color: var(--auto-blue-dark);
}

.card-no {
  color: #a86300;
}

/* Yeni, yalnız oto hizmetleri kart yapısı */
.auto-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.auto-service-grid > article,
.auto-service-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--auto-radius);
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.auto-service-grid > article:hover,
.auto-service-card:hover {
  border-color: rgba(18, 107, 154, .42);
  box-shadow: var(--auto-shadow-md);
  transform: translateY(-5px);
}

.auto-service-grid figure,
.auto-service-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e8eef2;
}

.auto-service-grid figure::after,
.auto-service-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 -40px 50px rgba(12, 45, 66, .1);
}

.auto-service-grid img,
.auto-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.auto-service-grid article:hover img,
.auto-service-card:hover img {
  transform: scale(1.035);
}

.auto-service-grid .card-content,
.auto-service-card .card-content,
.auto-service-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.auto-service-grid h3,
.auto-service-card h3 {
  margin: 14px 0 9px;
  color: var(--auto-navy);
  font-size: 21px;
  line-height: 1.25;
}

.auto-service-grid p,
.auto-service-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.auto-service-grid a,
.auto-service-card a {
  color: var(--auto-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

/* Teknoloji / immobilizer bandı */
.tech-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 85% 10%, rgba(52, 159, 209, .3), transparent 30%),
    linear-gradient(135deg, #081f30 0%, #0c3a55 100%);
}

.tech-band::before {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 390px;
  height: 390px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .025),
    0 0 0 110px rgba(255, 255, 255, .018);
}

.tech-band .section,
.tech-band-inner {
  position: relative;
  z-index: 1;
}

.tech-band-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 96px 0;
}

.tech-band h2,
.tech-band h3,
.tech-band strong {
  color: #ffffff;
}

.tech-band .eyebrow {
  color: #f6bd5e;
}

.tech-band p,
.tech-band .lead {
  color: #c9d9e2;
}

.tech-band-grid,
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.tech-band-grid > article,
.tech-grid > article,
.tech-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

.tech-band-grid b,
.tech-grid b,
.tech-card b {
  display: block;
  margin-bottom: 20px;
  color: #f6bd5e;
  font-size: 12px;
  letter-spacing: .12em;
}

.tech-band-grid h3,
.tech-grid h3,
.tech-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.tech-band-grid p,
.tech-grid p,
.tech-card p {
  margin: 0;
  font-size: 13px;
}

/* Güvenli ve yetkili işlem bandı */
.security-band {
  border-top: 1px solid #d6e9df;
  border-bottom: 1px solid #d6e9df;
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 122, 85, .09), transparent 30%),
    var(--auto-green-soft);
}

.security-band .section,
.security-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 58px;
  align-items: center;
}

.security-band-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 96px 0;
}

.security-band h2,
.security-band h3 {
  color: #0d573d;
}

.security-band .eyebrow {
  color: var(--auto-green);
}

.security-band p {
  color: #46665a;
}

.security-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  color: #234c3d;
  border: 1px solid #cfe5da;
  border-radius: 11px;
  background: rgba(255, 255, 255, .7);
}

.security-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  content: "✓";
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--auto-green);
  font-size: 12px;
  font-weight: 900;
}

/* Araç ve sistem uyumluluk kartları */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.compat-grid > div,
.compat-grid > article,
.compat-grid > a {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(18, 42, 57, .05);
}

.compat-grid h3,
.compat-grid strong {
  display: block;
  margin: 0 0 7px;
  color: var(--auto-navy);
  font-size: 16px;
}

.compat-grid p,
.compat-grid small,
.compat-grid span {
  color: var(--muted);
  font-size: 12px;
}

/* İlçe, mahalle ve kompakt hizmet kartları */
.district-card,
.home-district-grid > a,
.mini-service-card,
.location-list a,
.area-grid a {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 42, 57, .045);
}

.district-card:hover,
.home-district-grid > a:hover,
.location-list a:hover,
.area-grid a:hover {
  border-color: rgba(18, 107, 154, .45);
  box-shadow: var(--auto-shadow-sm);
}

.district-card span,
.home-district-grid > a span,
.mini-service-card h3,
.location-list span {
  color: var(--auto-navy);
}

.district-card strong,
.card-no {
  color: #a76600;
}

.district-card small,
.home-district-grid > a small,
.mini-service-card p,
.location-list small {
  color: var(--muted);
}

.mini-service-card {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mini-service-card:hover {
  border-color: rgba(18, 107, 154, .45);
  box-shadow: var(--auto-shadow-sm);
  transform: translateY(-3px);
}

/* Alt sayfa hero */
.local-hero,
.page-head {
  color: var(--text);
  background:
    radial-gradient(circle at 82% 14%, rgba(18, 107, 154, .11), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
}

.visual-page-head {
  border-bottom: 1px solid rgba(19, 34, 46, .07);
}

.visual-page-head > div > p,
.local-hero > p,
.page-head > p {
  color: var(--muted);
}

.local-hero h1,
.page-head h1 {
  color: var(--auto-navy);
}

.page-visual {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 46, .1);
  border-radius: var(--auto-radius);
  background: #e9eef1;
  box-shadow: var(--auto-shadow-md);
}

.page-visual::after {
  box-shadow: inset 0 0 55px rgba(12, 45, 66, .08);
}

.breadcrumbs {
  color: #71808b;
}

.breadcrumbs a {
  color: var(--auto-blue-dark);
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
}

.meta-strip > div {
  border-right-color: var(--line);
}

.meta-strip strong {
  color: var(--auto-navy);
}

.meta-strip span {
  color: var(--muted);
}

/* Süreç, bilgi kutuları ve SSS */
.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #edf3f6;
}

.process ol {
  gap: 12px;
  background: transparent;
}

.process li {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(18, 42, 57, .045);
}

.process li b {
  color: var(--auto-blue-dark);
}

.process li span {
  color: var(--muted);
}

.info {
  overflow: hidden;
  color: var(--text);
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
}

.info h3 {
  color: var(--auto-navy);
}

.info dt,
.info small {
  color: var(--muted);
}

.info small,
.map-link {
  border-top-color: var(--line);
}

.check-grid > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(18, 42, 57, .04);
}

.check-grid b {
  color: var(--auto-blue-dark);
}

.check-grid h3 {
  color: var(--auto-navy);
}

details {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(18, 42, 57, .04);
}

details[open] {
  border-color: rgba(18, 107, 154, .34);
}

summary {
  color: var(--auto-navy);
}

details p {
  color: var(--muted);
}

.source-note {
  color: #526570;
  border: 1px solid #d9e4ea;
  border-left: 4px solid var(--auto-blue);
  border-radius: 0 11px 11px 0;
  background: #f1f7fa;
}

.source-note strong {
  color: var(--auto-navy);
}

/* İletişim, harita ve formlar */
.map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--auto-radius);
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
}

.map > div {
  background: #ffffff;
}

.map p {
  color: var(--muted);
}

.map a {
  color: var(--auto-blue-dark);
}

iframe {
  filter: none;
}

form,
.contact-form,
.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--auto-radius);
  background: #ffffff;
  box-shadow: var(--auto-shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field,
form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: var(--auto-navy);
  font-size: 13px;
  font-weight: 750;
}

.form-field.full,
.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid #cbd6dd;
  border-radius: 9px;
  outline: 0;
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8a98a2;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--auto-blue);
  box-shadow: 0 0 0 4px rgba(18, 107, 154, .11);
}

form button,
.contact-form button,
.quote-form button {
  min-height: 52px;
  padding: 0 22px;
  color: #ffffff;
  border: 0;
  border-radius: 9px;
  background: var(--auto-navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

form button:hover,
.contact-form button:hover,
.quote-form button:hover {
  background: var(--auto-blue);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

/* Çağrı alanı */
.cta {
  color: var(--text);
  border-top: 1px solid #d9e4ea;
  border-bottom: 1px solid #d9e4ea;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 145, 27, .13), transparent 34%),
    linear-gradient(135deg, #ffffff, #eaf4f8);
}

.cta h2 {
  color: var(--auto-navy);
}

.cta .eyebrow {
  color: #a86500;
}

/* Alt bölüm */
footer {
  color: #5c6b76;
  border-top: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

footer h3 {
  color: var(--auto-navy);
}

footer a:hover {
  color: var(--auto-blue-dark);
}

footer small {
  border-top-color: var(--line);
}

.mobile-actions {
  border-top: 1px solid rgba(19, 34, 46, .12);
  box-shadow: 0 -8px 28px rgba(18, 42, 57, .13);
}

.mobile-actions a {
  color: #ffffff;
  background: var(--auto-navy);
}

.mobile-actions .wa {
  color: #ffffff;
  background: #168b55;
}

/* Tablet */
@media (max-width: 1020px) {
  .site-header {
    gap: 18px;
  }

  .site-header nav {
    gap: 17px;
  }

  .auto-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-band-grid,
  .tech-grid,
  .compat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobil */
@media (max-width: 850px) {
  .site-header {
    height: 68px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 10px;
  }

  .site-header nav {
    top: 67px;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 16px 28px rgba(18, 42, 57, .1);
  }

  .site-header nav a {
    min-height: 47px;
    display: flex;
    align-items: center;
    padding: 8px 2px;
    border-bottom: 1px solid #edf1f3;
  }

  .site-header nav a::after {
    display: none;
  }

  .hero,
  .auto-hero {
    min-height: 660px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .91) 58%, rgba(255, 255, 255, .58) 100%),
      var(--auto-hero-image, url("auto-hero.jpg"));
    background-position: 62% center;
  }

  .hero-content,
  .auto-hero .hero-content {
    width: calc(100% - 32px);
  }

  .hero h1,
  .auto-hero h1,
  .local-hero h1,
  .page-head h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .security-band .section,
  .security-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-band-inner,
  .security-band-inner {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .visual-page-head {
    background: linear-gradient(180deg, #ffffff, #f4f8fa);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .form-grid .full {
    grid-column: auto;
  }

  .map {
    border-radius: 14px;
  }
}

@media (max-width: 620px) {
  .auto-service-grid,
  .tech-band-grid,
  .tech-grid,
  .compat-grid {
    grid-template-columns: 1fr;
  }

  .trust,
  .hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .trust span,
  .hero-proof span,
  .hero-proof > div {
    width: 100%;
    border-radius: 10px;
  }

  form,
  .contact-form,
  .quote-form {
    padding: 20px;
    border-radius: 13px;
  }

  .tech-band-grid > article,
  .tech-grid > article,
  .tech-card {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .meta-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .meta-strip > div:last-child {
    border-bottom: 0;
  }

  .auto-service-grid .card-content,
  .auto-service-card .card-content,
  .auto-service-card-body {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .hero-actions,
  .cta {
    display: none !important;
  }

  body,
  .section,
  .card,
  .info,
  footer {
    color: #000000;
    background: #ffffff;
    box-shadow: none;
  }
}

/* Üretici tarafından eklenen otomotiv içerik bileşenleri */
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
  background: var(--auto-navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-tight {
  padding-top: 44px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 15px 13px 43px;
  color: #3f505c;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.feature-list li::before {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--auto-green);
  content: "✓";
  font-weight: 900;
}

.feature-panel {
  margin: 34px 0 42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--auto-radius);
  background: var(--panel2);
}

.feature-panel h3 {
  margin-top: 0;
}

.safety-callout {
  margin-top: 34px;
  padding: 22px 24px;
  color: #284253;
  border: 1px solid #c9e2d6;
  border-left: 4px solid var(--auto-green);
  border-radius: 12px;
  background: var(--auto-green-soft);
}

.safety-callout strong {
  color: #0f5f42;
}

.four-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.source-links a {
  color: var(--auto-blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.error-page {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-page > div {
  max-width: 760px;
}

.error-page .hero-actions {
  justify-content: center;
}

@media (max-width: 850px) {
  .four-steps {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .site-header .header-call {
    display: none;
  }

  .site-header .menu {
    margin-left: auto;
  }
}
