/* =========================================================
   OTO DENİZ MÜHENDİSLİK YEDEK PARÇA — SİVAS
   Sivas Oto Yedek Parça SEO Sitesi
   Stil dosyası: style.css
   ========================================================= */

/* ===== CSS Variables ===== */
:root {
  --primary: #004aad;
  --primary-dark: #003a87;
  --primary-light: #1a64c7;
  --secondary: #ff3131;
  --secondary-dark: #d92626;
  --secondary-light: #ff5151;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-dark: #1a1a2e;
  --text: #1a1a2e;
  --text-muted: #5a6478;
  --text-light: #8a92a3;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 74, 173, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 74, 173, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 74, 173, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-h: 72px;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--secondary); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.3);
}
.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 44px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand-text span {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(0, 74, 173, 0.06);
}

.header-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--primary);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 70px;
  background:
    linear-gradient(135deg, rgba(0, 74, 173, 0.92) 0%, rgba(0, 58, 135, 0.96) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: #ffd54a; }
.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn { font-size: 16px; padding: 16px 28px; }

/* ===== Section heading ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card.accent .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Brand grid ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  min-height: 140px;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: left 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}
.brand-card:hover::before { left: 0; }
.brand-card .brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  color: inherit;
}
.brand-card .brand-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.brand-card:hover .brand-tag { color: var(--secondary); }

/* Brand specific colors */
.brand-card[data-brand="volkswagen"] .brand-name { color: #001e50; }
.brand-card[data-brand="audi"] .brand-name { color: #000000; }
.brand-card[data-brand="seat"] .brand-name { color: #c41444; }
.brand-card[data-brand="skoda"] .brand-name { color: #4ba82e; }
.brand-card[data-brand="mercedes"] .brand-name { color: #00adef; }
.brand-card[data-brand="cupra"] .brand-name { color: #5d605e; }
.brand-card[data-brand="renault"] .brand-name { color: #efdf00; -webkit-text-stroke: 1px #1a1a2e; }
.brand-card[data-brand="fiat"] .brand-name { color: #b00020; }
.brand-card[data-brand="bmw"] .brand-name { color: #0066b1; }
.brand-card[data-brand="dacia"] .brand-name { color: #646b52; }
.brand-card[data-brand="chery"] .brand-name { color: #c8102e; }

.brand-card:hover .brand-name {
  color: var(--primary) !important;
  -webkit-text-stroke: 0 !important;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text);
}
.feature p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}
.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #ffd54a;
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ===== Contact preview / Map ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--primary);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-text {
  flex: 1;
  min-width: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}
.contact-item-text a:hover { color: var(--primary); }
.contact-item-text small {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 26px;
  font-size: 16px;
}
.cta-banner .btn {
  background: var(--white);
  color: var(--secondary);
}
.cta-banner .btn:hover {
  background: var(--bg-dark);
  color: var(--white);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}
.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer p a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  transition: color var(--transition);
}
.footer ul a:hover, .footer p a:hover { color: #ffd54a; }
.footer-contact-item {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.75); }

/* ===== Floating Action Buttons (FAB) ===== */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.fab svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.fab-wa {
  background: var(--whatsapp);
  animation: pulseWa 2.5s infinite;
}
.fab-wa:hover { background: var(--whatsapp-dark); transform: scale(1.08); }
.fab-call {
  background: var(--secondary);
  animation: pulseCall 2.5s infinite 0.5s;
}
.fab-call:hover { background: var(--secondary-dark); transform: scale(1.08); }
.fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.fab-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--bg-dark);
}
.fab:hover .fab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@keyframes pulseCall {
  0%, 100% { box-shadow: 0 10px 25px rgba(255, 49, 49, 0.4); }
  50% { box-shadow: 0 10px 25px rgba(255, 49, 49, 0.4), 0 0 0 14px rgba(255, 49, 49, 0); }
}

/* ===== Page header (sub pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs a:hover { color: #ffd54a; }
.breadcrumbs span[aria-hidden] { color: rgba(255, 255, 255, 0.5); }
.breadcrumbs [aria-current="page"] { color: #ffd54a; }

/* ===== Directions specific ===== */
.directions-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.full-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 540px;
}
.full-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  display: block;
}
.directions-info h2 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
}
.transport-list { margin-top: 18px; }
.transport-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.transport-item:last-child { border-bottom: 0; }
.transport-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transport-icon svg { width: 22px; height: 22px; }
.transport-item h4 { font-size: 16px; margin-bottom: 4px; }
.transport-item p { font-size: 14px; color: var(--text-muted); }

.distance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.distance-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: all var(--transition);
}
.distance-chip:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.distance-chip strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.distance-chip span {
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ===== Hours table ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-table td:first-child { font-weight: 600; color: var(--text); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.closed td:last-child { color: var(--secondary); font-weight: 600; }
.hours-table tr.today td:first-child::before {
  content: '●';
  color: #25d366;
  margin-right: 8px;
}

/* ===== Status badge ===== */
.status-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.status-open::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== Big contact buttons ===== */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition);
}
.contact-action svg { width: 24px; height: 24px; flex-shrink: 0; }
.contact-action.call {
  background: var(--secondary);
  color: var(--white);
}
.contact-action.call:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 49, 49, 0.3);
}
.contact-action.wa {
  background: var(--whatsapp);
  color: var(--white);
}
.contact-action.wa:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-lg { margin-top: 36px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact-split { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    align-items: stretch;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 14px 12px; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand-text strong { font-size: 16px; }
  .brand-text span { font-size: 10px; }
  .brand img { height: 38px; }

  .hero { padding: 60px 0 50px; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr; }
  .fab { width: 54px; height: 54px; }
  .fab svg { width: 26px; height: 26px; }
  .fab-stack { right: 14px; bottom: 14px; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .contact-card { padding: 24px 20px; }
  .stats { padding: 36px 20px; }
  .cta-banner { padding: 36px 20px; }
  .gallery-grid img { height: 200px; }
}

/* ===== Print ===== */
@media print {
  .site-header, .fab-stack, .site-footer, .cta-banner { display: none; }
  body { background: var(--white); color: var(--text); }
}

/* ===== Motion reduction ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   MARKA & MODEL SAYFALARI
   ============================================================ */

/* ----- Breadcrumbs light (koyu/renkli hero arka planları için) ----- */
.breadcrumbs-light {
  justify-content: flex-start;
  margin: 0 0 18px;
}
.breadcrumbs-light a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs-light a:hover { color: #ffd54a; }
.breadcrumbs-light span[aria-hidden] { color: rgba(255, 255, 255, 0.45); }
.breadcrumbs-light [aria-current="page"] { color: #ffd54a; }

/* ----- Markalar listesi (markalar/index.php) ----- */
.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.brand-list-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand-list-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.brand-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-list-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand-list-arrow {
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.brand-list-arrow svg { width: 22px; height: 22px; }
.brand-list-card:hover .brand-list-arrow {
  color: var(--primary);
  transform: translateX(4px);
}
.brand-list-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.brand-list-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ----- Marka sayfası hero ----- */
.brand-hero {
  position: relative;
  background:
    linear-gradient(135deg, var(--brand, var(--primary)) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 56px 0 64px;
  overflow: hidden;
}
.brand-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.brand-hero-inner { position: relative; z-index: 1; }
.brand-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.brand-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.brand-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 26px;
}

/* ----- Marka intro ----- */
.brand-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.brand-intro h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 14px;
}
.brand-intro p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.brand-intro p strong { color: var(--text); }
.brand-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
}
.brand-intro-stats li {
  text-align: center;
  padding: 14px 8px;
}
.brand-intro-stats strong {
  display: block;
  color: #ffd54a;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.brand-intro-stats span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----- Model grid ----- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
  color: var(--primary);
}
.model-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.model-card-name {
  font-size: 18px;
  font-weight: 700;
  color: inherit;
  margin: 0;
}
.model-card-arrow {
  color: var(--text-muted);
  font-size: 18px;
  transition: transform var(--transition), color var(--transition);
}
.model-card:hover .model-card-arrow {
  color: var(--primary);
  transform: translateX(4px);
}
.model-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.model-chip {
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}
.model-chip-type {
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
}
.model-card-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ----- Motor family kartlar ----- */
.motor-family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.motor-family-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: all var(--transition);
}
.motor-family-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.motor-family-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.motor-family-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.motor-family-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.motor-family-card p strong { color: var(--text); }

/* ----- Problem list (kısa, marka sayfasında) ----- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}
.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.problem-item:hover {
  border-color: var(--secondary);
  background: #fff5f5;
}
.problem-bullet {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.problem-item div { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.problem-item strong { color: var(--text); }

/* ----- Model sayfası hero ----- */
.model-hero {
  background:
    linear-gradient(135deg, var(--brand, var(--primary)) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 50px 0 56px;
  position: relative;
  overflow: hidden;
}
.model-hero::before {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.model-hero-inner { position: relative; z-index: 1; }
.model-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.model-hero-brand { color: #ffd54a; }
.model-hero-divider { opacity: 0.5; }
.model-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.model-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  max-width: 760px;
  margin-bottom: 24px;
}
.model-hero p strong { color: #ffd54a; }

/* ----- Anchor nav (model sayfası için sticky) ----- */
.anchor-nav {
  position: sticky;
  top: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.anchor-nav .container {
  display: flex;
  gap: 4px;
  padding: 0 20px;
}
.anchor-nav a {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.anchor-nav a:hover {
  color: var(--primary);
  border-color: var(--primary-light);
}

/* ----- Generation cards ----- */
.generation-list {
  display: grid;
  gap: 18px;
}
.generation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.generation-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.generation-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.generation-head h3 {
  font-size: 20px;
  margin: 0;
  color: var(--primary);
}
.generation-code {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.generation-years {
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}
.generation-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.generation-section { margin-top: 14px; }
.generation-section h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.motor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  list-style: disc inside;
  font-size: 14.5px;
  color: var(--text);
}
.motor-list li {
  list-style: none;
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
  font-size: 13.5px;
}
.trim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.trim-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* ----- Issue cards (kronik sorunlar) ----- */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.issue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--text-muted);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.issue-card.severity-kritik { border-left-color: var(--secondary); }
.issue-card.severity-yüksek { border-left-color: #ff8c00; }
.issue-card.severity-yuksek { border-left-color: #ff8c00; }
.issue-card.severity-orta   { border-left-color: #ffd54a; }
.issue-card.severity-düşük  { border-left-color: #25d366; }
.issue-card.severity-dusuk  { border-left-color: #25d366; }
.issue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.issue-severity {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 49, 49, 0.1);
  color: var(--secondary);
}
.issue-card.severity-yüksek .issue-severity,
.issue-card.severity-yuksek .issue-severity {
  background: rgba(255, 140, 0, 0.12);
  color: #b85f00;
}
.issue-card.severity-orta .issue-severity {
  background: rgba(255, 213, 74, 0.18);
  color: #8a6d00;
}
.issue-card.severity-düşük .issue-severity,
.issue-card.severity-dusuk .issue-severity {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}
.issue-km {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
}
.issue-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.issue-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.issue-note {
  background: rgba(0, 74, 173, 0.05);
  border: 1px solid rgba(0, 74, 173, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.issue-note strong { color: var(--primary); }
.issue-note a { font-weight: 700; }

/* ----- Maintenance table ----- */
.maint-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}
.maint-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.maint-table thead th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.maint-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text);
}
.maint-table tbody tr:hover { background: var(--bg-alt); }
.maint-table td.km {
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ----- Parts grid (chip cloud) ----- */
.parts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.part-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  cursor: default;
}
.part-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ----- Responsive overrides ----- */
@media (max-width: 760px) {
  .brand-intro { grid-template-columns: 1fr; }
  .brand-intro-stats { grid-template-columns: 1fr 1fr; }
  .anchor-nav .container { padding: 0 12px; gap: 0; }
  .anchor-nav a { padding: 12px 14px; font-size: 13px; }
  .generation-head { flex-direction: column; align-items: flex-start; }
  .maint-table thead th { padding: 10px 12px; font-size: 12px; }
  .maint-table tbody td { padding: 12px; font-size: 14px; }
}


/* ============================================================
   MODEL SAYFASI — DETAY BÖLÜMLERİ (golf.php v2)
   ============================================================ */

/* ----- TR Pazarı / Intro grid ----- */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.intro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  transition: all var(--transition);
}
.intro-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.intro-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}
.intro-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}
.intro-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ----- Engine table (nesil bloğu içinde) ----- */
.engine-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.engine-table thead th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.engine-table tbody td {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.engine-table tbody tr:hover { background: var(--white); }
.engine-table .eng-name {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.engine-table .eng-code {
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
  font-size: 12.5px;
  color: var(--primary);
  letter-spacing: 0.2px;
}
.engine-table .eng-hp {
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  text-align: right;
}

/* TR notu (nesil kartı içinde) */
.generation-trnote {
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(255, 213, 74, 0.12);
  border-left: 3px solid #ffd54a;
  border-radius: 6px;
  margin-bottom: 18px;
}
.generation-trnote strong { color: #8a6d00; }

/* ----- Motor Issue Cards (detaylı motor bazlı sorunlar) ----- */
.motor-issue-list {
  display: grid;
  gap: 24px;
}
.motor-issue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}
.motor-issue-card:hover { border-color: var(--primary); }
.motor-issue-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.motor-issue-title h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.motor-issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
}
.motor-issue-codes {
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
  background: rgba(0, 74, 173, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.motor-issue-hp {
  background: rgba(255, 49, 49, 0.08);
  color: var(--secondary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.motor-issue-gens {
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.motor-issue-tldr {
  background: rgba(255, 213, 74, 0.14);
  border-left: 4px solid #ffd54a;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 18px;
}
.motor-issue-tldr strong { color: #8a6d00; }
.motor-issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.motor-issue-grid .issue-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}
.motor-issue-grid .issue-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----- Ortak Sorunlar — Kategorize ----- */
.general-issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.general-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.general-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.general-cat-icon { font-size: 22px; line-height: 1; }
.general-cat-list { display: grid; gap: 10px; }
.general-cat-list li {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg-alt);
  font-size: 14px;
}
.general-cat-list li:hover { background: rgba(0, 74, 173, 0.05); }
.general-cat-list li strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.general-cat-list li span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ----- Sivas Koşulları Kartlar ----- */
.sivas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.sivas-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all var(--transition);
}
.sivas-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.sivas-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.sivas-card h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.sivas-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ----- Parçalar (kategorize chip cloud) ----- */
.parts-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.parts-cat {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.parts-cat h3 {
  font-size: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.parts-cat .parts-grid {
  justify-content: flex-start;
  gap: 6px;
}
.parts-cat .part-tag {
  font-size: 13px;
  padding: 7px 12px;
  background: var(--white);
}

/* ----- SEO Cloud ----- */
.seo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
.seo-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  font-family: ui-monospace, "SF Mono", Monaco, Consolas, monospace;
}
.seo-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ----- FAQ (SSS) ----- */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ----- Engine table responsive ----- */
@media (max-width: 580px) {
  .engine-table thead { display: none; }
  .engine-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 10px;
    border-top: 1px solid var(--border);
  }
  .engine-table tbody td {
    border: 0;
    padding: 3px 6px;
  }
  .engine-table .eng-name { grid-column: 1 / 3; font-size: 14.5px; }
  .engine-table .eng-code { grid-column: 1; }
  .engine-table .eng-hp { grid-column: 2; text-align: right; }
  .motor-issue-card { padding: 20px; }
  .motor-issue-title h3 { font-size: 18px; }
}


/* ============================================================
   PARTNER RECOMMENDATION (Öz Huzur Oto backlink)
   ============================================================ */
.partner-recommendation {
  margin-top: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.06), rgba(255, 49, 49, 0.05));
  border: 1px solid rgba(0, 74, 173, 0.18);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
.partner-recommendation a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 49, 49, 0.4);
  text-underline-offset: 3px;
}
.partner-recommendation a:hover {
  color: var(--secondary-dark);
  text-decoration-color: var(--secondary);
}
.partner-recommendation strong { color: var(--primary); }
