/* ==========================================================================
   Wafa Taxi - stylesheet
   Fris & vriendelijk thema. Pas kleuren aan in :root hieronder.
   ========================================================================== */

:root {
  /* Kleuren */
  --primary: #0ea5e9;        /* fris hemelblauw */
  --primary-dark: #0369a1;
  --primary-soft: #e0f2fe;
  --accent: #facc15;         /* warm taxi-geel */
  --accent-dark: #eab308;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --ink: #0f172a;            /* hoofdtekst */
  --body: #334155;           /* lopende tekst */
  --muted: #64748b;          /* subtiele tekst */
  --line: #e2e8f0;           /* lijntjes/randen */

  --bg: #ffffff;
  --bg-soft: #f0f9ff;        /* lichte sectie-achtergrond */
  --bg-deep: #0c4a6e;        /* donkere footer */

  /* Vorm & schaduw */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 2px 6px rgba(15, 23, 42, .05);
  --shadow: 0 6px 20px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 40px rgba(2, 132, 199, .18);

  --maxw: 1120px;
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -.3px; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--body); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; font-size: .8rem; color: var(--primary-dark);
  background: var(--primary-soft); padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 800; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--call { background: var(--accent); color: #3b2f00; box-shadow: var(--shadow-sm); }
.btn--call:hover { background: var(--accent-dark); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--lg { padding: 18px 32px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.3rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  background: url("assets/logo-mark.svg") center / contain no-repeat;
}
.brand__mark svg { display: none; }
.brand__name { line-height: 1; }
.brand__name small { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-dark); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block; padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 700; font-size: .98rem;
}
.nav__links a:hover { background: var(--primary-soft); text-decoration: none; color: var(--primary-dark); }
.nav__links a.is-active { color: var(--primary-dark); background: var(--primary-soft); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: var(--ink);
  border-radius: 2px; margin: 0 auto; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; left: 0; }
.nav__toggle span::after { position: absolute; top: 7px; left: 0; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(250, 204, 21, .22), transparent 60%),
    linear-gradient(160deg, #f0f9ff 0%, #ffffff 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 84px 0; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--primary-dark); }
.hero .lead { margin-bottom: 28px; }
.hero__points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.hero__points li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.tick {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-dark);
  display: grid; place-items: center;
}
.tick svg { width: 15px; height: 15px; }

/* Hero kaart/visual */
.hero__card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 28px; position: relative;
}
.hero__card::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 165, 233, .06), transparent 40%); pointer-events: none;
}
.hero__card h3 { margin-bottom: 6px; }
.hero__card .muted { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.ride-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px dashed var(--line); }
.ride-row:first-of-type { border-top: 0; }
.ride-row .ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary-dark);
}
.ride-row .ico svg { width: 24px; height: 24px; }
.ride-row b { color: var(--ink); display: block; }
.ride-row span { font-size: .92rem; color: var(--muted); }
.hero__badge {
  position: absolute; top: -16px; right: 22px; background: var(--accent); color: #3b2f00;
  font-weight: 900; font-size: .85rem; padding: 8px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow); transform: rotate(3deg);
}

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe9fb; }
.card__ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary-soft), #fff7d6); color: var(--primary-dark); margin-bottom: 16px;
}
.card__ico svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; color: var(--body); font-size: .98rem; }
.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; }

/* ---------- Feature / why ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico {
  width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent); color: #3b2f00;
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 4px; }
.feature p { margin: 0; font-size: .97rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 24px; width: 40px; height: 40px;
  background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-weight: 900; box-shadow: var(--shadow-sm);
}
.step h3 { margin: 10px 0 4px; }
.step p { margin: 0; font-size: .96rem; }

/* ---------- Areas / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 8px 16px; font-weight: 700; color: var(--ink); font-size: .95rem;
}

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 24px; padding: 48px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .9); max-width: 560px; margin: 0 auto 26px; }
.cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .6); }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary-dark);
}
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list b { color: var(--ink); display: block; }
.contact-list a { font-weight: 700; }
.hours { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours td { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .97rem; }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.note { background: var(--primary-soft); border-radius: var(--radius-sm); padding: 14px 18px; font-size: .95rem; color: var(--primary-dark); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #cbd5e1; padding: 56px 0 110px; }
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 1.05rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 900; font-size: 1.25rem; margin-bottom: 12px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 36px; padding-top: 22px; font-size: .88rem; color: #94a3b8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Sticky mobiele actiebalk ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(15, 23, 42, .08);
}
.action-bar .btn { flex: 1; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 18px;
    gap: 4px; box-shadow: var(--shadow); transform: translateY(-130%);
    transition: transform .25s ease; visibility: hidden;
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 14px; font-size: 1.05rem; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .cta { padding: 34px 22px; }
  .action-bar { display: flex; }
  .site-footer { padding-bottom: 110px; }
}
@media (max-width: 460px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ==========================================================================
   Wagenpark, statistieken en beeld (toevoeging)
   ========================================================================== */

/* Ervaring-badge */
.exp-badge {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px 18px 7px 8px; box-shadow: var(--shadow-sm); font-weight: 800; color: var(--ink);
}
.exp-badge .yrs { background: var(--accent); color: #3b2f00; border-radius: var(--radius-pill); padding: 6px 13px; font-size: .9rem; }
.exp-badge small { color: var(--muted); font-weight: 700; font-size: .9rem; }

/* Statistiekenband */
.stats {
  background: linear-gradient(135deg, var(--bg-deep), var(--primary-dark));
  border-radius: 24px; padding: 38px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; box-shadow: var(--shadow-lg);
}
.stat { text-align: center; color: #fff; }
.stat b { display: block; font-size: 2.3rem; font-weight: 900; line-height: 1; color: #fff; }
.stat b .accent { color: var(--accent); display: inline; }
.stat > span { display: block; margin-top: 8px; font-size: .92rem; color: rgba(255, 255, 255, .85); font-weight: 700; }

/* Wagenpark */
.fleet { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.fleet-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe9fb; }
.fleet-card__img {
  background: linear-gradient(135deg, var(--primary-soft), #fff7d6);
  padding: 24px; display: flex; align-items: center; justify-content: center;
}
.fleet-card__img img { width: 100%; max-width: 460px; height: auto; display: block; }
.fleet-card__body { padding: 24px 26px 28px; }
.fleet-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fleet-card__head h3 { margin: 0; }
.cap { background: var(--primary); color: #fff; font-weight: 800; font-size: .9rem; padding: 7px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.fleet-card__body > p { margin: 10px 0 0; color: var(--body); font-size: .97rem; }
.fleet-feats { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.fleet-feats li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--body); font-size: .96rem; }
.fleet-feats svg { width: 18px; height: 18px; color: var(--primary-dark); flex: none; margin-top: 2px; }

/* Beeldkader (illustratie/foto in een sectie) */
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #eaf4fb; }
.media-frame img { width: 100%; height: 100%; display: block; }
.media-soft { background: linear-gradient(135deg, var(--primary-soft), #fff7d6); border-radius: var(--radius); padding: 20px; }
.media-soft img { width: 100%; display: block; }

@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .fleet { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .stats { padding: 26px; gap: 18px; }
  .stat b { font-size: 1.9rem; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
}
