*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #c8211d;
  --red-dark:  #9e1a17;
  --red-light: #fdecea;
  --white:     #ffffff;
  --gray-bg:   #f3f3f3;
  --gray-line: #dedede;
  --gray-mid:  #999999;
  --gray-text: #555555;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-text); background: var(--white); line-height: 1.65; font-size: 16px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 70px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.logo { display: flex; align-items: center; text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 0.25rem; }
nav ul a {
  color: var(--gray-text); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 4px; transition: color 0.2s;
}
nav ul a:hover { color: var(--red); }
.nav-cta { background: var(--red) !important; color: white !important; border-radius: 4px; padding: 0.45rem 1.1rem !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-text); border-radius: 2px; }

/* ── HERO ── */
.hero-logo-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  padding: 1.5rem 2.5rem;
}
.hero-logo-bar-inner { max-width: 1100px; margin: 0 auto; }

#home {
  background: var(--red-dark);
  padding: 4.5rem 2.5rem 5rem;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.05; margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 2rem; max-width: 420px;
}
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.8rem 1.5rem; border-radius: 5px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.18s; border: 2px solid transparent; cursor: pointer;
}
.btn-white { background: var(--white); color: var(--red-dark); }
.btn-white:hover { background: var(--gray-bg); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; }

/* ── HERO CONTACT CARD ── */
.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 2rem;
}
.hero-card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem;
}
.hero-card-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: white; text-decoration: none; font-weight: 500; font-size: 0.97rem;
}
.hero-card-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.hero-card-item svg { color: rgba(255,255,255,0.55); flex-shrink: 0; }
.hero-card-item:hover { color: rgba(255,255,255,0.75); }
.hero-card-divider {
  margin: 1.1rem 0; border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-card-hours { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }

/* ── SECTIONS ── */
.section-pad { padding: 4.5rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--red-dark); line-height: 1.1; margin-bottom: 0.75rem;
}
.section-sub { color: var(--gray-mid); font-size: 1rem; max-width: 520px; line-height: 1.7; }

/* ── DIENSTEN ── */
#diensten { background: var(--gray-bg); }
.diensten-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem; margin-top: 2.5rem;
}
.dienst-card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-top: 3px solid var(--red); border-radius: 8px;
  padding: 1.75rem 1.5rem; transition: box-shadow 0.2s, transform 0.2s;
}
.dienst-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.dienst-icon { width: 56px; height: 56px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--red); font-size: 1.5rem; }
.dienst-title {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 700; color: var(--red-dark); margin-bottom: 0.4rem;
}
.dienst-desc { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; }

/* ── WAAROM ── */
#waarom { background: var(--red-dark); }
.waarom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.waarom-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white; line-height: 1.1; margin-bottom: 0.6rem;
}
.waarom-sub { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; margin-bottom: 1.75rem; }
.waarom-items { display: flex; flex-direction: column; gap: 1rem; }
.waarom-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.waarom-check {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
}
.waarom-item-title { font-weight: 700; color: white; font-size: 0.95rem; margin-bottom: 0.1rem; }
.waarom-item-desc { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.beschikbaar-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px; padding: 2rem;
}
.beschikbaar-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.beschikbaar-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.93rem;
}
.beschikbaar-row:last-of-type { border-bottom: none; }
.beschikbaar-row .dag { color: rgba(255,255,255,0.75); font-weight: 500; }
.beschikbaar-row .tijd { color: rgba(255,255,255,0.45); }

/* ── REGIO ── */
#regio { background: var(--gray-bg); }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gray-bg); border: 1px solid var(--gray-line);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.contact-item small {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-mid); margin-bottom: 1px;
}
.contact-item a { color: var(--red-dark); text-decoration: none; font-weight: 600; font-size: 0.97rem; }
.contact-item a:hover { color: var(--red); }
.contact-form-card {
  background: var(--gray-bg); border: 1px solid var(--gray-line);
  border-radius: 10px; padding: 2.25rem;
}
.contact-form-title {
  font-family: var(--font-head); font-size: 1.35rem;
  font-weight: 700; color: var(--red-dark); margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 0.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.68rem 0.9rem;
  border: 1.5px solid var(--gray-line); border-radius: 5px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--red-dark);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { height: 90px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--red-dark); color: rgba(255,255,255,0.45);
  text-align: center; padding: 1.75rem 2rem;
  font-size: 0.82rem; line-height: 2;
}
footer strong { color: rgba(255,255,255,0.85); }
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 1rem;
    border-top: 1px solid var(--gray-line);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .hamburger { display: flex; }
  .waarom-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}