/* ═══════════════════════════════════════════════════════
   hrcvc.css — horecavac.nl — alle stijlen
   ═══════════════════════════════════════════════════════ */

/* ── VARIABELEN ──────────────────────────────────────── */
:root {
  --accent:      #41a316;
  --accent-licht: #f0f9e8;
  --accent-rand: #c5e08a;
  --groen:       #41a316;
  --groen-dark:  #2e7a0f;
  --tekst:       #1a1a18;
  --tekst-mid:   #555;
  --tekst-licht: #999;
  --rand:        #e8e8e6;
  --bg:          #ffffff;
  --wit:         #ffffff;
  --r:           8px;
  --r-lg:        12px;
}

/* ── RESET & BASE ────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--tekst);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* ── NAVIGATIE ───────────────────────────────────────── */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem 0 1.15rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { margin-top: 0.4em; }
.nav-rechts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--tekst-mid);
  padding: 7px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover { background: var(--accent-licht); color: #111; }
.nav-btn-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--groen);
  border: 1px solid var(--groen);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, color .15s, transform .15s;
  line-height: 1;
  padding: 0;
  outline: none;
}
.nav-btn-plus:hover { background: var(--groen); color: #fff; transform: scale(1.08); }
.nav-btn-plus:focus { outline: none; }
.nav-btn-plus:focus:not(:focus-visible) { background: #fff; color: var(--groen); transform: none; }
.nav-btn-plus:active { transform: scale(0.95); }

/* ── NAV DROPDOWN ────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 44px;
  right: 0;
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tekst-mid);
  border-bottom: 1px solid var(--rand);
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background .12s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--accent-licht); color: #111; }

/* ── HAMBURGER & MOBIEL MENU ─────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--rand);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  color: var(--tekst-mid);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.mobiel-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--rand);
  padding: 0.5rem 1.5rem 1rem;
}
.mobiel-menu.open { display: flex; }
.mobiel-menu a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--tekst-mid);
  border-bottom: 1px solid var(--rand);
  text-decoration: none;
}
.mobiel-menu a:last-child { border-bottom: none; }
.mobiel-menu a:hover { color: var(--groen); }

/* ── MAIN ────────────────────────────────────────────── */
main { padding: 1.5rem 1.25rem; max-width: 680px; margin: 0 auto; }

/* ── ALERT BLOK ──────────────────────────────────────── */
.alert-blok {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.alert-rij {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 0.75rem;
}
.alert-email-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  outline: none;
  background: #fafaf9;
  color: var(--tekst);
  transition: border-color 0.15s;
}
.alert-email-input:focus { border-color: var(--accent); }
.alert-sector-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 0 10px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  outline: none;
  background: #fafaf9;
  color: var(--tekst-mid);
  cursor: pointer;
  height: 38px;
  min-width: 120px;
  transition: border-color 0.15s;
  appearance: auto;
}
.alert-sector-select:focus { border-color: var(--accent); }
.alert-ga-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: none;
  color: #F72F32;
  border: none;
  padding: 0 10px;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
  height: 38px;
}
.alert-ga-btn:hover { opacity: 0.88; }

/* ── ZOEKBALK ────────────────────────────────────────── */
.zoek-wrap { margin-bottom: 1.5rem; max-width: 100%; }
.zoek-wrap input {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 16px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  outline: none;
  background: #F4F4F4;
  color: var(--tekst);
  transition: border-color 0.15s;
}
.zoek-wrap input:focus { border-color: var(--accent); }

/* ── TABS ────────────────────────────────────────────── */
.tabs-wrap { position: relative; margin-bottom: 0.875rem; }
.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs-pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wit);
  border: 1px solid var(--rand);
  color: #F72F32;
  font-size: 11px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.15s;
  user-select: none;
}
.tabs-pijl:hover { opacity: 0.7; }
.tabs-pijl.links { left: 0; }
.tabs-pijl.rechts { right: 0; }
.tabs-pijl.verborgen { opacity: 0; pointer-events: none; }
.tab {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--rand);
  color: var(--tekst-mid);
  cursor: pointer;
  background: var(--wit);
  transition: all 0.12s;
  user-select: none;
  flex-shrink: 0;
}
.tab:hover { border-color: var(--accent-rand); color: var(--accent); }
.tab.active { background: var(--accent-licht); color: var(--groen); border-color: var(--accent-rand); font-weight: 600; }

