/* Rode Bak - suppliers.color_hex = #E50019 (new_supplier_requests id 12) */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --brand: #E50019;
  --brand-dark: #b90015;
  --gold: #E50019;
  --dark: #1b1b1b;
  --muted: #4a5568;
  --bg: #f8f9fa;
  --card: #ffffff;
  --radius: 8px;
}

html { scrollbar-gutter: stable; }
html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section, .stripe { padding: 48px 0; }
.section-alt { background: #eef0f2; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-top {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #e8ecf1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
}

.brand-logo-img {
  height: 60px;
  max-width: 280px;
  object-fit: contain;
}

/* Nav */
.main-nav {
  background: var(--card);
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  gap: 0;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  padding: 14px 18px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  display: inline-block;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(229, 0, 25, 0.1);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

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

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .main-nav.active .nav-links { display: flex; }
  .main-nav a { padding: 12px 20px; width: 100%; color: var(--dark); }
}

/* Hero (standaard: kan per pagina worden overschreven) */
.hero {
  padding: 0;
}

.hero--rodebak {
  background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 55%, #f8fafc 100%);
  color: var(--dark);
  overflow: hidden;
}

.hero-rodebak-skyline {
  width: 100%;
  line-height: 0;
  background: linear-gradient(180deg, #dceaf5 0%, #f0f7fc 100%);
}

.hero-rodebak-skyline img {
  width: 100%;
  height: auto;
  max-height: min(28vh, 200px);
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero-rodebak-body {
  padding: 28px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 560px;
  color: var(--dark);
}

.hero--rodebak .hero-content h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  margin: 0 0 12px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.05rem;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.hero-features li {
  position: relative;
  padding-left: 20px;
  color: #374151;
  font-size: 0.95rem;
}

.hero-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand);
}

.hero-rodebak-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-rodebak-trees {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-trees-left {
  position: absolute;
  left: -4%;
  bottom: 0;
  width: min(42%, 220px);
  height: auto;
}

.hero-trees-right {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: min(46%, 240px);
  height: auto;
}

.hero-truck {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.12));
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-features { justify-content: center; }
  .hero-rodebak-visual {
    min-height: 180px;
    margin-top: 8px;
  }
  .hero-trees-left { left: 0; width: 38%; }
  .hero-trees-right { right: 0; width: 40%; }
}

.rodebak-section-curve {
  line-height: 0;
  margin-top: -2px;
  background: #fff;
}

.rodebak-section-curve img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.hero--rodebak .btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.hero--rodebak .btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.price-card-visual {
  margin: 0 0 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #f1d5d8;
  padding: 6px;
  text-align: center;
}

.price-card-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: inline-block;
}

/* Steps */
.steps-section h2 { text-align: center; margin-bottom: 32px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  padding-top: 48px;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Container-kaarten op home (formaten 3 m³, 6 m³, etc.) */
.container-cards-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.container-cards-section .section-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 1rem;
}

.container-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}

.container-card {
  background: var(--card);
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid #e8ecf1;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.container-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1), 0 16px 40px rgba(15, 23, 42, 0.08);
}

.container-card--featured {
  border-color: rgba(229, 0, 25, 0.35);
}

