:root {
  --blue: #0049b0;
  --blue-dark: #003580;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --line: #e2e8f0;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 560px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-text {
  font-size: 0.95rem;
  line-height: 1.1;
  max-width: 10rem;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--blue);
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--blue);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.btn-support:hover {
  background: var(--blue-dark);
  text-decoration: none;
  color: #fff;
}

.btn-support-icon svg {
  display: block;
}

.btn-support-top {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.btn-support-phone {
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}

.mobile-nav a {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.35));
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 1rem;
  max-width: 820px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero-panel-wrap {
  position: relative;
  margin-top: auto;
  padding: 2rem 0 2.5rem;
}

/* Hızlı rezervasyon kartı — mockup tipografi (Montserrat) ve alan stili */
.hero-search-card {
  --hero-accent: #0052cc;
  --hero-accent-hover: #0041a3;
  --hero-field-border: #e8ecf0;
  --hero-label: #6b7280;
  --hero-value: #1f2937;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #fff;
  color: var(--hero-value);
  padding: 1.1rem 1.15rem 1rem;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.hero-search {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  align-items: end;
  padding-bottom: 0.95rem;
}

.hero-field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}

.hero-field-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-label);
  line-height: 1.2;
}

.hero-field-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 2.15rem 0 0.65rem;
  border: 1px solid var(--hero-field-border);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hero-field-inner:focus-within {
  border-color: rgba(0, 82, 204, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.hero-field-ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-accent);
}

.hero-field-ico .hero-ico-svg {
  display: block;
}

.hero-field-inner .hero-control {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.25rem 0.65rem 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hero-value);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hero-field-inner select.hero-control {
  cursor: pointer;
}

.hero-field-inner input.hero-control {
  cursor: text;
}

.hero-field-has-chevron::after {
  content: '';
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.22rem;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-field-inner input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.75rem;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btn-hero-submit {
  grid-column: span 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 10px;
  background: var(--hero-accent);
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.35);
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-hero-submit:hover {
  background: var(--hero-accent-hover);
  color: #fff;
}

.btn-hero-submit:active {
  transform: translateY(1px);
}

.hero-btn-arrow {
  font-weight: 700;
  margin-left: 0.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.btn-outline:hover {
  background: #f1f6ff;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #062d16;
}

.btn-whatsapp:hover {
  filter: brightness(0.95);
  text-decoration: none;
  color: #062d16;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  margin: 0;
  padding: 0.95rem 0.15rem 0.2rem;
  border-top: 1px solid var(--hero-field-border, #e8ecf0);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hero-label, #6b7280);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.hero-trust-label {
  color: #6b7280;
  line-height: 1.3;
  font-weight: 500;
}

/* Mavi daire + beyaz tik (mockup) */
.hero-trust-check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hero-accent, #0052cc);
  position: relative;
}

.hero-trust-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.section {
  padding: 3.25rem 0;
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px 999px 24px 24px;
  background: #fafbff;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  display: grid;
  place-items: center;
}

.value-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.cat-tab {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cat-tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.vehicle-slider {
  position: relative;
}

.vehicle-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.vehicle-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  position: relative;
}

.vehicle-card.large {
  flex: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

.vehicle-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
}

.vehicle-img {
  position: relative;
  background: #f1f5f9;
}

.vehicle-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vehicle-card.large .vehicle-img img {
  height: 100%;
  min-height: 240px;
}

.vehicle-body {
  padding: 1rem 1rem 1.1rem;
  position: relative;
}

.vehicle-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.vehicle-price {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--blue);
}

.vehicle-price span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.vehicle-price.big {
  font-size: 1.35rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-nav.prev {
  left: -6px;
}

.slider-nav.next {
  right: -6px;
}

.slider-nav::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin: 0 auto;
}

.slider-nav.prev::after {
  transform: rotate(135deg);
}

.slider-nav.next::after {
  transform: rotate(-45deg);
}

.map-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.25rem;
  align-items: stretch;
}

.map-card,
.why-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.map-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-visual svg {
  width: 100%;
  height: auto;
}

.why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #003580, #0049b0);
  color: #fff;
}

.why-inner {
  padding: 1.5rem 1.25rem;
}

.why-inner h2 {
  margin: 0 0 1rem;
}

.why-list {
  margin: 0;
  padding-left: 1.1rem;
}

.why-list li {
  margin-bottom: 0.45rem;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.testimonial-card {
  flex: 0 0 min(320px, 86vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fafbff;
}

.testimonial-card footer {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.75rem;
}

.t-av {
  border-radius: 50%;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

.testi-dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.testi-dots button.is-active {
  background: var(--blue);
}

.app-section {
  background: #f8fafc;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.app-lead {
  color: var(--muted);
  max-width: 520px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.store-badge:hover {
  text-decoration: none;
  filter: brightness(1.05);
  color: #fff;
}

.store-badge.appstore {
  background: #000;
}

.store-badge.play {
  background: #0f9d58;
}

.phone-mock {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(260px, 70vw);
  aspect-ratio: 9 / 18;
  border-radius: 28px;
  border: 10px solid #0f172a;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #e8f0ff, #fff);
}

.pre-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pre-footer-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.pre-footer-icon {
  color: var(--blue);
}

.pre-footer-item p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  background: #0b1220;
  color: #e2e8f0;
  padding: 2.75rem 0 0;
}

.site-footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-about {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-brand-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1rem 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: #062d16;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 14px 30px rgba(2, 80, 30, 0.35);
  text-decoration: none;
  max-width: min(260px, 70vw);
}

.whatsapp-float:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.whatsapp-float-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.wa-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 22px;
}

.page-head h1 {
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--muted);
}

.vehicle-grid-page {
  display: grid;
  gap: 1.25rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.detail-img {
  border-radius: 18px;
  border: 1px solid var(--line);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
}

.stack-form {
  display: grid;
  gap: 0.75rem;
}

.stack-form label {
  display: grid;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.stack-form input,
.stack-form select,
.stack-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.alert.ok {
  background: #ecfdf5;
  color: #065f46;
}

.alert.err {
  background: #fef2f2;
  color: #991b1b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list.plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.prose {
  color: var(--muted);
}

.cms-content {
  color: var(--ink);
}

.inline-filter select {
  margin-left: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .hero-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-hero-submit {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pre-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card.large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .btn-support {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .slider-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .pre-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .btn-hero-submit {
    grid-column: span 1;
  }
}
