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

:root {
  --primary: #1a5c35;
  --primary-dark: #0f3d22;
  --accent: #c41e3a;
  --accent2: #f7c948;
  --accent3: #52b788;
  --purple: #7c3aed;
  --pink: #ec4899;
  --dark: #0d1b0f;
  --light: #f0faf4;
  --text: #2d3748;
  --white: #fff;
  --green: #25D366;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== CONFETTI DOTS BACKGROUND ===== */
.confetti-bg {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(26,92,53,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,150,199,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(247,201,72,0.05) 0%, transparent 60%);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  transition: box-shadow 0.3s, border-color 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,150,199,0.15);
  border-bottom-color: rgba(0,150,199,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1140px; margin: 0 auto;
}
.logo {
  font-size: 1.55rem; font-weight: 900; color: var(--primary-dark);
  display: flex; align-items: center; gap: 2px; letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.logo .logo-nl { color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-weight: 700; color: var(--dark); transition: color 0.2s; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(26,92,53,0.35);
}
.nav-cta:hover { transform: scale(1.05) !important; box-shadow: 0 6px 22px rgba(26,92,53,0.5) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 28px; gap: 4px;
  background: var(--white); border-top: 2px solid #f0f0f0;
  max-height: calc(100vh - 64px); overflow-y: auto;
}
.mobile-menu a {
  font-weight: 700; color: var(--dark); padding: 13px 0; border-bottom: 1px solid #f5f5f5;
  font-size: 1.05rem; display: flex; align-items: center; gap: 8px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important; padding: 14px 20px; border-radius: 12px;
  font-weight: 800; border-bottom: none !important; justify-content: center;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative; display: flex; align-items: center; padding-top: 80px;
  overflow: hidden;
}

/* ===== SLIDER ===== */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(2,62,138,0.75) 0%,
    rgba(26,92,53,0.65) 40%,
    rgba(0,150,199,0.55) 70%,
    rgba(72,202,228,0.45) 100%
  );
}
.slider-dots {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; z-index: 2;
  align-items: center; height: 36px; padding: 0 8px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none;
  cursor: pointer; transition: background 0.3s, width 0.3s, border-radius 0.3s;
  flex-shrink: 0;
}
.slider-dot.active { background: var(--accent2); width: 24px; border-radius: 4px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; cursor: pointer; z-index: 2;
  transition: background 0.2s; user-select: none;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.hero-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float 8s ease-in-out infinite;
}
.bubble:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 120px; height: 120px; top: 60%; left: 5%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 60px; height: 60px; top: 30%; right: 15%; animation-delay: 1s; }
.bubble:nth-child(4) { width: 100px; height: 100px; top: 70%; right: 10%; animation-delay: 3s; }
.bubble:nth-child(5) { width: 40px; height: 40px; top: 45%; left: 45%; animation-delay: 1.5s; }
.bubble:nth-child(6) { width: 70px; height: 70px; top: 10%; right: 35%; animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  max-width: 860px; margin: 0 auto; padding: 40px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); padding: 8px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 800; margin-bottom: 28px;
  letter-spacing: 0.3px; box-shadow: 0 4px 20px rgba(196,30,58,0.4);
  animation: badge-bounce 3s ease-in-out 2;
}
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-top: 4px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem); opacity: 0.92; line-height: 1.7;
  margin-bottom: 38px; max-width: 620px; margin-left: auto; margin-right: auto; font-weight: 600;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), #ff4500);
  color: var(--white); padding: 18px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 24px rgba(196,30,58,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(196,30,58,0.6); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.18); color: var(--white);
  padding: 18px 36px; border-radius: 50px; font-weight: 800; font-size: 1.05rem;
  border: 2.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.28); transform: translateY(-3px); }

.hero-stats {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 10px; max-width: 580px; margin: 0 auto;
}
.stat { padding: 16px 32px; text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-number { font-size: 2rem; font-weight: 900; color: var(--accent2); line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; font-weight: 600; }

.wave-bottom { position: absolute; bottom: -1px; left: 0; right: 0; }

/* ===== SECTION BASICS ===== */
section { padding: 90px 0; }
.section-label {
  text-align: center; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title {
  text-align: center; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center; color: #64748b; font-size: 1.08rem;
  max-width: 620px; margin: 0 auto 56px; line-height: 1.75; font-weight: 600;
}

/* ===== VIBES STRIP ===== */
.vibes-strip {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3), var(--primary));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  padding: 18px 0; overflow: hidden; white-space: nowrap;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.vibes-inner {
  display: inline-flex; align-items: center; gap: 48px; animation: scroll-left 25s linear infinite;
  font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: 0.5px;
  -webkit-overflow-scrolling: touch;
}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.vibes-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.vibes-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; }

