:root {
  --bg: #f5f8ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #071a49;
  --text: #10224f;
  --muted: #5f6f95;
  --line: rgba(16, 34, 79, 0.12);
  --brand: #0b2a78;
  --brand-soft: #163c95;
  --accent: #42d92f;
  --accent-deep: #22b51a;
  --shadow-lg: 0 28px 60px rgba(8, 28, 77, 0.14);
  --shadow-md: 0 18px 36px rgba(8, 28, 77, 0.1);
  --shadow-sm: 0 10px 20px rgba(8, 28, 77, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(66, 217, 47, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 42, 120, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--surface-strong);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dark {
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(248, 251, 255, 0.72);
  border-bottom: 1px solid rgba(16, 34, 79, 0.06);
  transition: background 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(8, 28, 77, 0.1);
  padding: 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  transition: min-height 260ms ease;
}

.site-header.is-scrolled .header-shell {
  min-height: 54px;
}

.brand img {
  width: clamp(152px, 20vw, 210px);
  height: auto;
  transition: width 260ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(110px, 14vw, 150px);
}

.site-header.is-scrolled .main-nav {
  display: none;
}

.site-header.is-scrolled .header-cta .btn {
  min-height: 38px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
}

.main-nav,
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  box-shadow: 0 16px 28px rgba(11, 42, 120, 0.22);
}

.btn-soft {
  color: var(--brand);
  background: rgba(11, 42, 120, 0.08);
}

.btn-whatsapp {
  color: #062b03;
  background: linear-gradient(135deg, #77ef63 0%, var(--accent) 100%);
  box-shadow: 0 16px 28px rgba(66, 217, 47, 0.24);
}

.btn-outline {
  color: var(--brand);
  border-color: rgba(11, 42, 120, 0.18);
  background: rgba(255, 255, 255, 0.64);
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(11, 42, 120, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  background: rgba(248, 251, 255, 0.96);
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  color: var(--brand);
  font-weight: 700;
  border-top: 1px solid rgba(16, 34, 79, 0.08);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 2rem 0 1.5rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-orb-one {
  top: 3rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background: rgba(66, 217, 47, 0.16);
}

.hero-orb-two {
  right: -8rem;
  top: -4rem;
  width: 24rem;
  height: 24rem;
  background: rgba(11, 42, 120, 0.14);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.section-heading-left h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.hero-text,
.section-heading p,
.about-copy p,
.reason-card p,
.info-card p,
.contact-list p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 62ch;
  margin: 0.75rem 0 1rem;
  font-size: 0.97rem;
}

.hero-points,
.trust-grid,
.service-strip-grid,
.advantage-grid,
.reasons-grid,
.contact-list {
  display: grid;
  gap: 1rem;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.hero-points span,
.service-strip-grid div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 34, 79, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.trust-grid article,
.reservation-card,
.info-card,
.contact-panel,
.about-highlight,
.reason-card,
.vehicle-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.trust-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
  color: var(--brand);
}

.trust-grid span {
  color: var(--muted);
  font-weight: 700;
}

.reservation-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.card-head h2 {
  margin: 0.15rem 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.04em;
}

.card-head p {
  margin: 0;
  color: var(--muted);
}

.reservation-form,
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reservation-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--brand);
  font-weight: 700;
}

.reservation-form span,
.contact-form span {
  font-size: 0.92rem;
}

.reservation-form input,
.reservation-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 34, 79, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(66, 217, 47, 0.34);
  border-color: var(--accent);
}

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

.form-note,
.fleet-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-strip {
  padding-bottom: 2rem;
}

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

.section {
  padding: 5rem 0;
}

.section-tint {
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 217, 47, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(234, 241, 255, 0.86));
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(66, 217, 47, 0.18), transparent 18%),
    linear-gradient(135deg, #08173f 0%, #0b2a78 100%);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .eyebrow,
.reason-card h3,
.reason-card p {
  color: #fff;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.section-heading p {
  margin: 1rem 0 0;
}

.fleet-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.fleet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(16, 34, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  color: #fff;
  background: var(--brand);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.vehicle-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
}

.vehicle-visual {
  position: relative;
  min-height: 210px;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 42, 120, 0.06), rgba(255, 255, 255, 0.88));
}

.vehicle-price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 26, 73, 0.88);
  color: #fff;
  font-weight: 800;
}

.vehicle-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.vehicle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 248, 255, 0.92) 0%, rgba(245, 248, 255, 0) 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 54%, rgba(245, 248, 255, 0.94) 100%);
}

.vehicle-body {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.vehicle-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vehicle-topline span {
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vehicle-badge {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(66, 217, 47, 0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.vehicle-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.vehicle-body p {
  margin: 0;
  color: var(--muted);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.vehicle-specs article {
  padding: 0.85rem 0.65rem;
  border-radius: 18px;
  background: rgba(11, 42, 120, 0.05);
  text-align: center;
}

.vehicle-specs strong {
  display: block;
  color: var(--brand);
  font-size: 0.8rem;
}

.vehicle-specs span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.vehicle-actions a {
  min-height: 50px;
}

.advantage-grid,
.reasons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.reason-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.info-card h3,
.reason-card h3,
.contact-list h3,
.site-footer h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-highlight {
  padding: 2rem;
  border-radius: 30px;
}

.about-highlight ul {
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.9;
}

.contact-list article {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(16, 34, 79, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.contact-list a {
  color: var(--brand);
  font-weight: 800;
}

.contact-panel {
  padding: 1.5rem;
  border-radius: 28px;
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  color: #062b03;
  font-weight: 900;
  background: linear-gradient(135deg, #7af467 0%, var(--accent) 100%);
  box-shadow: 0 18px 30px rgba(66, 217, 47, 0.28);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: rgba(7, 26, 73, 0.96);
  color: rgba(255, 255, 255, 0.84);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 0.6rem;
}

.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .advantage-grid,
  .reasons-grid,
  .vehicle-grid,
  .service-strip-grid,
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

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

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

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

@media (max-width: 720px) {
  .hero-section {
    padding-top: 1.25rem;
  }

  .hero-points,
  .trust-grid,
  .service-strip-grid,
  .advantage-grid,
  .reasons-grid,
  .vehicle-grid,
  .footer-shell,
  .vehicle-actions,
  .form-split,
  .vehicle-specs {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .vehicle-visual {
    min-height: 190px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .sticky-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .sticky-whatsapp {
    left: 1rem;
  }
}

/* ═══════════════════════════════════════════
   FAQ bölümü
═══════════════════════════════════════════ */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(16, 34, 79, 0.1);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.faq-item > p {
  margin: 0;
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   Footer alt çubuğu
═══════════════════════════════════════════ */
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
}

/* address semantik elementi */
address {
  font-style: normal;
}