/* ── VACATURELIJST ───────────────────────────────────── */
.lijst { border-top: 1px solid var(--rand); }
.vac-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0 10px 8px;
  border-bottom: 1px solid var(--rand);
  min-width: 0;
}
.vac-body { flex: 1; min-width: 0; overflow: hidden; }
.vac-titel {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.12s;
  display: block;
}
.vac-titel:hover { color: var(--groen); }
.vac-meta {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  line-height: 1.3;
}
.vac-extra {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  line-height: 1.3;
}
.geen-resultaten {
  font-size: 13px;
  color: var(--tekst-licht);
  padding: 2rem 0;
  display: none;
  text-align: center;
}

/* ── PLAATSEN BLOK (onderaan homepage) ───────────────── */
.plaatsen-blok {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plaatsen-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: var(--groen);
  border: none;
  padding: 4px 12px;
  border-radius: var(--r);
  cursor: pointer;
  transition: opacity 0.15s;
}
.plaatsen-btn:hover { opacity: 0.8; }

/* ── PLAATSEN FORMULIER ──────────────────────────────── */
.plaatsen-intro { margin-bottom: 1.5rem; }
.plaatsen-titel {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.plaatsen-sub {
  font-size: 13px;
  color: var(--tekst-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}
.plaatsen-usps { display: flex; flex-wrap: wrap; gap: 8px; }
.usp {
  font-size: 12px;
  color: var(--groen);
  background: var(--accent-licht);
  border: 1px solid var(--accent-rand);
  padding: 3px 10px;
  border-radius: 20px;
}
.form-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1.5rem;
}
.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.veld-enkel { margin-bottom: 1rem; }
.veld label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 5px;
}
.veld input, .veld select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 9px 12px;
  background: #f5f6f3;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  color: var(--tekst);
  outline: none;
  transition: border-color 0.15s;
}
.veld input:focus, .veld select:focus { border-color: var(--accent); }
.veld-hint {
  font-size: 11px;
  color: var(--tekst-licht);
  margin-top: 4px;
}
.url-status { font-size: 11px; margin-top: 4px; min-height: 14px; }
.url-status.ok    { color: var(--groen); }
.url-status.fout  { color: #E8264A; }
.url-status.bezig { color: var(--tekst-licht); }
.form-prijs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rand);
  flex-wrap: wrap;
}
.prijs-info { display: flex; align-items: baseline; gap: 10px; }
.prijs {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
}
.prijs-detail { font-size: 12px; color: var(--tekst-licht); line-height: 1.5; }
.btn-betalen {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: none;
  color: var(--groen);
  border: 1px solid var(--groen);
  padding: 12px 28px;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-betalen:hover { background: var(--groen); color: #fff; }
.btn-betalen:disabled { opacity: 0.5; cursor: not-allowed; }
.form-melding {
  margin-top: 1rem;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--r);
}
.form-melding.fout { background: rgba(232,38,74,0.1); color: #E8264A; border: 1px solid rgba(232,38,74,0.3); }
.form-melding.ok   { background: var(--accent-licht); color: var(--groen); border: 1px solid var(--accent-rand); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rand);
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--tekst-licht);
  line-height: 2;
}
.footer-inner a { color: var(--accent); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }

/* ── MIJNACCOUNT ─────────────────────────────────────── */
.account-wrap { max-width: 640px; margin: 3rem auto; padding: 0 1.5rem 5rem; }
.account-titel {
  font-family: 'Work Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 0.5rem;
}
.account-sub { font-size: 15px; color: var(--tekst-mid); line-height: 1.7; margin-bottom: 2.5rem; }
.keuze-kaart {
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.keuze-kaart:hover { border-color: var(--accent-rand); background: var(--accent-licht); }
.keuze-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.keuze-icoon { font-size: 22px; }
.keuze-titel { font-size: 16px; font-weight: 700; color: #111; font-family: 'Work Sans', sans-serif; }
.keuze-tekst { font-size: 14px; color: var(--tekst-mid); line-height: 1.7; margin-bottom: 1rem; }
.keuze-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.keuze-btn-groen { background: var(--groen); color: #fff; }
.keuze-btn-grijs { background: #f0f0f0; color: #555; }
.keuze-btn-rood  { background: #fff0f0; color: #cc0000; border: 1px solid #ffcccc; }
.scheiding { border: none; border-top: 1px solid var(--rand); margin: 1.5rem 0; }

/* ── JURIDISCHE PAGINA'S ─────────────────────────────── */
.juridisch-wrap { max-width: 680px; margin: 0 auto; padding: 1.5rem 1.25rem 5rem; }
.juridisch-titel {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.juridisch-datum { font-size: 13px; color: var(--tekst-licht); margin-bottom: 1.5rem; }
.juridisch-body h2 { font-family: 'Work Sans', sans-serif; font-size: 18px; font-weight: 700; color: #111; margin: 2.5rem 0 0.75rem; }
.juridisch-body h3 { font-family: 'Work Sans', sans-serif; font-size: 15px; font-weight: 700; color: #111; margin: 1.5rem 0 0.5rem; }
.juridisch-body p { font-size: 15px; color: var(--tekst-mid); line-height: 1.8; margin-bottom: 1rem; }
.juridisch-body ul { margin: 0 0 1rem 1.25rem; }
.juridisch-body ul li { font-size: 15px; color: var(--tekst-mid); line-height: 1.8; margin-bottom: 0.25rem; }
.juridisch-body a { color: var(--groen); text-decoration: none; }
.juridisch-body a:hover { text-decoration: underline; }
.juridisch-kaart { background: #f8f8f8; border: 1.5px solid var(--rand); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin: 2rem 0; }
.juridisch-kaart p { margin: 0; font-size: 14px; color: var(--tekst-mid); line-height: 1.7; }
.terug-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--tekst-licht); text-decoration: none; margin-top: 3rem; }
.terug-link:hover { color: var(--groen); }

/* ── MOBIEL ──────────────────────────────────────────── */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-dropdown { display: none; }
  .nav-link.verberg-mobiel { display: none; }
  .nav-btn-plus { width: 28px; height: 28px; font-size: 18px; }
  .hamburger { width: 32px; height: 32px; font-size: 15px; }
  .nav-rechts { gap: 13px; }
}

@media (max-width: 600px) {
  main { padding: 0.75rem 1rem; }
  input, textarea, select { font-size: 16px !important; }
  input::placeholder { font-size: 13px; }

  /* Alert */
  .alert-blok { padding: 0.75rem 1rem; margin-bottom: 0.75rem; }
  .alert-rij { flex-wrap: nowrap; gap: 6px; }
  .alert-email-input { flex: 1 1 auto; min-width: 0; }
  .alert-sector-select { flex: 0 0 120px; height: 36px; min-width: 0; }
  .alert-ga-btn { flex: 0 0 auto; height: 36px; padding: 0 8px; }

  /* Zoek */
  .zoek-wrap { margin-bottom: 0.5rem; }

  /* Tabs */
  .tabs-pijl { display: none; }
  .tabs-wrap::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
  }
  .tabs { gap: 4px; margin-bottom: 0.5rem; }
  .tab { font-size: 11px; padding: 3px 9px; }

  /* Vacatures */
  .vac-titel { font-size: 20px; }

  /* Plaatsen formulier */
  .form-rij { grid-template-columns: 1fr; }
  .form-kaart { padding: 1rem; }
  .plaatsen-titel { font-size: 18px; }
  .form-prijs { flex-direction: column; align-items: stretch; }
  .btn-betalen { width: 100%; text-align: center; }

  /* Mijnaccount */
  .account-wrap { padding: 0 1rem 4rem; }
  .account-titel { font-size: 26px; }

  /* Juridisch */
  .juridisch-wrap { padding: 2rem 1rem 4rem; }
  .juridisch-titel { font-size: 24px; }

  /* Footer */
  .plaatsen-blok { flex-direction: column; align-items: stretch; }
  .footer-inner { font-size: 11px; }
}

/* ── OVER PAGINA ─────────────────────────────────────── */
.over-hero {
  padding: 1.5rem 0 0;
}
.over-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rand);
}
.over-hero h1 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.3;
}
.over-hero h1 em { color: var(--groen); font-style: normal; }
.over-hero-sub {
  font-size: 14px;
  color: var(--tekst-licht);
  margin: 0;
  line-height: 1.7;
}
.over-body { max-width: 680px; margin: 0 auto; padding: 1.5rem 1.25rem 5rem; }
.over-sectie { margin-bottom: 3rem; }
.over-sectie h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.75rem;
}
.over-sectie p { font-size: 15px; color: var(--tekst-mid); line-height: 1.8; margin-bottom: 1rem; }

.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 1.5rem 0; }
.usp-kaart { background: #fff; border: 1.5px solid var(--rand); border-radius: var(--r-lg); padding: 1.25rem; }
.usp-icoon { font-size: 24px; margin-bottom: 8px; }
.usp-titel { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; }
.usp-tekst { font-size: 13px; color: var(--tekst-mid); line-height: 1.6; }

.prijzen-tabel {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--rand);
}
.prijzen-tabel th {
  background: #f8f8f8;
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  border-bottom: 2px solid var(--rand);
}
.prijzen-tabel td { padding: 12px 16px; border-bottom: 1px solid var(--rand); color: var(--tekst-mid); }
.prijzen-tabel tr:last-child td { border-bottom: none; }
.prijzen-tabel .prijs { font-weight: 700; color: #111; }

.over-maker {
  background: #f8f8f8;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.over-maker-naam { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
.over-maker-titel { font-size: 13px; color: var(--tekst-licht); margin-bottom: 8px; }
.over-maker-tekst { font-size: 14px; color: var(--tekst-mid); line-height: 1.7; }

.cta-blok {
  background: #f5f5f3;
  border: 1px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-blok h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #111;
}
.cta-blok h2 em { color: var(--groen); font-style: normal; }
.cta-blok p { font-size: 15px; color: var(--tekst-mid); margin-bottom: 1.5rem; line-height: 1.7; }
.cta-knop {
  background: #fff;
  color: var(--groen);
  border: 1.5px solid var(--rand);
  padding: 12px 28px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s;
}
.cta-knop:hover { border-color: #aaa; }

.contact-sectie {
  background: #fff;
  border: 1.5px solid var(--rand);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}
.contact-sectie h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}
.contact-sectie .sub { font-size: 15px; color: var(--tekst-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.contact-item { background: #f8f8f8; border: 1px solid var(--rand); border-radius: var(--r); padding: 1rem; }
.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  margin-bottom: 4px;
}
.contact-item-waarde { font-size: 14px; font-weight: 600; color: #111; }
.contact-item-waarde a { color: var(--groen); text-decoration: none; }
.contact-item-waarde a:hover { text-decoration: underline; }
.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--groen);
  border: 1.5px solid var(--rand);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: border-color .15s;
}
.contact-mail-btn:hover { border-color: #aaa; }

/* ── BEDRIJVEN PAGINA ────────────────────────────────── */
.bedrijven-hero {
  padding: 2rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rand);
}
.bedrijven-hero h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px;
}
.bedrijven-hero p { font-size: 14px; color: var(--tekst-mid); }
.bedrijven-wrap { max-width: 680px; margin: 0 auto; padding: 1.5rem 1.25rem; }
.bedrijf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rand);
}
.bedrijf-naam { font-size: 15px; font-weight: 600; color: #111; }
.bedrijf-stad { font-size: 13px; color: var(--tekst-licht); margin-top: 2px; }
.bedrijf-count { font-size: 12px; color: var(--groen); font-weight: 600; white-space: nowrap; }
.bedrijven-leeg { text-align: center; padding: 3rem 0; color: var(--tekst-licht); font-size: 14px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .over-body { padding: 2rem 1rem 4rem; }
  .over-hero { padding: 2rem 0; }
  .over-hero-inner { padding: 0 1rem; }
  .over-hero h1 { font-size: 22px; }
  .over-maker { flex-direction: column; }
  .contact-sectie { padding: 1.25rem; }
}
/* ── BEDRIJVEN KAARTEN ───────────────────────────────── */
.bedrijven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem auto 3rem;
  max-width: 680px;
  padding: 0 1.25rem;
}
.bedrijf-kaart {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1rem;
}
.bedrijf-kaart-naam {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 2px;
}
.bedrijf-kaart-locatie {
  font-size: 11px;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 1px;
}
.overlay-locatie {
  font-size: 12px;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 2px;
}
.bedrijf-kaart-vac {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bedrijf-kaart-vac a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.12s;
}
.bedrijf-kaart-vac a:hover { color: var(--groen); }