/* ===== WAAROM ===== */
.waarom { background: var(--light); position: relative; overflow: hidden; }
.waarom::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,150,199,0.08), transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,150,199,0.05), rgba(255,107,53,0.05));
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); border-color: rgba(26,92,53,0.25); }
.why-card:hover::before { opacity: 1; }
.why-icon-wrap {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.why-icon-wrap.blue   { background: #1a5c35; }
.why-icon-wrap.orange { background: #7f1d1d; }
.why-icon-wrap.green  { background: #166534; }
.why-icon-wrap.purple { background: #0d1b2a; }
.why-icon-wrap.yellow { background: #7c3d14; }
.why-icon-wrap.pink   { background: #991b1b; }
.why-icon-wrap.teal   { background: #14532d; }
.why-icon-wrap.red    { background: #c41e3a; }
.why-icon-wrap i { font-size: 1.75rem; line-height: 1; }
.why-icon-wrap svg { display: block; }
.why-icon-wrap.blue i, .why-icon-wrap.orange i, .why-icon-wrap.green i,
.why-icon-wrap.purple i, .why-icon-wrap.yellow i, .why-icon-wrap.pink i,
.why-icon-wrap.teal i, .why-icon-wrap.red i,
.why-icon-wrap.blue svg, .why-icon-wrap.orange svg, .why-icon-wrap.green svg,
.why-icon-wrap.purple svg, .why-icon-wrap.yellow svg, .why-icon-wrap.pink svg,
.why-icon-wrap.teal svg, .why-icon-wrap.red svg { color: #fff; }
.why-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.why-card p { color: #64748b; font-size: 0.95rem; line-height: 1.65; }

/* ===== ARRANGEMENTS ===== */
.arrangements { background: var(--white); }
.arr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.arr-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.arr-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
.arr-card-header {
  padding: 32px 28px 28px; color: var(--white); position: relative; overflow: hidden;
}
.arr-card-header::after {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.arr-card-header.borrel { background: linear-gradient(rgba(15,61,34,0.70), rgba(26,92,53,0.76)), url('/images/borrelboot-bg.jpg') center/cover no-repeat; }
.arr-card-header.bbq { background: linear-gradient(rgba(150,30,20,0.72), rgba(200,80,30,0.78)), url('/images/bbqboot-bg.jpg') center/cover no-repeat; }
.arr-card-header.pizza { background: linear-gradient(rgba(27,67,50,0.72), rgba(45,106,79,0.80)), url('/images/pizzaboot-bg.jpg') center/cover no-repeat; }
.arr-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.arr-card:hover .arr-icon { animation: wiggle 0.5s ease-in-out; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
.arr-card-header h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.3px; }
.arr-card-header p { opacity: 0.9; font-size: 0.95rem; font-weight: 600; }
.arr-price {
  position: absolute; top: 28px; right: 28px;
  background: rgba(255,255,255,0.22); border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px; padding: 7px 16px; font-weight: 900; font-size: 1.15rem;
  backdrop-filter: blur(4px);
}
.arr-body { padding: 28px; flex: 1; display: flex; flex-direction: column; background: var(--white); }
.arr-features { list-style: none; margin-bottom: 28px; flex: 1; }
.arr-features li {
  padding: 9px 0; border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #475569;
}
.arr-features li:last-child { border-bottom: none; }
.arr-features li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent3));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; flex-shrink: 0;
}
.arr-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 15px; border-radius: 12px;
  font-weight: 800; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,92,53,0.3);
}
.arr-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,53,0.4); }

/* ===== BOOT SPECS ===== */
.boat-section {
  background: linear-gradient(rgba(5,20,10,0.78), rgba(0,25,10,0.84)), url('/images/boot-specs-bg.jpg') center/cover no-repeat;
  color: var(--white); position: relative; overflow: hidden;
}
.boat-section::before {
  content: '🚢'; position: absolute; font-size: 18rem; right: -40px; bottom: -40px;
  opacity: 0.04; line-height: 1; pointer-events: none;
}
.boat-section .section-title { color: var(--white); }
.boat-section .section-subtitle { color: rgba(255,255,255,0.65); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.spec-card {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 30px 20px; text-align: center;
  transition: background 0.3s, transform 0.3s; cursor: default;
}
.spec-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.spec-icon { margin-bottom: 14px; display: flex; align-items: center; justify-content: center; min-height: 36px; color: inherit; }
.spec-value { font-size: 2.2rem; font-weight: 900; color: var(--accent2); margin-bottom: 6px; }
.spec-label { opacity: 0.65; font-size: 0.875rem; font-weight: 600; }

/* ===== ROUTES ===== */
/* PRAAM VERHAAL */
.praam-section { background: #fff; padding: 80px 20px; border-top: 1px solid #e8f0fe; }
.praam-inner { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.praam-title { font-size: 2.2rem; font-weight: 900; color: var(--dark); margin: 8px 0 18px; line-height: 1.2; }
.praam-intro { font-size: 1.15rem; font-style: italic; color: var(--primary); font-weight: 600; border-left: 4px solid var(--secondary); padding-left: 16px; margin-bottom: 22px; line-height: 1.6; }
.praam-body { color: #4a5568; line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.praam-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.praam-feat { display: flex; align-items: flex-start; gap: 12px; background: #f8fafc; border-radius: 12px; padding: 14px 16px; }
.praam-feat-icon { width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(26,92,53,0.12); color: #1a5c35; }
.praam-feat strong { display: block; font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.praam-feat span { font-size: 0.8rem; color: #718096; }
.praam-badge-wrap { position: sticky; top: 100px; }
.praam-badge { background: linear-gradient(135deg, var(--primary), #073d1a); color: white; border-radius: 20px; padding: 36px 28px; text-align: center; box-shadow: 0 12px 40px rgba(26,92,53,0.25); }
.praam-badge-icon { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; opacity: 0.9; }
.praam-badge-title { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.3px; margin-bottom: 4px; }
.praam-badge-sub { font-size: 0.85rem; opacity: 0.75; margin-bottom: 20px; }
.praam-badge-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 16px 0; }
.praam-badge-stat { margin-bottom: 14px; }
.praam-badge-stat span { display: block; font-size: 1.4rem; font-weight: 800; }
.praam-badge-stat small { font-size: 0.78rem; opacity: 0.7; }
@media (max-width: 860px) {
  .praam-inner { grid-template-columns: 1fr; }
  .praam-badge-wrap { position: static; }
  .praam-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .praam-features { grid-template-columns: 1fr; } }

.routes { background: var(--light); }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.route-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.route-card:hover { transform: translateY(-6px); }
.route-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  position: relative; overflow: hidden;
}
.route-img.alkmaar { background: url('/images/stadsroute.jpg') center/cover no-repeat; }
.route-img.polder { background: url('/images/polderroute.jpg') center/cover no-repeat; }
.route-body { padding: 28px; }
.route-tag {
  display: inline-block; background: var(--light); color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px; border: 1px solid rgba(0,150,199,0.2);
}
.route-body h3 { font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.route-body p { color: #64748b; font-size: 0.95rem; line-height: 1.7; font-weight: 600; }
.route-extra-info { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e8f5e9; display: flex; flex-direction: column; gap: 8px; }
.route-detail { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #374151; font-weight: 600; }
.route-detail-icon { font-size: 1rem; }
.route-price-badge { display: inline-block; margin-top: 4px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; font-weight: 900; font-size: 1rem; padding: 6px 16px; border-radius: 50px; letter-spacing: 0.02em; align-self: flex-start; }

/* ===== REKENHULP ===== */
.rekenhulp { background: #f8fafc; }
.calc-wrap {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start;
  margin-top: 8px;
}
.calc-inputs { display: flex; flex-direction: column; gap: 32px; }
.calc-group {}
.calc-step-label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--dark); font-size: 0.95rem; margin-bottom: 14px;
}
.calc-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900; flex-shrink: 0;
}

/* Arrangement cards */
.calc-arr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.calc-arr-btn {
  border: 2px solid #e2e8f0; border-radius: 14px; background: var(--white);
  cursor: pointer; transition: all 0.2s; text-align: center;
  font-family: inherit; overflow: hidden; padding: 0;
}
.calc-arr-btn:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,92,53,0.12); transform: translateY(-2px); }
.calc-arr-btn.selected { border-color: var(--primary); box-shadow: 0 6px 24px rgba(26,92,53,0.2); transform: translateY(-2px); }
.calc-arr-top {
  padding: 18px 0 14px; font-size: 2.2rem; line-height: 1;
}
.borrel-top { background: linear-gradient(135deg, #0f3d22, #1a5c35); }
.bbq-top    { background: linear-gradient(135deg, #7f1d1d, #c41e3a); }
.pizza-top  { background: linear-gradient(135deg, #1b4332, #2d6a4f); }
.calc-arr-body { padding: 12px 10px 14px; }
.calc-arr-name { font-weight: 800; font-size: 0.88rem; color: var(--dark); margin-bottom: 4px; }
.calc-arr-pp { font-size: 0.8rem; color: #64748b; font-weight: 700; }
.calc-arr-btn.selected .calc-arr-pp { color: var(--primary); }

/* Route toggle */
.calc-route-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #e2e8f0; border-radius: 12px; padding: 4px; gap: 4px;
}
.calc-route-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 10px; border-radius: 9px; border: none;
  background: transparent; cursor: pointer; transition: all 0.2s;
  font-family: inherit; font-size: 0.85rem; font-weight: 700; color: #64748b;
}
.calc-route-btn > i { font-size: 1.5rem; line-height: 1; margin-bottom: 4px; color: inherit; }
.calc-route-meta { font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
.calc-route-btn.active {
  background: var(--white); color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.calc-route-btn.active .calc-route-meta { color: var(--primary); font-weight: 700; }

/* Persons slider */
.calc-persons-wrap { background: var(--white); border-radius: 14px; padding: 20px 24px; border: 2px solid #e2e8f0; }
.calc-persons-display { font-size: 2.4rem; font-weight: 900; color: var(--primary); letter-spacing: -1px; margin-bottom: 12px; line-height: 1; }
.calc-persons-display small { font-size: 1rem; font-weight: 600; color: #94a3b8; letter-spacing: 0; }
.calc-slider { width: 100%; height: 6px; accent-color: var(--primary); cursor: pointer; }
.calc-slider-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: #94a3b8; font-weight: 700; margin-top: 8px; }

/* Result card */
.calc-result {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); position: sticky; top: 100px;
  overflow: hidden;
}
.calc-result-inner { padding: 32px 28px; }
.calc-result-eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #94a3b8; margin-bottom: 8px; }
.calc-result-total { font-size: 3.4rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -2px; margin-bottom: 10px; }
.calc-result-breakdown { color: #64748b; font-size: 0.88rem; font-weight: 600; line-height: 1.6; min-height: 36px; }
.calc-result-divider { height: 1px; background: #f1f5f9; margin: 20px 0; }
.calc-result-facts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.calc-fact { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: #64748b; font-weight: 600; }
.calc-fact i { color: var(--primary); font-size: 0.95rem; }
.calc-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 16px 20px; border-radius: 12px;
  font-weight: 800; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,92,53,0.3); text-decoration: none;
}
.calc-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,53,0.45); }
.calc-cta-btn.disabled { opacity: 0.35; pointer-events: none; }

/* Kok toggle */
.calc-kok-toggle { display: block; cursor: pointer; }
.calc-kok-toggle input { display: none; }
.calc-kok-body {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 2px solid #e2e8f0; border-radius: 14px; padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-kok-toggle:hover .calc-kok-body { border-color: var(--primary); }
.calc-kok-toggle input:checked ~ .calc-kok-body { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,92,53,0.15); }
.calc-kok-icon { font-size: 1.8rem; flex-shrink: 0; }
.calc-kok-text { flex: 1; }
.calc-kok-title { font-weight: 800; font-size: 0.95rem; color: var(--dark); }
.calc-kok-sub { font-size: 0.8rem; color: #64748b; font-weight: 600; margin-top: 2px; }
.calc-kok-price { font-weight: 900; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }

@media (max-width: 960px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}
@media (max-width: 560px) {
  .calc-arr-grid { grid-template-columns: 1fr 1fr 1fr; }
  .calc-arr-top { padding: 14px 0 10px; font-size: 1.8rem; }
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); padding: 90px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); z-index: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--white); font-weight: 800; font-size: 0.95rem;
  position: relative; overflow: hidden;
}
.gallery-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: inherit; filter: brightness(0.85);
  transition: filter 0.3s;
}
.gallery-item:hover .gallery-placeholder::before { filter: brightness(0.7); }
.gallery-placeholder span { position: relative; z-index: 1; font-size: 2.5rem; }
.gallery-placeholder p { position: relative; z-index: 1; opacity: 0.9; }
.g1 { background: url('/images/extra-1.jpg') center/cover no-repeat; }
.g2 { background: url('/images/extra-2.jpg') center/cover no-repeat; }
.g3 { background: url('/images/polderroute.jpg') center/cover no-repeat; }
.g4 { background: url('/images/extra-3.jpg') center/cover no-repeat; }
.g5 { background: url('/images/stadsroute.jpg') center/cover no-repeat; }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-weight: 800; font-size: 0.95rem; }
.gallery-cta {
  margin-top: 32px; text-align: center;
}
.gallery-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: var(--white); padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(225,48,108,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(225,48,108,0.45); }

/* ===== SOCIAL FEED ===== */
.social-feed { background: linear-gradient(160deg, #fdf2f8 0%, #f0faf4 100%); padding: 90px 0; }
.social-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; }
.social-tab {
  padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 0.9rem;
  border: 2.5px solid #e2e8f0; background: var(--white); cursor: pointer;
  transition: all 0.2s; color: #64748b; display: flex; align-items: center; gap: 8px;
}
.social-tab.insta.active {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  border-color: transparent; color: var(--white);
}
.social-tab.linkedin.active {
  background: #0a66c2; border-color: transparent; color: var(--white);
}
.social-tab:not(.active):hover { border-color: var(--primary); color: var(--primary); }
.feed-panel { display: none; }
.feed-panel.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feed-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.feed-card:hover { transform: translateY(-4px); }
.feed-card-img {
  height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.feed-card-body { padding: 18px 20px; }
.feed-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feed-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--white); font-weight: 900;
}
.feed-name { font-weight: 800; color: var(--dark); font-size: 0.9rem; }
.feed-handle { color: #94a3b8; font-size: 0.8rem; }
.feed-text { color: #475569; font-size: 0.9rem; line-height: 1.6; font-weight: 600; margin-bottom: 10px; }
.feed-meta { color: #94a3b8; font-size: 0.8rem; font-weight: 600; display: flex; gap: 16px; }
.feed-cta { text-align: center; margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white); padding: 13px 26px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(238,42,123,0.35);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(238,42,123,0.45); }
.btn-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a66c2; color: var(--white); padding: 13px 26px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(10,102,194,0.35);
}
.btn-linkedin:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,102,194,0.45); }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--light); border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden; transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card::before {
  content: '"'; position: absolute; top: -10px; right: 24px;
  font-size: 8rem; color: var(--primary); opacity: 0.08; font-family: Georgia, serif; line-height: 1;
}
.review-stars { font-size: 1.2rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: #475569; font-style: italic; margin-bottom: 18px; line-height: 1.75; font-size: 1rem; font-weight: 600; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.review-author { font-weight: 800; color: var(--dark); font-size: 0.95rem; }
.review-type { color: #94a3b8; font-size: 0.82rem; font-weight: 600; margin-top: 2px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(rgba(10,40,20,0.68), rgba(5,20,10,0.75)), url('/images/cta-bg.jpg') center/cover no-repeat;
  color: var(--white); text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🎉🚢🥂🍖🍕🎊'; font-size: 3rem; position: absolute;
  top: 20px; left: 0; right: 0; text-align: center; opacity: 0.12; letter-spacing: 24px;
}
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 18px;
  letter-spacing: -0.5px; position: relative;
}
.cta-section p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; font-weight: 600; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff4500);
  color: var(--white); padding: 16px 32px; border-radius: 50px; font-weight: 800;
  font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(196,30,58,0.4); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,107,53,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 16px 32px; border-radius: 50px; font-weight: 800;
  font-size: 1rem; border: 2.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); padding: 16px 32px; border-radius: 50px; font-weight: 800;
  font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 2px solid transparent; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(0,150,199,0.25); }
.faq-question {
  width: 100%; background: none; border: none; padding: 22px 28px;
  text-align: left; font-size: 1rem; font-weight: 800; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; color: var(--primary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 28px 22px; color: #64748b; line-height: 1.75; font-weight: 600; }
.faq-answer-inner a { color: var(--primary); font-weight: 800; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: var(--white); padding: 70px 24px 28px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2), var(--accent3), var(--primary));
  background-size: 200% 100%; animation: gradient-shift 4s linear infinite;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1140px; margin: 0 auto 48px;
}
.footer-logo { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--accent); }
.footer-logo .logo-nl { color: var(--white); }
.footer-desc { opacity: 0.65; font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; font-weight: 600; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; transition: transform 0.2s, opacity 0.2s;
  opacity: 0.8;
}
.footer-social-btn:hover { transform: scale(1.15); opacity: 1; }
.footer-social-btn.insta { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.footer-social-btn.linkedin { background: #0a66c2; }
.footer-social-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.footer-heading { font-weight: 900; margin-bottom: 18px; font-size: 0.95rem; opacity: 0.9; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { opacity: 0.6; font-size: 0.9rem; font-weight: 600; transition: opacity 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { opacity: 1; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-link { opacity: 0.6; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; font-weight: 600; transition: opacity 0.2s; }
.footer-contact-link:hover { opacity: 1; }

/* ===== PARTNER SECTION ===== */
.partner-section { background: #f8fafc; padding: 72px 0; border-top: 1px solid #e2e8f0; }
.partner-card {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: center;
  background: var(--white); border-radius: 24px; padding: 48px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.partner-eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #ff6b35; margin-bottom: 10px; }
.partner-title { font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.partner-desc { color: #64748b; font-size: 0.97rem; font-weight: 600; line-height: 1.75; margin-bottom: 24px; }
.partner-perks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.partner-perk { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.partner-perk i { color: #ff6b35; font-size: 1rem; }
.partner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff6b35; color: var(--white); padding: 13px 24px; border-radius: 50px;
  font-weight: 800; font-size: 0.92rem; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.partner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.5); }
.partner-card-right { display: flex; justify-content: center; align-items: center; }
.partner-visual {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, #fff3ed, #ffe8d6);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; border: 3px solid #fdd0b4;
}
.partner-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: #ff6b35; color: var(--white); font-size: 0.7rem; font-weight: 900;
  padding: 4px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .partner-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .partner-card-right { display: none; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  max-width: 1140px; margin: 0 auto; font-size: 0.85rem; opacity: 0.5; gap: 12px; font-weight: 600;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  background: linear-gradient(135deg, #25D366, #128C7E);
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== FORMS ===== */
.form-section { background: var(--white); }
.reservation-form { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
label { display: block; font-weight: 800; color: var(--dark); margin-bottom: 8px; font-size: 0.9rem; }
label span.req { color: var(--accent); }
input, select, textarea {
  width: 100%; padding: 13px 18px; border: 2.5px solid #e2e8f0; border-radius: 12px;
  font-size: 1rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white); font-weight: 600;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,150,199,0.12);
}
textarea { resize: vertical; min-height: 110px; }
.submit-btn {
  width: 100%; padding: 17px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border: none; border-radius: 50px; font-size: 1.1rem;
  font-weight: 900; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; font-family: inherit;
  box-shadow: 0 6px 24px rgba(26,92,53,0.35);
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(26,92,53,0.5); }
.form-note { text-align: center; color: #94a3b8; font-size: 0.88rem; margin-top: 14px; font-weight: 600; }
.persons-slider { width: 100%; height: 6px; accent-color: var(--primary); cursor: pointer; margin: 10px 0 6px; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: #94a3b8; font-weight: 700; }
.success-box { background: #fff; border: 2px solid #86efac; border-radius: var(--radius-lg); padding: 40px 36px; text-align: center; box-shadow: 0 8px 32px rgba(26,92,53,0.12); }
.success-icon { font-size: 3.5rem; margin-bottom: 12px; }
.success-box h3 { color: #0d1b2a; margin-bottom: 6px; font-size: 1.6rem; font-weight: 900; }
.success-ref { color: #1a5c35; font-weight: 700; margin-bottom: 12px; font-size: 1rem; }
.success-summary { background: #f8fafc; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; margin-bottom: 8px; text-align: left; }
.success-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid #e2e8f0; font-size: 0.9rem; }
.success-summary-row:last-child { border-bottom: none; }
.success-summary-row span { color: #64748b; font-weight: 600; }
.success-summary-row strong { color: #0d1b2a; font-weight: 800; }
.btn-primary { background: #1a5c35; color: #fff; padding: 13px 28px; border-radius: 50px; font-weight: 800; font-size: 0.95rem; display: inline-block; text-decoration: none; transition: background 0.2s; }
.btn-primary:hover { background: #145228; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-item input { width: auto; cursor: pointer; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 130px 24px 70px; text-align: center;
  background: linear-gradient(135deg, #0f3d22, #1a5c35, #52b788);
  color: var(--white); position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-header h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; position: relative; }
.page-header p { font-size: 1.12rem; opacity: 0.9; max-width: 560px; margin: 0 auto; font-weight: 600; position: relative; }
.breadcrumb { font-size: 0.88rem; opacity: 0.7; margin-bottom: 16px; font-weight: 600; position: relative; }
.breadcrumb a { opacity: 0.85; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 1; }

/* ===== DETAIL SECTIONS ===== */
.detail-section { padding: 80px 0; }
.detail-section.alt { background: var(--light); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.detail-grid.reverse .detail-text { order: 2; }
.detail-grid.reverse .detail-img { order: 1; }
.detail-img-placeholder {
  border-radius: var(--radius-lg); height: 340px;
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
  box-shadow: var(--shadow-lg);
}
.detail-label { color: var(--primary); font-weight: 800; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.detail-text h2 { font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 18px; letter-spacing: -0.3px; }
.detail-text p { color: #64748b; line-height: 1.8; margin-bottom: 18px; font-weight: 600; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.includes-list li { display: flex; align-items: flex-start; gap: 12px; color: #475569; font-weight: 600; }
.includes-list li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent3));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; flex-shrink: 0;
}
.price-block { border-radius: var(--radius-lg); padding: 28px; text-align: center; margin: 28px 0; }
.price-block .price-label { opacity: 0.8; font-size: 0.9rem; margin-bottom: 4px; font-weight: 700; }
.price-block .price-value { font-size: 3rem; font-weight: 900; color: var(--accent2); }
.price-block .price-sub { opacity: 0.8; font-size: 0.9rem; margin-top: 4px; font-weight: 600; }

/* ===== ADMIN ===== */
.admin-wrap { min-height: 100vh; background: #f0f4f8; }
.admin-nav { position: sticky; top: 0; z-index: 200; background: var(--dark); color: var(--white); padding: 14px 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.admin-nav .logo { font-size: 1.15rem; font-weight: 900; color: var(--white); white-space: nowrap; }
.admin-nav .logo span { color: var(--accent); }
.admin-nav .logo .logo-nl { color: var(--white); }
.admin-nav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.admin-nav a { color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: color 0.2s; font-weight: 600; white-space: nowrap; }
.admin-nav a:hover { color: var(--white); }
.admin-nav a.active { color: var(--white); background: rgba(255,255,255,0.13); padding: 4px 10px; border-radius: 6px; }
.admin-content { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.admin-header { margin-bottom: 28px; }
.admin-header h1 { font-size: 1.7rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.admin-header p { color: #64748b; font-weight: 600; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-left: 4px solid var(--primary); }
.stat-card.pending { border-left-color: var(--accent); }
.stat-card.confirmed { border-left-color: var(--accent3); }
.stat-card.cancelled { border-left-color: #e63946; }
.stat-card-value { font-size: 2.2rem; font-weight: 900; color: var(--dark); }
.stat-card-label { color: #94a3b8; font-size: 0.85rem; margin-top: 4px; font-weight: 700; }
.filters { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-btn { padding: 9px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 800; border: 2px solid #e2e8f0; background: var(--white); cursor: pointer; transition: all 0.2s; color: #64748b; }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.filter-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.reservations-table { background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; }
.table-header { padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.table-header h2 { font-size: 1.1rem; font-weight: 900; color: var(--dark); }
table { width: 100%; border-collapse: collapse; }
th { background: #f8fafc; padding: 13px 16px; text-align: left; font-size: 0.82rem; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; }
td { padding: 15px 16px; border-bottom: 1px solid #f1f5f9; font-size: 0.93rem; vertical-align: middle; font-weight: 600; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fafc; }
.badge { display: inline-block; padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; }
.badge.pending { background: #fff7ed; color: #c2410c; }
.badge.confirmed { background: #f0fdf4; color: #15803d; }
.badge.cancelled { background: #fef2f2; color: #b91c1c; }
.action-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; font-size: 1rem; border: none; cursor: pointer; transition: opacity 0.2s, background 0.15s; margin-right: 2px; position: relative; text-decoration: none; }
.action-btn.detail   { background: #eff6ff; color: #1d4ed8; }
.action-btn.confirm  { background: #f0fdf4; color: #15803d; }
.action-btn.cancel   { background: #fff7ed; color: #c2410c; }
.action-btn.delete   { background: #fef2f2; color: #b91c1c; }
.action-btn.whatsapp { background: #dcfce7; color: #166534; }
.action-btn:hover { opacity: 0.7; }
.action-btn[title]:hover::after { content: attr(title); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: #1e293b; color: #fff; font-size: 0.73rem; font-weight: 700; white-space: nowrap; padding: 4px 8px; border-radius: 6px; pointer-events: none; z-index: 10; }
.empty-state { padding: 64px 24px; text-align: center; color: #94a3b8; }
.empty-state p { margin-top: 12px; font-weight: 600; }
.login-page { min-height: 100vh; background: linear-gradient(135deg, #0f3d22, #1a5c35, #52b788); display: flex; align-items: center; justify-content: center; }
.login-box { background: var(--white); border-radius: var(--radius-lg); padding: 44px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.login-box .logo { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.login-box .logo span { color: var(--accent); }
.login-box .logo .logo-nl { color: var(--primary); }
.login-box h2 { font-size: 1.15rem; font-weight: 700; color: #64748b; margin-bottom: 32px; }
.login-box .submit-btn { margin-top: 10px; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-size: 0.95rem; font-weight: 700; }
.alert.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert.success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.detail-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; }
.detail-modal.open { display: flex; }
.modal-content { background: var(--white); border-radius: var(--radius-lg); padding: 36px; max-width: 580px; width: 90%; max-height: 85vh; overflow-y: auto; }
.modal-row { display: flex; gap: 14px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #f1f5f9; }
.modal-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.modal-label { font-weight: 800; color: var(--dark); min-width: 120px; font-size: 0.88rem; }
.modal-value { color: #64748b; font-size: 0.88rem; font-weight: 600; }
.modal-close { float: right; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #94a3b8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 200px); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 12px 16px; }

  /* Grids */
  .detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-grid.reverse .detail-text { order: 1; }
  .detail-grid.reverse .detail-img { order: 2; }
  .form-row { grid-template-columns: 1fr; }
  .arr-grid { grid-template-columns: 1fr; gap: 20px; }
  .routes-grid { grid-template-columns: 1fr; gap: 20px; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .why-grid { gap: 16px; }

  /* Calculator */
  .calc-wrap { grid-template-columns: 1fr; gap: 20px; }
  .calc-result { position: static; }
  .calc-result-total { font-size: 2.6rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item { height: 200px; }
  .gallery-placeholder { height: 200px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  /* Page sections */
  .page-header { padding: 90px 20px 52px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* Table */
  table { font-size: 0.82rem; }
  th, td { padding: 10px 12px; }
}

@media (max-width: 560px) {
  /* Calculator arrangement buttons: 2-col */
  .calc-arr-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-arr-btn:last-child { grid-column: span 2; }
  .calc-arr-top { padding: 14px 0 10px; font-size: 1.8rem; }

  /* Specs: 2 col */
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-value { font-size: 1.8rem; }

  /* Hero buttons */
  .hero-buttons { gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 14px 24px; font-size: 0.95rem; width: 100%; justify-content: center; }

  /* Sections padding */
  .arrangements, .rekenhulp, .gallery, .reviews, .faq, .social-feed { padding: 56px 0; }
  .boat-section { padding: 56px 0; }
  .cta-section { padding: 52px 20px; }
}

@media (max-width: 480px) {
  /* Hero stats */
  .stat:not(:last-child)::after { display: none; }
  .hero-stats { border-radius: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item { height: 220px; }
  .gallery-placeholder { height: 220px; }

  /* Calculator arrangement: 1-col on very small */
  .calc-arr-btn:last-child { grid-column: span 1; }

  /* Nav logo */
  .logo { font-size: clamp(1.2rem, 5vw, 1.55rem); }

  /* Page header */
  .page-header { padding: 80px 16px 44px; }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Flatpickr */
  .flatpickr-calendar { max-width: 94vw !important; left: 3vw !important; }
}

/* ===== TOUCH DEVICE OPTIMISATIONS ===== */
@media (hover: none) {
  /* Remove hover transforms that mis-fire on tap */
  .arr-card:hover { transform: none; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .gallery-item:hover { transform: none; }
  .arr-btn:hover, .calc-arr-btn:hover { transform: none; }
  /* Larger tap targets for range sliders */
  .calc-slider, .persons-slider { height: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
