:root {
  --accent: #e84040;
  --accent-dark: #d12f2f;
  --whatsapp: #e85c3a;
  --wa-green: #25d366;
  --phone-fab: #6c5ce7;
  --dark: #111111;
  --hero-dark: #1a1a2e;
  --text: #1f1f1f;
  --muted: #6c757d;
  --bg: #ffffff;
  --bg-light: #f6f7f9;
  --border: #ececec;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --header-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: 24px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
}
.top-bar-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.top-bar-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
}
.top-bar-content svg { flex-shrink: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.4px;
}
.logo strong {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #111;
}
.logo small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 8px 0;
  position: relative;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--accent); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 10px 14px; font-size: 13px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { filter: brightness(0.95); }
.btn-outline {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero-content { max-width: 640px; padding: 70px 0; }
.hero h1 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--accent); display: block; }
.hero p {
  font-size: 16px;
  max-width: 520px;
  opacity: 0.92;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 64px 0; }
.section-title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 14px;
}
.section-title::after {
  content: "";
  width: 54px;
  height: 3px;
  background: var(--accent);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.feature-badge {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  color: #333;
}
.feature-badge svg { color: var(--accent); }

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.vehicle-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}
.vehicle-card-image {
  position: relative;
  height: 168px;
  background: #ececec;
  overflow: hidden;
}
.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-card-badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 6px;
}
.badge {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 8px;
}
.badge-category { background: #f07a2a; }
.badge-category.Orta { background: #e24b3b; }
.badge-category.Ticari { background: #c0392b; }
.badge-category.SUV { background: #d35400; }
.badge-category.Premium { background: #2c2c2c; }
.badge-category.Ekonomik { background: #f07a2a; }
.badge-insurance { background: var(--accent); }
.vehicle-card-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vehicle-card-body h3 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
}
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
}
.vehicle-specs span { display: inline-flex; align-items: center; gap: 4px; }
.vehicle-price-boxes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.price-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  background: #fafafa;
}
.price-box-label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.price-box-badge {
  display: inline-block;
  background: #ffe8e8;
  color: var(--accent);
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 999px;
  margin-left: 2px;
}
.price-box-value { font-size: 13px; font-weight: 800; display: block; }
.price-box-highlight {
  background: #fff5f5;
  border-color: #ffd0d0;
}
.price-box-highlight .price-box-value { color: var(--accent); }
.deposit-info-btn {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
}
.vehicle-card-actions { display: flex; gap: 8px; margin-top: auto; }
.vehicle-card-actions .btn-sm { flex: 1; }
.cta-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}
.cta-section { text-align: center; padding-top: 32px; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff1f1;
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 17px; }
.feature-card p { margin-top: 10px; color: #555; font-size: 14px; }
.feature-toggle-icon { display: none; margin-left: auto; color: var(--muted); }

.info-box {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #bbb;
  border-radius: 12px;
  padding: 24px 26px;
}
.info-box h3 { margin-bottom: 10px; font-size: 20px; }
.info-box p { color: #444; }
.info-box ul { margin: 12px 0 0 20px; list-style: disc; }
.info-box li { margin-bottom: 6px; color: #444; font-size: 0.9rem; }
.info-accent { border-left-color: var(--accent); margin-top: 24px; }

.site-footer {
  background: #171717;
  color: #ddd;
  padding: 54px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 28px;
}
.site-footer .logo strong { color: #fff; }
.site-footer p { font-size: 14px; color: #bdbdbd; margin-top: 12px; }
.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 16px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: grid;
  place-items: center;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid #2e2e2e;
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9a9a9a;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-bottom-links a:hover { color: #fff; }

.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  position: relative;
}
.floating-btn-whatsapp { background: var(--wa-green); }
.floating-btn-phone { background: var(--phone-fab); }
.floating-btn-label {
  position: absolute;
  right: 62px;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.floating-btn:hover .floating-btn-label { opacity: 1; }

.deposit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 20px;
}
.deposit-modal-overlay.open { display: grid; }
.deposit-modal {
  background: #fff;
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.deposit-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.deposit-modal h3 { margin-bottom: 12px; }
.deposit-modal p { margin-bottom: 10px; color: #444; }
.deposit-modal ul { margin-left: 18px; list-style: disc; }
.deposit-modal li { margin-bottom: 6px; }

.page-hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(232, 64, 64, 0.72));
  color: #fff;
  padding: 64px 0 52px;
  text-align: center;
}
.page-hero h1 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 10px;
}
.page-hero p { opacity: 0.92; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-size: 32px;
  color: var(--accent);
  font-family: Montserrat, Inter, sans-serif;
}
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 28px 0 12px; }
.prose p, .prose li { color: #444; margin-bottom: 12px; }
.prose ul { margin-left: 20px; list-style: disc; }

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-a {
  display: none;
  padding: 0 18px 16px;
  color: #555;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--accent); }
details.faq-item > summary { list-style: none; }
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item[open] .faq-a { display: block; }
details.faq-item[open] .faq-q { color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.contact-card, .form-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}
.form-card h2, .contact-card h3 { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font: inherit;
}
.form-card textarea { min-height: 120px; resize: vertical; }
.info-line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #444;
}
.map-wrap {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid #eee;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.detail-photo {
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
}
.detail-photo img { width: 100%; height: 420px; object-fit: cover; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.meta-chip {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
}
.meta-chip span { display: block; color: var(--muted); font-size: 11px; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.feature-list li {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.filter-btn {
  display: inline-block;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
}
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 88px;
  bottom: 16px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 70;
  box-shadow: var(--shadow);
}
.cookie-bar.show { display: flex; }
.cookie-bar p { font-size: 13px; color: #ddd; }
.cookie-bar a { color: #fff; text-decoration: underline; }

@media (max-width: 1100px) {
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
  }
  .nav-menu.open { display: flex; }
  #nav-toggle:checked ~ .site-header .nav-menu { display: flex; }
  .hamburger { display: block; }
  .vehicle-grid, .feature-cards, .contact-grid, .detail-grid, .form-row, .stats, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 460px; }
  .detail-photo img { height: 240px; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}
@media (max-width: 640px) {
  .vehicle-grid { grid-template-columns: 1fr; }
  .feature-toggle-icon { display: none; }
  .feature-card-body { display: block; }
}
