/* DriveLine — araç kiralama ön yüz (temel katman) */
:root {
  /* Varsayılan: kırmızı & beyaz */
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #dc2626;
  --accent-2: #991b1b;
  --accent-soft: rgba(220, 38, 38, 0.14);
  --whatsapp: #22c55e;
  --danger: #dc2626;
  --ok: #15803d;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Poppins", var(--font-sans);
  --header-h: 72px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo__glyph {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 38%, transparent);
  flex-shrink: 0;
}

.logo__accent {
  color: var(--accent);
}

.logo--with-tag {
  align-items: center;
  gap: 0.7rem;
}

.logo__stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.15rem;
}

.logo__text {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 75%, var(--muted));
  white-space: nowrap;
}

.logo--footer .logo__tagline {
  color: var(--muted);
}

@media (max-width: 480px) {
  .logo__text {
    font-size: 1.05rem;
  }

  .logo__tagline {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
}

.logo--footer .logo__glyph {
  box-shadow: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  margin-left: 1.5rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0.25rem;
  border-radius: 8px;
}

@media (min-width: 900px) {
  .site-nav__list {
    gap: 0.2rem 0.85rem;
  }

  .site-nav a {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    padding: 0.45rem 0.5rem;
  }
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.site-nav a.is-active {
  color: var(--text);
  background: var(--accent-soft);
}

.site-nav__cta-item {
  display: none;
  list-style: none;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  width: 100%;
}

.header__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.live-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.8125rem;
  color: var(--muted);
  white-space: nowrap;
}

@media (min-width: 900px) {
  .live-badge {
    display: inline-flex;
  }

  .site-nav__cta-item {
    display: none !important;
  }
}

.live-badge__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.live-badge__strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .site-nav__cta-item {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 60;
    max-height: min(70vh, calc(100dvh - var(--header-h)));
    margin: 0;
    padding: 1rem 1.25rem 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0s;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem;
  }

  .site-nav a.btn--nav-cta {
    display: inline-flex;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1.1rem;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 38%, transparent);
}

.btn--secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn--secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.btn--block {
  width: 100%;
}

.btn--whatsapp {
  background: linear-gradient(135deg, #16a34a, var(--whatsapp));
  color: #fff;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28);
}

.btn--whatsapp:hover {
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.35);
}

.btn--header {
  padding-inline: 1rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 12% 18%, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 55%),
    radial-gradient(700px 380px at 88% 12%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 50%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 70%, #fff), var(--bg));
}

.hero__photo {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
}

.hero__content {
  padding-top: 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin: 0 0 1rem;
}

.hero__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}

.hero__ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero__ticks li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.hero__ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 28%, transparent);
}

.hero__panel-wrap {
  display: flex;
  justify-content: stretch;
}

.hero__panel {
  width: 100%;
}

.book-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow);
}

.book-form__head {
  margin-bottom: 1rem;
}

