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

:root {
  --navy: #0a2540;
  --blue: #1565c0;
  --sky: #00b4d8;
  --orange: #ff6b2b;
  --yellow: #ffc107;
  --white: #ffffff;
  --light: #f0f7ff;
  --gray: #64748b;
  --card-shadow: 0 4px 24px rgba(10,37,64,0.10);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--navy);
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10,37,64,0.10);
  border-bottom: 2px solid #e0f0ff;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img { height: 55px; width: auto; display: block; }
nav { display: flex; gap: 6px; align-items: center; }
nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover { background: var(--light); color: var(--blue); }
nav a.active { background: var(--orange); color: #fff; }
nav a.active:hover { background: #e85a1f; color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 50px 20px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sky); }
.footer-col p { font-size: 0.83rem; line-height: 1.7; }
.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.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--sky); }
.footer-divider { opacity: 0.3; }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 36px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.section-header p {
  color: var(--gray);
  margin-top: 10px;
  font-size: 0.97rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1565c0 40%, #00b4d8 80%, #48cae4 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--sky); }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── CARD SHARED ── */
.card-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  transition: all 0.2s;
  align-self: flex-start;
}
.card-cta:hover { background: var(--orange); transform: translateX(3px); }

.partner-cta {
  display: inline-block;
  margin-top: 14px;
  background: var(--light);
  color: var(--blue);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: all 0.2s;
  align-self: flex-start;
}
.partner-cta:hover { background: var(--blue); color: #fff; }

/* ── HOMEPAGE HERO ── */
.hero {
  background: linear-gradient(135deg, #0a2540 0%, #1565c0 40%, #00b4d8 80%, #48cae4 100%);
  padding: 60px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid rgba(10,37,64,0.08);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.stat-icon { font-size: 1.2rem; }
.stat-item strong { font-weight: 700; color: var(--navy); }
.stat-item span { color: var(--gray); }

/* ── TOP PICKS (3 columns) ── */
.top-picks {
  padding: 60px 0 20px;
  background: var(--light);
}
.top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.top-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.top-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,37,64,0.15); }
.top-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.top-badge.blue { background: var(--blue); }
.top-badge.teal { background: var(--sky); }
.top-card a.banner-link { display: block; }
.top-card img {
  width: 100%;
  height: auto;
  display: block;
}
.top-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.top-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.top-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; flex: 1; }

/* ── PARTNER GRID ── */
.partners { padding: 20px 0 60px; background: var(--light); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.partner-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(10,37,64,0.13); }
.partner-card a.banner-link { display: block; }
.partner-card img {
  width: 100%;
  height: auto;
  display: block;
}
.partner-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.partner-card-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.partner-card-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; flex: 1; }

/* ── CARD TITLE LINKS ── */
.top-card-body h3 a,
.partner-card-body h3 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.top-card-body h3 a:hover,
.partner-card-body h3 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* ── SEO INTRO ── */
.seo-intro-section {
  background: #fff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(10,37,64,0.07);
}
.seo-intro { font-size: 0.97rem; color: #4a5568; line-height: 1.8; }
.seo-intro + .seo-intro { margin-top: 14px; }

/* ── SEO GRID ── */
.seo-grid-section {
  background: #fff;
  padding: 10px 0 60px;
  border-bottom: 1px solid rgba(10,37,64,0.07);
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 40px;
}
.seo-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--sky);
}
.seo-block p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── EXTRA LINKS ── */
.extra-links { padding: 40px 0 60px; background: var(--light); }
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.link-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  border-left: 4px solid var(--sky);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.link-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,37,64,0.12); }
.link-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy); }
.link-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.link-card a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.link-card a:hover { color: var(--orange); }

