/* =============================================
   ADMINISTRATIEKANTOOR BAS VERSCHUREN
   Brand Stylesheet 2025
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=GFS+Baskerville&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --navy:       #2d3748;
  --sage:       #6b9080;
  --sage-l:     #8db5a4;
  --sage-bg:    #f0f5f3;
  --off-white:  #f5f5f3;
  --white:      #ffffff;
  --border:     #e5e7eb;
  --text-muted: #6b7280;
  --dark-div:   #3d4f62;
  --radius:     6px;
  --shadow:     0 2px 12px rgba(45,55,72,0.07);
  --max-w:      1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy);
  background: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'GFS Baskerville', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 12px; }
h4 { font-size: 15px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 8px; }

p { margin-bottom: 16px; color: var(--navy); }
p:last-child { margin-bottom: 0; }

a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 500; }

ul, ol { padding-left: 20px; margin-bottom: 16px; }
li { margin-bottom: 6px; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--bg { background: var(--off-white); }
.section--sage { background: var(--sage-bg); }
.section--navy { background: var(--navy); color: #fff; }

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.logo-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.logo-bar {
  height: 5px;
  border-radius: 1px;
}
.logo-bar--1 { width: 44px; background: var(--navy); }
.logo-bar--2 { width: 44px; background: var(--sage); }
.logo-bar--3 { width: 44px; background: var(--navy); }
.logo-bar--4 { width: 27px; background: var(--navy); opacity: 0.25; }

.logo-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.logo-text { line-height: 1; }

.logo-text__top {
  font-family: 'GFS Baskerville', serif;
  font-size: 20px;
  color: var(--sage);
  display: block;
  letter-spacing: 0.3px;
}

.logo-text__rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 5px 0;
}

.logo-text__bottom {
  font-family: 'Poppins', sans-serif;
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
  display: block;
}

/* Header logo — white */
.logo--white .logo-bar--1,
.logo--white .logo-bar--3 { background: #fff; }
.logo--white .logo-bar--4 { background: #fff; }
.logo--white .logo-divider { background: var(--dark-div); }
.logo--white .logo-text__top { color: var(--sage-l); }
.logo--white .logo-text__rule { background: var(--dark-div); }
.logo--white .logo-text__bottom { color: #fff; }

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 8px 10px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-bg);
  color: var(--sage);
  text-decoration: none;
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  font-weight: 400 !important;
}

.nav-cta:hover {
  background: var(--sage) !important;
}

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px; /* bridge gap so mouse stays within nav-item */
  background: transparent;
  z-index: 200;
  min-width: 240px;
}

/* The visible card inside the dropdown */
.nav-dropdown::before {
  content: none;
}

.nav-dropdown > li {
  background: var(--white);
}
.nav-dropdown > li:first-child {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
}
.nav-dropdown > li:last-child {
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.nav-dropdown > li:not(:first-child):not(:last-child) {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nav-item:hover .nav-dropdown, .nav-item.open .nav-dropdown { display: block; }

.nav-dropdown a {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--navy);
  display: block;
  border-radius: 4px;
}

.nav-dropdown a:hover {
  background: var(--sage-bg);
  color: var(--sage);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; }
  .nav-item:hover .nav-dropdown { display: none; }
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(107,144,128,0.06);
}

.hero-content { max-width: 680px; }

.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-l);
  display: block;
  margin-bottom: 20px;
}

.hero h1 { color: #fff; }

.hero-intro {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin: 20px 0 36px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}
.btn--primary:hover { background: var(--sage-l); text-decoration: none; color: #fff; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { border-color: #fff; text-decoration: none; color: #fff; }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--sage); text-decoration: none; color: #fff; }

.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover { background: var(--off-white); text-decoration: none; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: '/';
  color: var(--border);
  margin-right: 6px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--sage); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--off-white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-header .label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px 0 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 20px; height: 20px; color: var(--sage); }

.card h3 { margin-bottom: 10px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sage);
  margin-top: 16px;
  font-weight: 400;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ===== SERVICE LIST ===== */
.service-list { list-style: none; padding: 0; }
.service-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===== CHECK LIST ===== */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 500;
}

/* ===== STEPS ===== */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  padding: 24px 0 24px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 24px;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
}

/* ===== FAQ ===== */
.faq { list-style: none; padding: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { display: block; }

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--off-white);
  border-bottom: 2px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table tbody tr:hover { background: var(--off-white); }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-block .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== HIGHLIGHT BOX ===== */
.highlight {
  background: var(--sage-bg);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight p { margin: 0; font-size: 15px; }

/* ===== STATS ===== */
.stat {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-family: 'GFS Baskerville', serif;
  font-size: 48px;
  color: var(--sage);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.form-textarea { min-height: 120px; resize: vertical; }

/* ===== SIDEBAR LAYOUT ===== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.sidebar { position: sticky; top: 96px; }

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'GFS Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--sage-bg);
  color: var(--sage);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { }

.footer-brand .logo--white { margin-bottom: 20px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-nav h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--sage-l); text-decoration: none; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.gap-section { margin-bottom: 80px; }

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ===== NAP (Name Address Phone) ===== */
.nap address {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
}

.nap a { color: var(--sage-l); }

/* ===== COOKIEBANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  z-index: 9999;
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(45,55,72,0.18);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  color: #fff;
}

.cookie-text a {
  color: var(--sage-l);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.cookie-btn--accept {
  background: var(--sage);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--sage-l);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