@media (max-width: 600px) {
  .bedrijven-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── BEDRIJVEN INTRO ─────────────────────────────────── */
.bedrijven-intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}
.bedrijven-intro h1 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.bedrijven-intro p {
  font-size: 14px;
  color: var(--tekst-licht);
  margin-bottom: 1.5rem;
}

/* ── OVERLAY ─────────────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.overlay.open { display: flex; }
.overlay-kaart {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  position: relative;
  animation: opkomen 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes opkomen {
  from { transform: scale(0.1); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.overlay-sluit {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 18px;
  color: var(--tekst-licht);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.overlay-sluit:hover { color: #111; }
.overlay-naam {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.overlay-stad {
  font-size: 13px;
  color: var(--tekst-licht);
  margin-bottom: 1.25rem;
}
.overlay-vac {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overlay-vac a {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0000ff;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  transition: background 0.12s, color 0.12s;
  display: block;
}
.overlay-vac a:hover { background: var(--accent-licht); color: var(--groen); border-color: var(--accent-rand); }

/* ── BEDRIJF KAART VAC TITEL ─────────────────────────── */
.bedrijf-kaart-vac-titel {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #0000ff;
  line-height: 1.6;
}

/* ── CONTACTFORMULIER ────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--groen-light);
  border-radius: 12px;
  padding: 1.75rem;
}
.contact-form-titel {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.contact-form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form-veld { margin-bottom: 12px; }
.contact-form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  display: block;
  margin-bottom: 5px;
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  border: 1.5px solid var(--rand);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  box-sizing: border-box;
  background: #fff;
}
.contact-form-textarea {
  resize: vertical;
  line-height: 1.6;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-form-sub {
  font-size: 12px;
  color: var(--tekst-licht);
}
.contact-form-sub a {
  color: var(--groen);
  font-weight: 600;
  text-decoration: none;
}
.contact-melding {
  display: none;
  margin-top: 1rem;
  background: var(--groen-lichtst);
  border: 1.5px solid var(--groen-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--groen-dark);
  font-weight: 600;
}
.contact-fout {
  display: none;
  margin-top: 1rem;
  background: #fff0f0;
  border: 1.5px solid #ffcccc;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #cc0000;
}
.naar-boven-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  background: #fff;
  color: var(--groen);
  border: 1.5px solid var(--rand);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .contact-form-rij { grid-template-columns: 1fr; }
}

/* ── OVER.PHP EXTRA ──────────────────────────────────── */
.usp-link { color: var(--groen); font-weight: 600; text-decoration: none; }
.usp-link:hover { text-decoration: underline; }
.usp-kaart-breed { grid-column: 1 / -1; }
.over-quote { display: block; margin-bottom: 12px; font-size: 15px; color: #111; }
.contact-grid { margin-bottom: 2rem; }

/* ── COOKIE TABEL ────────────────────────────────────── */
.cookie-tabel { width: 100%; border-collapse: collapse; font-size: 14px; margin: 1rem 0; }
.cookie-tabel th { background: #f8f8f8; padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--tekst-licht); border-bottom: 2px solid var(--rand); }
.cookie-tabel td { padding: 10px 14px; border-bottom: 1px solid var(--rand); color: var(--tekst-mid); }
.cookie-tabel tr:last-child td { border-bottom: none; }
/* ── DASHBOARD ───────────────────────────────────────── */
.login-wrap { max-width: 380px; margin: 0 auto; text-align: center; }
.login-titel { font-size: 22px; font-weight: 600; color: #444; margin-bottom: 6px; }
.login-sub { font-size: 14px; color: var(--tekst-licht); margin-bottom: 2rem; }
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-form input {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--rand);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  text-align: center;
}
.login-form input:focus { border-color: var(--groen); }
.login-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--groen);
  border: 1px solid var(--groen);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.login-form button:hover { background: var(--groen); color: #fff; }
.fout { font-size: 13px; color: var(--groen); margin-top: 8px; }

.verstuurd-wrap { text-align: center; }
.verstuurd-icoon { font-size: 36px; margin-bottom: 1rem; }
.verstuurd-titel { font-size: 20px; font-weight: 600; margin-bottom: 0.5rem; }
.verstuurd-sub { font-size: 14px; color: var(--tekst-licht); }

.dashboard-kop {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rand);
}
.dashboard-kop h1 { font-size: 22px; font-weight: 600; color: #444; }
.dashboard-kop p { font-size: 13px; color: var(--tekst-licht); margin-top: 4px; }
.dashboard-bedrijf { font-size: 15px; font-weight: 600; color: #111 !important; margin-top: 8px !important; }

.vac-kaart {
  border: 1px solid var(--rand);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
}
.vac-kaart-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.vac-kaart-titel { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 3px; }
.vac-kaart-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}
.status-actief { background: #f0f9e0; color: #5a8a00; }
.status-verlopen { background: #fee2e2; color: #c0392b; }
.status-inactief { background: #f5f5f3; color: #999; }

.vac-link-wrap { margin-bottom: 10px; }
.vac-link-label { font-size: 11px; color: var(--tekst-licht); margin-bottom: 5px; }
.vac-link-input {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid var(--rand);
  border-radius: 6px;
  width: 100%;
  outline: none;
  color: #555;
  transition: border-color 0.15s;
}
.vac-link-input:focus { border-color: var(--groen); }

.vac-kaart-acties { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.vac-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--rand);
  color: #555;
  background: #fff;
  transition: all 0.12s;
  white-space: nowrap;
}
.vac-btn:hover { border-color: #ccc; color: #111; }
.vac-btn.groen { border-color: var(--groen); color: var(--groen); }
.vac-btn.groen:hover { background: var(--groen); color: #fff; }
.vac-btn.rood { border-color: #e8264a; color: #e8264a; }
.vac-btn.rood:hover { background: #e8264a; color: #fff; }
.verloopt-datum { font-size: 11px; color: #bbb; margin-top: 3px; }

/* ── DASHBOARD TABEL ─────────────────────────────────── */
.lijst-kaart {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--r);
  overflow: hidden;
}
.dash-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dash-tabel thead tr {
  background: #f8f8f8;
  border-bottom: 2px solid var(--rand);
}
.dash-tabel th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
}
.dash-tabel td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rand);
  vertical-align: middle;
}
.dash-tabel tr:last-child td { border-bottom: none; }
.dash-tabel tr:hover td { background: #fafafa; }
.dash-meta { font-size: 12px; color: var(--tekst-licht); }
.dash-acties { white-space: nowrap; }
.link-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.link-ok { background: var(--groen); }
.link-onbekend { background: #ddd; }