@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a6fc4;
  --blue-dark: #0f4f9a;
  --blue-navy: #0d2b55;
  --orange: #f5a623;
  --orange-dark: #e0941a;
  --text: #1a1a2e;
  --text-muted: #555;
  --bg-light: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER / NAV ========== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-decoration: none;
}

.logo-icon {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-icon {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-size: 0.95rem;
}

nav a:hover, nav a.active {
  color: var(--blue);
  background: #eff6ff;
}

nav a.active {
  border-bottom: 2px solid var(--blue);
  border-radius: 8px 8px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover { background: #eff6ff; transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }

.btn-orange-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-orange-lg:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-cta {
  font-size: 0.88rem;
  padding: 9px 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  padding: 64px 0 72px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.hero h1 span { color: var(--blue); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 11px;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-card-pin {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.hero-card-row svg { color: var(--blue); flex-shrink: 0; }

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 72px 0;
  background-image: linear-gradient(rgba(10, 40, 80, 0.75), rgba(10, 40, 80, 0.75)), url('../images/features-bg.webp');
  background-size: cover;
  background-position: center;
  background-color: #0a4a6e;
}

.features .section-header h2 { color: var(--white); }
.features .section-header p  { color: rgba(255,255,255,0.75); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #bfdbfe;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
  flex-shrink: 0;
}

.icon-blue  { background: #dbeafe; color: #1d4ed8; }
.icon-green { background: #d1fae5; color: #047857; }
.icon-orange{ background: #ffedd5; color: #c2410c; }
.icon-yellow{ background: #fef9c3; color: #a16207; }
.icon-purple{ background: #ede9fe; color: #6d28d9; }
.icon-teal  { background: #ccfbf1; color: #0d9488; }

.feature-card:hover .icon-blue   { background: #bfdbfe; }
.feature-card:hover .icon-green  { background: #a7f3d0; }
.feature-card:hover .icon-orange { background: #fed7aa; }
.feature-card:hover .icon-yellow { background: #fef08a; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.feature-link {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.feature-card:hover .feature-link { gap: 8px; color: var(--blue-dark); }

/* ========== CHECKLIST / LEAD MAGNET SECTION ========== */
.checklist-section {
  padding: 72px 0;
  background: var(--bg-light);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ---- Left card: route visual ---- */
.checklist-info {
  background-image:
    linear-gradient(to bottom, rgba(8,28,58,0.38) 0%, rgba(8,28,58,0.88) 100%),
    url('../images/route-left.webp');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 36px 40px;
  color: var(--white);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.checklist-info-top { margin-bottom: 4px; }

.checklist-info h2 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 8px;
}

.checklist-info > .checklist-info-top > p,
.checklist-info-top p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin: 24px 0 0;
}

.route-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 11px;
  border-radius: 100px;
}

.route-days {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
}

.route-day {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.route-day:hover,
.route-day:focus-visible { background: rgba(255,255,255,0.14); outline: 2px solid rgba(255,255,255,0.4); }

.day-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  min-width: 48px;
}

.day-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.day-content strong {
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
}

.day-content span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
}

.route-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.route-includes span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ---- Right card: sign-up form ---- */
.checklist-form-wrap {
  background: var(--blue-navy);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}

.form-icon {
  width: 42px;
  height: 42px;
  background: rgba(245,166,35,0.14);
  border: 1.5px solid rgba(245,166,35,0.32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.form-tagline {
  font-size: 1.05rem;
  color: var(--white);
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

.form-tagline strong { font-weight: 800; }

.form-sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
  line-height: 1.5;
}

/* Compact benefit list */
.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 8px 12px;
}

.form-check {
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
  font-style: normal;
}

.form-benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.form-benefit span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  display: block;
}

.form-group {
  margin-bottom: 13px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font);
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}

.form-privacy {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
}
.form-privacy svg {
  display: inline;
  vertical-align: -1px;
  margin-right: 4px;
  flex-shrink: 0;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-navy) 0%, #1a4080 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-kroatie.webp') center/cover no-repeat;
  opacity: 0.2;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-banner h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  max-width: 480px;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--white);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-white:hover { background: #f0f7ff; transform: translateY(-1px); }

/* ========== REGIONS SECTION ========== */
.regions {
  padding: 72px 0;
  background: var(--bg-light);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.region-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.region-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, #1a6fc4, #0f4f9a);
  position: relative;
  overflow: hidden;
}

.region-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.region-card:hover .region-img-wrap img { transform: scale(1.05); }

.region-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}

.region-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.region-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.region-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.region-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}
.region-arrow { transition: transform 0.2s; }
.region-card:hover .region-link { color: var(--blue-dark); }
.region-card:hover .region-arrow { transform: translateX(3px); }

.region-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: #eff6ff;
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
  background: var(--blue-navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.social-btn:hover { background: rgba(255,255,255,0.2); }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--white); }

/* ========== IMAGE PLACEHOLDERS ========== */
.region-img-wrap {
  background: linear-gradient(135deg, #1a4080 0%, #1a6fc4 100%);
}

/* ========== TOAST / SUCCESS ========== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #16a34a;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 999;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ========== WAAR BEGINNEN ========== */
.start-section {
  padding: 64px 0;
  background: var(--white);
}
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.start-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.start-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #bfdbfe;
}
.start-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.start-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.start-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.start-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.start-card:hover .start-link { gap: 8px; color: var(--blue-dark); }
@media (max-width: 860px) { .start-grid { grid-template-columns: 1fr; } }

/* ========== WAAROM KROATIE GIDS ========== */
.waarom-section {
  padding: 72px 0;
  background: var(--white);
}

.waarom-inner {
  max-width: 760px;
  margin: 0 auto;
}

.waarom-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.waarom-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.waarom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ========== TEASERS (routeadvies + regio) ========== */
.teaser { padding: 64px 0; }
.teaser-inner { max-width: 760px; }
.teaser h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.teaser p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.teaser-note {
  background: #eff6ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.teaser-note strong { color: var(--blue); }
.regio-keuze {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0 26px;
}
.regio-keuze-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}
.regio-keuze-item strong { color: var(--blue); min-width: 84px; flex-shrink: 0; }
.regio-keuze-item span { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 640px) { .regio-keuze { grid-template-columns: 1fr; } }

/* ========== FEATURED GUIDES ========== */
.guides-section { padding: 64px 0; background: var(--bg-light); }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.guide-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: #bfdbfe;
}
.guide-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.guide-card .guide-arrow { color: var(--blue); transition: transform 0.2s; }
.guide-card:hover .guide-arrow { transform: translateX(3px); }
.guide-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .guides-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .guides-grid { grid-template-columns: 1fr; } }

/* ========== TRUST / ERVARING ========== */
.trust-section {
  padding: 72px 0;
  background: var(--bg-light);
}

.trust-inner {
  max-width: 760px;
  margin: 0 auto;
}

.trust-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.trust-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.trust-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ========== HOME FAQ ========== */
.home-faq {
  padding: 72px 0;
  background: var(--white);
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-family: var(--font);
}

.faq-btn:hover { background: var(--bg-light); }

.faq-btn .arrow {
  font-size: 0.9rem;
  transition: transform 0.3s;
  color: var(--blue);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checklist-grid { gap: 20px; }
  .checklist-info, .checklist-form-wrap { padding: 32px; }
}

/* Fluid horizontale menu op middelgrote schermen */
@media (max-width: 1080px) {
  .nav-inner { gap: 16px; }
  nav { gap: 2px; }
  nav a { padding: 8px 10px; font-size: 0.9rem; }
  .nav-cta { padding: 9px 14px; }
}

@media (max-width: 900px) {
  .nav-inner { gap: 10px; }
  nav a { padding: 7px 7px; font-size: 0.85rem; }
  .logo-text { font-size: 1.15rem; letter-spacing: 2px !important; }
  .nav-cta { padding: 8px 12px; font-size: 0.82rem; }
}

@media (max-width: 760px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  nav.open a { padding: 10px 6px; font-size: 0.95rem; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { height: 280px; }
  .hero-card {
    left: 0;
    bottom: -16px;
    padding: 12px 14px;
    min-width: 0;
    width: auto;
    max-width: 200px;
  }
  .hero-card-title { font-size: 0.82rem; gap: 6px; margin-bottom: 8px; }
  .hero-card-row { font-size: 0.76rem; margin-bottom: 5px; }
  .hero-card-pin { width: 22px; height: 22px; }
  .hero-card-pin svg { width: 12px; height: 12px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 64px; }

  .features-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-info { min-height: 320px; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .checklist-info, .checklist-form-wrap { padding: 24px 20px; }
  .checklist-info h2 { font-size: 1.4rem; }
  .form-benefits { gap: 6px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
  .checklist-info, .checklist-form-wrap { padding: 28px 22px; }
}

/* ========== H2 ACCENT FONT ========== */
.section-header h2,
.waarom-inner h2,
.teaser h2,
.trust-inner h2,
.home-faq h2,
.prose h2,
.guides-section h2,
.regions h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

/* =========================================================
   UI/UX POLISH PASS (pre-launch) — header dropdowns, cards,
   responsive header fix, focus states, alignment
   ========================================================= */

/* ---- Header: prevent logo / nav overlap ---- */
.nav-inner { gap: 24px; }
.logo { flex: 0 1 auto; min-width: 0; margin-right: auto; }
.logo-text { overflow: hidden; text-overflow: ellipsis; }

/* ---- Desktop dropdown nav ---- */
#main-nav { display: flex; align-items: center; gap: 14px; }
#main-nav .nav-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
#main-nav .nav-menu > li { position: relative; }
#main-nav .nav-item > a,
#main-nav .nav-top {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 11px; font-weight: 500; color: var(--text-muted);
  border-radius: 8px; font-size: 0.92rem; line-height: 1.1;
  background: none; border: none; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  transition: color .2s, background .2s;
}
#main-nav .nav-item > a:hover,
#main-nav .nav-top:hover,
#main-nav .nav-has-dd:hover > .nav-top,
#main-nav .nav-has-dd:focus-within > .nav-top { color: var(--blue); background: #eff6ff; }
.nav-caret { font-size: 0.62em; transition: transform .2s; opacity: .8; }
#main-nav .nav-has-dd:hover .nav-caret,
#main-nav .nav-has-dd:focus-within .nav-caret { transform: rotate(180deg); }

/* dropdown panel */
.nav-dd {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 232px; max-width: 300px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15,40,70,.15); padding: 8px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 200;
}
#main-nav .nav-has-dd:hover > .nav-dd,
#main-nav .nav-has-dd:focus-within > .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd li { margin: 0; }
.nav-dd a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 0.9rem; color: var(--text); text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dd a:hover, .nav-dd a:focus-visible { background: #eff6ff; color: var(--blue); }
/* keep right-side dropdowns inside the viewport */
.nav-has-dd.dd-right > .nav-dd { left: auto; right: 0; }

/* ---- Global focus-visible (keyboard accessibility) ---- */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.faq-btn:focus-visible, .hamburger:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 8px;
}

/* ---- Card hover / interactive polish (cards die het nog misten) ---- */
.info-card, .camping-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.info-card:hover, .camping-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15,40,70,.10);
  border-color: #cdddea;
}
/* cards die zelf een link bevatten: pointer + iets sterker accent */
.info-card:has(a):hover { border-color: #aecbe4; }

/* ---- Alignment / spacing polish ---- */
.card-grid { align-items: stretch; }
.card-grid > .info-card, .card-grid > .camping-card { display: flex; flex-direction: column; }
.back-cta { align-items: center; }
.breadcrumb { line-height: 1.5; }

/* =========================================================
   RESPONSIVE HEADER: hamburger + accordion menu <= 1024px
   ========================================================= */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  #main-nav { display: none; }
  #main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 10px 16px 20px; gap: 2px; box-shadow: var(--shadow);
    z-index: 99; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  #main-nav.open .nav-menu { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  #main-nav.open .nav-menu > li { width: 100%; }
  #main-nav.open .nav-item > a,
  #main-nav.open .nav-top {
    width: 100%; justify-content: space-between;
    padding: 13px 12px; font-size: 0.98rem; border-radius: 8px;
  }
  /* mobile dropdown = accordion (JS toggelt .open op de li) */
  #main-nav.open .nav-dd {
    position: static; opacity: 1; visibility: hidden; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0 0 6px 10px; margin: 0; max-width: none; min-width: 0;
    display: none;
  }
  #main-nav.open .nav-has-dd.open > .nav-dd { display: block; visibility: visible; }
  #main-nav.open .nav-has-dd.open .nav-caret { transform: rotate(180deg); }
  #main-nav.open .nav-dd a { white-space: normal; padding: 11px 12px; font-size: 0.92rem; }
  #main-nav.open .nav-cta { margin-top: 12px; justify-content: center; width: 100%; }
  .nav-inner { position: relative; }
}

/* ---- FIX: .day-num was a fixed 48px circle but holds text labels
   ("Dag 1–3", "Motovun & Grožnjan", "Makarska-rivièra"). Maak er een
   flexibele pill van die met de inhoud meegroeit. ---- */
.itinerary-day .day-num {
  min-width: 96px;
  height: auto;
  padding: 7px 14px;
  border-radius: 9px;        /* nette badge i.p.v. cirkel/ballon */
  white-space: nowrap;
  text-align: center;
  line-height: 1.25;
  font-size: 0.82rem;
  align-self: flex-start;
}
.itinerary-day .day-num a { color: #fff !important; text-decoration: none; }
.itinerary-day .day-num a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .itinerary-day { flex-direction: column; gap: 8px; }
  .itinerary-day .day-num { align-self: flex-start; }
}

/* ---- FIX: "Gratis routegids" CTA-knop mag niet over 2 regels breken ---- */
.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.1;
  text-align: center;
}

/* ---- Klikbare selector-kaarten: hele kaart klikbaar (via titel-link) +
   CTA/"Lees meer" onderaan uitgelijnd zodat knoppen op één lijn staan ---- */
.info-card { position: relative; }
.info-card:has(> h3 > a) { cursor: pointer; }
.info-card:has(> h3 > a) > p:last-child { margin-top: auto !important; }
.info-card > h3 > a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
}
.info-card p a { position: relative; z-index: 2; }  /* CTA/Lees-meer/inline links boven de overlay; titel-link blijft statisch zodat zijn ::after de hele kaart dekt */