.book-form__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.book-form__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.field__control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__control:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 520px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-alert {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

.form-alert--ok {
  background: color-mix(in srgb, var(--ok) 12%, #fff);
  color: #14532d;
  border: 1px solid color-mix(in srgb, var(--ok) 25%, transparent);
}

.form-alert--err {
  background: color-mix(in srgb, var(--danger) 10%, #fff);
  color: #7f1d1d;
  border: 1px solid color-mix(in srgb, var(--danger) 22%, transparent);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--muted {
  background: color-mix(in srgb, var(--surface) 86%, var(--bg));
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section__lead {
  margin: 0;
  color: var(--muted);
}

.section--tight {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section__after {
  margin: 1.25rem 0 0;
}

.hero__inline-link {
  margin: 1rem 0 0;
}

.home-trust {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  border-top: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
}

.home-trust__item {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-trust__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.45rem;
  border-radius: 2px;
  vertical-align: 0.1em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.home .hero .eyebrow {
  padding: 0.38rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 88%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.home .hero__lead {
  line-height: 1.65;
  max-width: 54ch;
}

@media (min-width: 960px) {
  .home .hero__lead {
    font-size: 1.125rem;
  }
}

.book-form--hero {
  border-color: color-mix(in srgb, var(--line) 78%, var(--accent) 10%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 20px 48px rgba(15, 23, 42, 0.08);
}

.home-section-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-featured .section__head--row {
  align-items: flex-end;
}

.home-featured .section__title {
  margin-top: 0;
}

.vehicle-grid--home {
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .vehicle-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 560px) and (max-width: 899px) {
  .vehicle-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.home-blog .section__head {
  margin-bottom: 1.25rem;
}

@media (min-width: 960px) {
  .home .hero__grid {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.section__note {
  margin: 0;
}

.link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.fleet-toolbar {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fleet-filters {
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.fleet-filters .field {
  margin-bottom: 0;
}

.fleet-filters__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) and (max-width: 899px) {
  .fleet-filters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-filters__search {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .fleet-filters__grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    align-items: end;
  }
}

.fleet-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.fleet-toolbar__meta {
  margin: 0;
  max-width: 62ch;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.fleet-results {
  margin: 0;
}

.fleet-results--refined {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.fleet-results--spotlight {
  padding: clamp(1.35rem, 3.5vw, 2.25rem);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--accent-soft) 55%, var(--surface)) 0%, var(--surface) 45%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 16px 40px rgba(15, 23, 42, 0.06);
}

.vehicle-grid--one {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  margin: 0;
}

.vehicle-grid--one .vehicle-card {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

@media (min-width: 480px) {
  .vehicle-grid--one .vehicle-card {
    max-width: 440px;
  }
}

.vehicle-grid--two {
  max-width: 760px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 559px) {
  .vehicle-grid--two {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

.vehicle-grid--band {
  max-width: min(100%, 980px);
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fleet-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 70%, var(--surface));
}

.fleet-empty__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.fleet-empty__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.vehicle-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Araç kartı — vurgular site temasına (--accent / --accent-2) bağlı */
.vehicle-card {
  --vc-bar: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 68%, var(--accent)));
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

[data-theme="midnight"] .vehicle-card,
[data-theme="sand"] .vehicle-card {
  background: var(--surface);
  border-color: var(--line);
}

.vehicle-card__top {
  position: relative;
}

.vehicle-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vehicle-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  line-height: 1;
}

.vehicle-card__badge--tier {
  background: var(--vc-bar);
  color: #fff;
}

.vehicle-card__badge--ins {
  background: var(--surface);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.vehicle-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.vehicle-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.vehicle-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.vehicle-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0.15rem 0 0.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.vehicle-card__specrow {
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}

.vehicle-card__specitem {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 80%, var(--accent-soft));
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent) 14%);
}

.vehicle-card__specico {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.vehicle-card__specico svg {
  display: block;
  width: 16px;
  height: 16px;
}

.vehicle-card__transrow {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.vehicle-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.vehicle-card__pricebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--vc-bar);
  color: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  gap: 0.5rem;
}

.vehicle-card__pricebar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.vehicle-card__pricebar-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.vehicle-card__pill {
  font-size: 0.5625rem;
  font-weight: 800;
  background: #fff;
  color: var(--accent);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.vehicle-card__pricebar-amt {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.vehicle-card__pricebar--day .vehicle-card__pricebar-label {
  margin: 0;
}

.vehicle-card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  padding-top: 0.35rem;
}

.vehicle-card__btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.45rem;
  border-radius: 10px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: var(--surface);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vehicle-card__btn-detail:hover {
  background: var(--accent-soft);
  color: color-mix(in srgb, var(--accent) 72%, #0f172a);
  border-color: color-mix(in srgb, var(--accent) 58%, #0f172a);
}

/* Liste kartında eski aksiyon satırı kaldırıldı; detay sayfasında kullanılır */
.vehicle-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.vehicle-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.45rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vehicle-card__action-icon {
  display: flex;
  flex-shrink: 0;
}

.vehicle-card__action--wa {
  background: #25d366;
  border-color: #20bd5a;
  color: #fff;
}

.vehicle-card__action--wa:hover {
  background: #1ebe57;
  color: #fff;
}

.vehicle-card__action--call {
  background: var(--surface);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.vehicle-card__action--call:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.vehicle-card__meta {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vehicle-card__price {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.vehicle-card__btn {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-soft) 90%, var(--surface)),
    color-mix(in srgb, var(--accent-soft) 55%, var(--surface))
  );
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  margin-bottom: 0.75rem;
}

.why-card__icon .why-card__svg {
  display: block;
  width: 22px;
  height: 22px;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.why-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.why-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-card--accent {
  border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, var(--accent-soft)), var(--surface));
}

.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.page-hero:not(.page-hero--compact) {
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .page-hero:not(.page-hero--compact) {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.75rem, 3.5vw, 2.5rem);
    background:
      radial-gradient(900px 380px at 100% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 55%),
      radial-gradient(520px 280px at 0% 100%, color-mix(in srgb, var(--accent-2) 8%, transparent), transparent 50%),
      linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--bg) 55%, var(--surface)) 100%);
    border-bottom-color: color-mix(in srgb, var(--line) 80%, transparent);
  }
}

.page-hero:not(.page-hero--compact) .eyebrow {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 88%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 2.8vw + 0.85rem, 2.85rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  color: var(--text);
  text-wrap: balance;
}

.page-hero:not(.page-hero--compact) .page-hero__title:not(.page-hero__title--article) {
  position: relative;
  padding-bottom: 0.9rem;
  margin: 0 0 0.85rem;
}

.page-hero:not(.page-hero--compact) .page-hero__title:not(.page-hero__title--article)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.page-hero__title--article {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.page-hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 62ch;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .page-hero:not(.page-hero--compact) .page-hero__lead {
    font-size: 1.125rem;
    max-width: 54ch;
    line-height: 1.7;
  }
}

.page-hero__banner {
  margin: 1rem 0 0;
  max-width: 70ch;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  background: var(--accent-soft);
  color: var(--text);
  font-size: 0.9375rem;
}

.prose {
  font-size: 1.0625rem;
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prose__html ol {
  padding-left: 1.25rem;
}

/* Numaralı koşullar / politika listeleri (kartlı düzen) */
.terms-prose {
  font-size: 1rem;
}

.terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: terms-counter;
}

.terms-item {
  position: relative;
  margin: 0;
  padding: 1.35rem 1.4rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.terms-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.92;
}

.terms-item__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.terms-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  height: 1.9rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 90%, var(--surface));
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
}

.terms-item p {
  margin: 0 0 0.55rem;
  color: var(--text);
  line-height: 1.65;
}

.terms-item p:last-child {
  margin-bottom: 0;
}

.terms-bullets {
  margin: 0.4rem 0 0;
  padding: 0 0 0 0.25rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.terms-bullets li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

.terms-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

@media (max-width: 720px) {
  .terms-item {
    padding: 1.1rem 1rem 0.95rem 1.15rem;
  }

  .terms-item__title {
    font-size: 1.05rem;
  }
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.blog-card__date {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.blog-card__title a {
  text-decoration: none;
  color: var(--text);
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.blog-card__more {
  margin: 0.85rem 0 0;
}

.blog-back {
  margin: 0 0 0.5rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.contact-card__title {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.contact-card__muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.contact-form-wrap {
  max-width: 640px;
}

.book-form--wide {
  max-width: none;
}

.field__control--textarea {
  resize: vertical;
  min-height: 120px;
}

.cta-band {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band__title {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-band__lead {
  margin: 0;
  color: #cbd5e1;
  max-width: 52ch;
}

/*
 * Footer — lokasyon SEO iç bağlantıları: HTML’de kalır (crawl / anchor metni),
 * ekranda görünmez (klavye sırası tabindex=-1 ile footer.php’de).
 */
.footer-seo-strip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.footer-seo-strip__inner {
  max-width: 72rem;
}

.footer-seo-strip__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

.footer-seo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.footer-seo-chip:hover {
  color: #f8fafc;
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(51, 65, 85, 0.95);
}

@media (min-width: 640px) {
  .footer-seo-chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }
}

/* Footer */
.site-footer {
  padding: clamp(2.5rem, 4vw, 3.25rem) 0 1.5rem;
  background: var(--surface);
  border-top: none;
}

.footer__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer__tag {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 36ch;
}

.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer__nav a {
  text-decoration: none;
  color: var(--muted);
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.footer__phone {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.footer__hours {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.footer__label--spaced {
  margin-top: 1rem;
}

.footer__email {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--text);
  word-break: break-all;
}

.footer__email:hover {
  color: var(--accent);
}

.footer__address {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 32ch;
}

.footer__legal {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer__base {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vehicle-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vehicle-card__title-link {
  color: inherit;
  text-decoration: none;
}

.vehicle-card__title-link:hover {
  color: var(--accent);
}

.page-hero--compact {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.page-hero--compact .page-hero__title {
  font-size: clamp(1.55rem, 2.2vw + 0.65rem, 2.1rem);
  letter-spacing: -0.03em;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

/* Ortak SVG ikonlar (emoji / Unicode simge yerine) */
.site-ico {
  display: block;
  flex-shrink: 0;
}

.link--with-ico {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link--with-ico .link__ico {
  display: inline-flex;
  color: var(--accent);
}

.vehicle-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 1024px) {
  .vehicle-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(380px, 34%);
    grid-template-rows: auto auto auto;
    align-items: start;
  }

  .vehicle-detail__media,
  .vehicle-detail__about {
    min-width: 0;
  }

  .vehicle-detail__media {
    grid-column: 1;
    grid-row: 1;
  }

  .vehicle-detail__about {
    grid-column: 1;
    grid-row: 2;
  }

  .vehicle-detail__extra {
    grid-column: 1;
    grid-row: 3;
  }

  .vehicle-detail__aside {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}

.vehicle-detail__extra > .vehicle-detail__h2:first-of-type {
  margin-top: 0;
}

.vehicle-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
}

.v-gallery__stage {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.v-gallery__stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.v-gallery__thumbs {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.v-gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}

.v-gallery__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.v-gallery__thumb.is-active,
.v-gallery__thumb:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}

.vehicle-detail__h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.vehicle-detail__text {
  margin-top: 1.25rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.spec-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.spec-table th,
.spec-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 38%;
  color: var(--muted);
  font-weight: 600;
}

.rent-card {
  position: static;
  top: auto;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--line) 85%, var(--accent) 12%);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.35rem 1.25rem 1.4rem;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 42%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 14px 36px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
  .rent-card {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    padding: 1.5rem 1.45rem 1.55rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 18px 48px rgba(15, 23, 42, 0.075);
  }
}

.rent-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.rent-card__hint {
  margin: 0 0 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

h3.rent-card__subtitle {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

.rent-card__contact {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.rent-card__contact--top {
  margin: 0 0 1.15rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 55%, var(--surface));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.rent-card__contact--top h3.rent-card__subtitle {
  margin-bottom: 0.75rem;
}

.rent-card .vehicle-card__actions {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.rent-card .vehicle-card__action {
  min-height: 46px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  justify-content: center;
}

.rent-card__section-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.rent-day-pill {
  margin: 0.65rem 0 0.9rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 100%, #fff) 0%, var(--accent-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
}

.rate-legend {
  display: grid;
  gap: 0;
  margin: 0 0 0.25rem;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.rate-legend > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.8125rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.rate-legend > div:last-child {
  border-bottom: 0;
}

.rate-legend dt {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.rate-legend dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.book-form--rent {
  box-shadow: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.book-form--rent textarea.field__control {
  min-height: 4.75rem;
  resize: vertical;
}

.rent-card__step-hint {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

.rent-contact-step {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.rent-contact-step[hidden] {
  display: none !important;
}

.rent-contact-step:not([hidden]) {
  animation: rent-contact-in 0.28s ease;
}

@keyframes rent-contact-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rent-card__form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.rent-summary {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 72%, var(--surface));
}

.rent-summary__muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.rent-summary__plain-price {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.rent-summary__plain-price--solo {
  text-align: center;
}

.float-contact {
  position: fixed;
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-contact__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-contact__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

.float-contact__btn--wa {
  background: #25d366;
}

.float-contact__btn--call {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.float-contact__icon {
  display: flex;
  line-height: 0;
}

.float-contact__icon svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-badge__pulse {
    animation: none;
  }

  .btn,
  .vehicle-card {
    transition: none;
  }

  .vehicle-card:hover {
    transform: none;
  }

  .float-contact__btn:hover {
    transform: none;
  }
}

/* Tema: panelden site_settings.theme (default | blue | midnight | sand) */
[data-theme="blue"] {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #2563eb;
  --accent-2: #7c3aed;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="midnight"] {
  --bg: #0b1220;
  --surface: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: rgba(148, 163, 184, 0.15);
  --accent: #60a5fa;
  --accent-2: #a78bfa;
  --accent-soft: rgba(96, 165, 250, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.28);
}

[data-theme="sand"] {
  --bg: #f5f0e8;
  --surface: #fffdf8;
  --text: #1c1917;
  --muted: #57534e;
  --line: rgba(28, 25, 23, 0.1);
  --accent: #b45309;
  --accent-2: #ca8a04;
  --accent-soft: rgba(180, 83, 9, 0.12);
}
