/* =========================================
   VOORBEELD WEBSITE — Main Stylesheet
   Stijl: Zakelijk, licht, modern
   Primair: #1B8EF2 | Donker: #0A6BBF | Licht: #EBF5FE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:        #1B8EF2;
  --blue-dark:   #0A6BBF;
  --blue-light:  #63B8F8;
  --blue-dim:    rgba(27,142,242,0.12);
  --blue-border: rgba(27,142,242,0.25);
  --bg:          #F7F9FC;
  --bg-white:    #FFFFFF;
  --bg-dark:     #0D1B2A;
  --bg-mid:      #112136;
  --text:        #0D1B2A;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --border:      #E2E8F0;
  --border-dark: rgba(255,255,255,0.08);
  --font:        'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 2px 16px rgba(13,27,42,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,0.12);
  --shadow-blue: 0 8px 32px rgba(27,142,242,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--blue-light);
  color: #fff;
  border-color: var(--blue-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--text);
  border-color: rgba(13,27,42,0.2);
}
.btn-outline-white:hover {
  border-color: var(--blue);
  background: var(--blue-dim);
  color: var(--blue);
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(13,27,42,0.06); }

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

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg { width: 20px; height: 20px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}

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

.nav-links .btn-primary {
  padding: 9px 20px;
  font-size: 0.88rem;
  color: #fff;
}

.nav-links .btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

/* ── BREADCRUMB ── */
#breadcrumb-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 70px;
}

#breadcrumb-bar a { color: var(--blue); }
#breadcrumb-bar a:hover { color: var(--blue-dark); }
#breadcrumb-bar span { margin: 0 6px; color: var(--text-light); }

/* ── HERO ── */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(13,27,42,0.04);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 30%, rgba(27,142,242,0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(27,142,242,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background-image: radial-gradient(circle, rgba(27,142,242,0.18) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-left: 3px solid var(--blue);
  color: #0A6BBF;
  padding: 2px 0 2px 14px;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.hero-label-dot { display: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #0D1B2A !important;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--blue);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #475569 !important;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #64748b !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

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

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.hero-card-main {
  position: relative;
  z-index: 2;
}

.hero-card-back {
  position: absolute;
  top: -10px;
  right: -10px;
  left: 10px;
  bottom: 10px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-card-tag {
  display: inline-block;
  background: var(--blue-dim);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--blue-border);
}

.hero-card-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hero-card-mini {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.hero-card-mini-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

.hero-card-mini-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── SECTION BASE ── */
.section { padding: 90px 0; background: var(--bg); }
.section-alt { background: var(--bg-white); }
.section-dark { background: var(--bg-dark); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1B8EF2;
  background: #EBF5FE;
  border: 1px solid #B5D4F4;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.section-tag::before { display: none; }

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #0D1B2A;
}

.section-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 560px;
  line-height: 1.8;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: #fff;
  padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
}

.service-card:hover { background: #f8fafc; }

.service-card::before { display: none; }

.service-icon {
  width: 44px;
  height: 44px;
  background: #EBF5FE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card:hover .service-icon { background: #EBF5FE; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0D1B2A;
}

.service-card p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── NIEUWS ── */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.news-featured {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.news-featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27,142,242,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.news-featured .news-cat {
  display: inline-block;
  background: var(--blue-dim);
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--blue-border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.news-featured h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.news-featured p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.news-featured .news-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.news-list { display: flex; flex-direction: column; gap: 12px; }

.news-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all var(--transition);
  cursor: pointer;
}

.news-item:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.news-item .news-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.news-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-meta {
  font-size: 0.78rem;
  color: #64748b;
}
.news-featured .news-meta {
  color: rgba(255,255,255,0.7) !important;
}

/* ── REVIEWS ── */
.reviews-section { background: var(--bg-dark); }

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex: 0 0 300px;
}

.review-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 12px; }

.review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 38px; height: 38px;
  background: var(--blue-dim);
  border-radius: 50%;
  border: 2px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-light);
}

.review-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.review-date { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.review-google-badge {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}

.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-border) transparent;
}

.reviews-carousel .review-card {
  scroll-snap-align: start;
}

.reviews-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}

.reviews-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.reviews-nav button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── BOOKING / CTA ── */
.booking-section {
  background: var(--blue);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}

.booking-grid {
  display: flex;
  justify-content: center;
}

.booking-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.booking-info p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; }

.booking-usps { display: flex; flex-direction: column; gap: 10px; }

.booking-usp {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
}

.booking-usp-check {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.booking-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.booking-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }

.form-group select option { background: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-notice { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: #0D1B2A;
  border-top: 1px solid rgba(27,142,242,0.2);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: #94a3b8;
  margin-bottom: 10px;
}

.footer-contact-icon {
  width: 28px; height: 28px;
  background: rgba(27,142,242,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

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

.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 560px;
  background: #0D1B2A;
  border: 1px solid rgba(27,142,242,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: none;
}

#cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  line-height: 1.6;
}

#cookie-banner p a {
  color: #63B8F8;
  text-decoration: underline;
}

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-accept {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
}

.cookie-accept:hover { background: var(--blue-dark); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 10000;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.toast.show { transform: translateX(-50%) translateY(0); }

.toast.success { border-color: rgba(27,142,242,0.4); }
.toast.error { border-color: rgba(239,68,68,0.4); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all var(--transition);
}

#back-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }
#back-to-top.visible { display: flex; }

/* ── COUNT-UP ANIMATIE ── */
.count-up { transition: none; }

/* ── NEWS GRID PAGES ── */
.news-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.news-card-img {
  width: 100%; height: 200px;
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.news-card-body { padding: 24px; }

.news-card .news-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

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

.news-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card .news-meta { font-size: 0.78rem; color: var(--text-light); }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.portfolio-item-img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.portfolio-item-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(27,142,242,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-item-body { padding: 20px; }

.portfolio-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.portfolio-item p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 12px; }

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

.portfolio-tag {
  background: var(--blue-dim);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--blue-border);
}

/* ── SITEMAP ── */
.sitemap-section { background: var(--bg-white); padding: 60px 0; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 32px; }
.sitemap-col h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 12px; }
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-col ul li a { font-size: 0.88rem; color: var(--text-muted); }
.sitemap-col ul li a:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #navbar .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--bg-white);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
  }
  #navbar .nav-links.open { transform: translateX(0); display: flex; }
  #nav-overlay.open { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .booking-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .news-grid-page { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER NIEUW ── */
footer { background: #0D1B2A; }

.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.1); background: #0D1B2A; }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

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

.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

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

.footer-col ul li a:hover { color: #fff; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-contact-row a { color: #94a3b8; }
.footer-contact-row a:hover { color: #fff; }

.footer-contact-icon {
  width: 26px; height: 26px;
  background: rgba(27,142,242,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom { padding: 18px 0; background: #0a1520; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom-links { display: flex; gap: 20px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-links a { color: #64748b; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }


/* Booking sectie: witte knoppen op blauwe achtergrond */
.booking-section .btn-outline-white {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.booking-section .btn-outline-white:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}

/* Section-tag op donkere achtergronden */
.section-dark .section-tag,
.reviews-section .section-tag,
.about-hero .section-tag,
.hero-section .section-tag,
.pf-hero .section-tag,
.ct-hero .section-tag,
.news-hero .section-tag,
.art-hero .section-tag {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Section-header h2 en p op donkere achtergronden */
.section-dark .section-header h2,
.reviews-section .section-header h2 {
  color: #fff;
}
.section-dark .section-header p,
.reviews-section .section-header p {
  color: rgba(255,255,255,0.6);
}

/* About-hero paragraaf */
.about-hero p {
  color: rgba(255,255,255,0.7) !important;
}

/* Algemene regel: paragrafen direct in donkere secties */
.section-dark p,
.reviews-section > .container > p {
  color: rgba(255,255,255,0.65);
}


/* Lichte secties: tekst altijd donker */
.section p, .section-alt p, body > section:not(.section-dark):not(.reviews-section):not(.booking-section) p {
  color: #475569;
}
.section h1, .section h2, .section h3, .section h4,
.section-alt h1, .section-alt h2, .section-alt h3, .section-alt h4 {
  color: #0D1B2A;
}
.hero-section p:not(.hero-subtitle) {
  color: #475569;
}


/* ── ANTI-OVERRIDE: lichte secties altijd donkere tekst ── */
.hero-section .hero-title { color: #0D1B2A !important; }
.hero-section .hero-subtitle { color: #475569 !important; }
.hero-section .hero-stat-label { color: #64748b !important; }
.hero-section .hero-stat-num { color: #1B8EF2 !important; }
.hero-section .hero-label { color: #0A6BBF !important; }
.hero-section .hero-card h3 { color: #0D1B2A !important; }
.hero-section .hero-card p { color: #64748b !important; }
.hero-section .hero-card-mini-label { color: #64748b !important; }
.section-alt p, .section p { color: #475569; }
.section-alt h2, .section h2,
.section-alt h3, .section h3 { color: #0D1B2A; }


/* ── PAGINA HERO: altijd donker met witte tekst ── */
.page-hero, .about-hero, .policy-hero {
  background: #0D1B2A !important;
}
.page-hero h1, .about-hero h1, .policy-hero h1 {
  color: #ffffff !important;
}
.page-hero p, .about-hero p, .policy-hero p {
  color: rgba(255,255,255,0.8) !important;
}
.page-hero .section-tag,
.about-hero .section-tag,
.policy-hero .section-tag {
  color: rgba(255,255,255,0.7) !important;
  border-left-color: rgba(255,255,255,0.5) !important;
}


/* ── PAGINA SPACING ── */

/* Ruimte tussen page-hero en eerste sectie */
.page-hero + section,
.contact-hero + section,
.about-hero + section,
.policy-hero + section {
  margin-top: 0;
  padding-top: 80px;
}

/* Ruimte tussen laatste sectie en footer */
footer {
  margin-top: 80px;
}

/* Ruimte tussen sections onderling */
.section + .section,
.section + .section-alt,
.section-alt + .section,
.section-alt + .section-alt {
  padding-top: 80px;
}

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