.container-card-ribbon {
  position: absolute;
  top: 14px;
  left: -6px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px 6px 12px;
  box-shadow: 0 2px 8px rgba(229, 0, 25, 0.35);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.container-card-image-wrap {
  display: block;
  padding: 20px 16px 8px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.container-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.container-card-title {
  padding: 12px 16px 20px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

/* Price grid */
.stripe .section-intro { margin-bottom: 24px; color: var(--muted); }

.delivery-info {
  background: #fef9e7;
  border: 1px solid #f0e68c;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #7d6b00;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--gold);
}

.price-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card-sub { margin: 0 0 16px; font-size: 0.9rem; color: var(--muted); }

.price-card table { width: 100%; border-collapse: collapse; }
.price-card th, .price-card td { padding: 10px 8px; text-align: left; border-bottom: 1px solid #eee; }
.price-card th { font-size: 0.85rem; color: var(--muted); }
.price-row { cursor: pointer; }
.price-row:hover { background: #fef9e7; }
.price-cell { font-weight: 600; color: var(--brand-dark); }

.note { margin-top: 24px; font-size: 0.95rem; color: var(--muted); }
.note a { color: var(--gold); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-form-stack { gap: 0.35rem; }
  .section--contact { padding: 12px 0 20px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .contact-intro .contact-intro-title { margin: 0 0 0.35rem 0; font-size: 1.2rem; }
  .contact-intro .contact-intro-text { margin: 0 0 0.4rem 0; font-size: 0.875rem; line-height: 1.35; }
  .contact-intro-box { margin-top: 0.5rem; padding: 0.5rem 0.75rem; }
  .contact-intro-box--collapse-mobile .contact-intro-box-chevron { display: inline-block; }
  .contact-intro-box--collapse-mobile .contact-intro-box-body { display: none; padding-top: 0.5rem; }
  .contact-intro-box--collapse-mobile.is-expanded .contact-intro-box-body { display: block; }
  .contact-intro-box--collapse-mobile.is-expanded .contact-intro-box-chevron { transform: rotate(180deg); }
  .contact-intro-box-toggle .contact-intro-box-title { margin: 0; font-size: 0.95rem; }
  .contact-form { padding: 10px 12px 12px; }
  .contact-form .field { margin-bottom: 5px; }
  .contact-form .field > label { flex: 0 0 110px; }
  .contact-form .field > input, .contact-form .field > select, .contact-form .field > textarea { max-width: none; }
  .form-progress { margin-bottom: 0.5rem; }
  .progress-steps { max-width: none; }
  .progress-step { padding: 0.25rem 0.2rem; border-bottom-width: 2px; }
  .progress-step-label { font-size: 0.7rem; }
  .progress-step-sublabel { font-size: 0.65rem; margin-top: 0.1rem; }
  .form-step-title { margin-bottom: 0.5rem; font-size: 1.05rem; }
  .container-summary-box { margin-bottom: 0.75rem; padding: 0.6rem 0.75rem; gap: 0.75rem; flex-direction: row; align-items: center; }
  .container-summary-box #info-container-img { width: 60px; }
  .container-summary-box .container-summary-left,
  .container-summary-box .container-summary-right { font-size: 0.85rem; }
  .container-summary-box .container-summary-right div:first-of-type { font-size: 0.8rem; }
}

.contact-form .field {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.contact-form .field > label {
  flex: 0 0 200px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form .field > input,
.contact-form .field > select,
.contact-form .field > textarea {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 400px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 194, 1, 0.35);
}

.form-message { margin-top: 16px; font-size: 0.95rem; }
.form-message.success { color: #059669; }
.form-message.error { color: #dc2626; }

.check-item { margin: 8px 0; padding-left: 24px; position: relative; margin-bottom: 0.5rem; }
.check-item::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Contactpagina: compact op mobiel zodat formulier in 1e scherm past */
.section--contact .contact-intro .contact-intro-title { font-size: 1.25rem; margin: 0 0 0.5rem 0; font-weight: 600; }
.section--contact .contact-intro .contact-intro-text { margin: 0 0 0.75rem 0; font-size: 0.95rem; line-height: 1.4; }
.form-progress { margin-bottom: 1.5rem; }
.progress-steps { display: flex; justify-content: space-between; align-items: center; max-width: 600px; margin: 0 auto; }
.progress-step { flex: 1; text-align: center; padding: 0.5rem; border-bottom: 3px solid #e5e7eb; color: #6b7280; font-weight: 400; }
.progress-step.active { border-bottom-color: #10b981; color: #10b981; font-weight: 600; }
.progress-step-label { display: block; font-size: 0.875rem; }
.progress-step-sublabel { display: block; font-size: 0.75rem; margin-top: 0.25rem; }
.form-step-title { margin-bottom: 1.5rem; font-size: 1.25rem; font-weight: 600; }
.contact-intro-box { margin-top: 1.5rem; padding: 1.25rem; background: #f0fdf4; border-radius: 8px; }
.contact-intro-box-title { margin: 0 0 1rem 0; font-size: 1.1rem; font-weight: 600; color: #065f46; }
.contact-intro-box-toggle { display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 0; margin: 0 0 1rem 0; font: inherit; color: inherit; }
.contact-intro-box-toggle .contact-intro-box-title { margin: 0; display: inline; }
.contact-intro-box-chevron { display: none; margin-left: 0.35rem; font-size: 0.75rem; color: #065f46; transition: transform 0.2s ease; }
.contact-intro-box--collapse-mobile .contact-intro-box-toggle { margin-bottom: 0; }
.contact-intro-box--collapse-mobile .contact-intro-box-toggle .contact-intro-box-title { margin: 0; }
.container-summary-box { margin-bottom: 1.5rem; padding: 1.25rem 1.5rem; background: #fff; border-radius: 10px; border: 1px solid #d1fae5; box-shadow: 0 1px 3px rgba(0,0,0,0.06); display: flex; align-items: stretch; gap: 2rem; }
.container-summary-box .container-summary-left { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.container-summary-box .container-summary-right { flex: 1; text-align: right; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 0.4rem; }

/* Gewenste plaatsingsdatum: weekend/feestdag (wordt gecorrigeerd) */
input[type="date"].weekend-holiday {
  border-color: #dc2626;
  background-color: #fef2f2;
}
input[type="date"].weekend-holiday:focus {
  border-color: #dc2626;
  outline-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #b0b0b0;
  padding: 40px 0 24px;
  margin-top: 48px;
}

.footer-inner { font-size: 0.9rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.footer-brand { font-weight: 700; color: #fff; margin-bottom: 8px; }

.site-footer a { color: #b0b0b0; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-meta { color: #888; }
.footer-copy { margin-top: 24px; padding-top: 16px; border-top: 1px solid #333; color: #666; font-size: 0.85rem; }

/* Veelgestelde vragen – look zoals containerdrenthe.nl */
.container-narrow { max-width: 800px; }
.faq-page .breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.faq-page .breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}
.faq-page .breadcrumb a:hover { text-decoration: underline; }
.faq-list { margin-top: 2rem; }
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--dark);
  font-weight: 600;
}
.faq-item p {
  color: #374151;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}
.faq-item p:last-child { margin-bottom: 0; }
.faq-item .faq-highlight {
  color: var(--brand);
  font-weight: 600;
  margin-top: 0.75rem;
}
.faq-item a { color: var(--brand); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