/* ── PARKEREN PAGE ── */
.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sky);
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-section { margin-bottom: 50px; }
.route-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }
.route-map { width: 100%; height: 420px; border: none; display: block; }
.route-info { padding: 24px 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.route-tip { display: flex; align-items: flex-start; gap: 12px; }
.route-tip-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.route-tip h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.route-tip p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.tariff-card { background: #fff; border-radius: var(--radius); box-shadow: var(--card-shadow); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--navy); color: #fff; }
thead th { padding: 14px 20px; text-align: left; font-size: 0.88rem; font-weight: 600; }
tbody tr { border-bottom: 1px solid rgba(10,37,64,0.07); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--light); }
tbody td { padding: 13px 20px; font-size: 0.88rem; color: var(--navy); }
tbody td:last-child { font-weight: 600; color: var(--blue); }
.tariff-note { padding: 16px 20px; background: #fff8e1; border-top: 1px solid #ffe082; font-size: 0.82rem; color: #795548; }
.park-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.park-card { background: #fff; border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--card-shadow); border-top: 4px solid var(--sky); transition: transform 0.2s; }
.park-card:hover { transform: translateY(-3px); }
.park-card.highlighted { border-top-color: var(--orange); }
.park-label { display: inline-block; background: var(--light); color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.park-label.orange { background: #fff0ea; color: var(--orange); }
.park-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.park-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.park-card .park-price { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-top: 10px; }
.map-card { background: #fff; border-radius: var(--radius); box-shadow: var(--card-shadow); overflow: hidden; }
.map-card img { width: 100%; display: block; }
.map-caption { padding: 16px 22px; font-size: 0.83rem; color: var(--gray); background: #fff; border-top: 1px solid rgba(10,37,64,0.07); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.tip-card { background: #fff; border-radius: 12px; padding: 20px 22px; box-shadow: 0 2px 12px rgba(10,37,64,0.07); border-left: 4px solid var(--orange); }
.tip-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tip-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.cta-banner { background: linear-gradient(135deg, var(--blue), var(--sky)); border-radius: var(--radius); padding: 40px 36px; text-align: center; color: #fff; margin-bottom: 50px; }
.cta-banner h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 0.92rem; opacity: 0.9; margin-bottom: 20px; }
.cta-banner a { display: inline-block; background: #fff; color: var(--blue); font-weight: 700; font-size: 0.92rem; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: all 0.2s; }
.cta-banner a:hover { background: var(--orange); color: #fff; }

/* ── OVER ONS PAGE ── */
.content-card { background: #fff; border-radius: var(--radius); box-shadow: var(--card-shadow); padding: 36px 40px; margin-bottom: 30px; }
.content-card h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 3px solid var(--sky); display: flex; align-items: center; gap: 10px; }
.content-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--navy); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 10px; }
.value-item { background: var(--light); border-radius: 12px; padding: 20px; text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 10px; }
.contact-item { background: var(--light); border-radius: 12px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }
.contact-item a { color: var(--blue); text-decoration: none; font-size: 0.82rem; }
.contact-item a:hover { color: var(--orange); }
.sites-list { list-style: none; margin-top: 12px; }
.sites-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
.sites-list li::before { content: '✈️'; flex-shrink: 0; }
.sites-list li a { color: var(--blue); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.sites-list li a:hover { color: var(--orange); }
.sites-list li span { color: var(--gray); font-size: 0.83rem; display: block; }
.disclaimer-note { background: #fff8e1; border: 1px solid #ffe082; border-radius: 10px; padding: 16px 20px; font-size: 0.83rem; color: #795548; margin-top: 10px; line-height: 1.6; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.5s ease both; }
.hero h1    { animation: fadeUp 0.55s 0.1s ease both; }
.hero p     { animation: fadeUp 0.55s 0.2s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner { flex-direction: row; height: 64px; padding: 0 16px; }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
  }
  /* X animation */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav dropdown */
  nav#mainNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #e0f0ff;
    box-shadow: 0 8px 24px rgba(10,37,64,0.12);
    padding: 12px 0 16px;
    z-index: 150;
  }
  nav#mainNav.nav-open { display: flex; }
  nav#mainNav a {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(10,37,64,0.06);
  }
  nav#mainNav a:last-child { border-bottom: none; }
  nav#mainNav a:hover { background: var(--light); color: var(--blue); }
  nav#mainNav a.active { background: transparent; color: var(--orange); }

  .route-map { height: 280px; }
  .content-card { padding: 24px 20px; }
}

@media (min-width: 769px) {
  .nav-toggle { display: none; }
}

@media (max-width: 900px) {
  .top-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .top-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 16px 70px; }
  .stats-inner { gap: 16px; }
}