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

:root {
  --vp-blue: #111111;
  --vp-lightblue: #f59e0b;
  --vp-bg: #f8f8f8;
  --vp-dark: #0f0f0f;
  --vp-muted: #525252;
  --vp-radius: 14px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: var(--vp-bg);
}

/* Layout helpers */

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

.section,
.stripe {
  padding: 56px 0;
}

.section-alt {
  background: #fff7e6;
}

/* Header */

.top-strip {
  background: #0f1113;
  color: #e5e7eb;
  font-size: 0.75rem;
}

.top-strip-inner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-strip a {
  color: #f3f4f6;
  text-decoration: none;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ececec;
}

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

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

.brand-logo {
  height: 40px;
  max-width: 220px;
  display: block;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
}

.main-nav a {
  text-decoration: none;
  color: #1f2937;
  padding: 6px 9px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a.active {
  background: #111111;
  color: #ffffff;
}

.main-nav a:hover {
  background: #fff5dd;
  color: var(--vp-blue);
}

/* Hero */

.hero {
  padding: 30px 0 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  margin: 0 0 10px;
  color: var(--vp-dark);
}

.hero-sub {
  font-size: 0.98rem;
  color: #3f3f46;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
  margin-top: 4px;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--vp-lightblue);
}

.hero-image img {
  width: 100%;
  border-radius: var(--vp-radius);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #f9fafb;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: #ffffff;
  color: #1f2937;
  border-color: #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-full {
  width: 100%;
}

/* Price section */

.stripe {
  background: white;
}

.stripe h2,
.section h2 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--vp-dark);
}

.section-intro {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 42rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: #ffffff;
  border-radius: var(--vp-radius);
  padding: 14px;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.card-sub {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--vp-muted);
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.price-card th,
.price-card td {
  padding: 4px 4px;
}

.price-card thead th {
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

.price-card tbody tr:nth-child(odd) {
  background: #fafafa;
}

.price-card tbody td:last-child {
  text-align: right;
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: #525252;
  margin-top: 18px;
}

.waste-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.waste-pill {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #1f2937;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  cursor: pointer;
}

.waste-pill.active {
  background: #111111;
  color: #fff;
  border-color: #111111;
}

.card-thumb {
  width: 100%;
  max-width: 170px;
  display: block;
  margin: 6px auto 10px;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.step {
  background: white;
  border-radius: var(--vp-radius);
  border: 1px solid #e5e7eb;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f59e0b;
  color: #111827;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Over */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

.about-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #374151;
}

.about-highlight {
  background: white;
  border-radius: var(--vp-radius);
  padding: 16px 16px 14px;
  border: 1px solid #d1d5db;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
}

.about-highlight h3 {
  margin-top: 0;
}

.small {
  font-size: 0.8rem;
  color: #4b5563;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 24px;
}

.contact-bullets {
  font-size: 0.9rem;
  color: #4b5563;
  padding-left: 18px;
}

.contact-form {
  background: white;
  border-radius: var(--vp-radius);
  border: 1px solid #e5e7eb;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}

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

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

.field > input,
.field > select,
.field > textarea {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 400px;
  padding: 7px 9px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--vp-lightblue);
  outline-offset: 1px;
  border-color: var(--vp-lightblue);
}

/* 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;
}
.check-item {
  margin-bottom: 0.5rem;
}
.container-summary-box {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  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;
}

/* Styling voor weekend/feestdag datums in date picker */
input[type="date"].weekend-holiday {
  border-color: #dc2626; /* red-600 */
  background-color: #fef2f2; /* red-50 */
}

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 {
  border-top: 1px solid #e5e7eb;
  background: white;
  padding: 16px 0 18px;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 20;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
  }
  
  .main-nav a:hover {
    background: #e5f2ff;
  }
  
  .section,
  .stripe {
    padding: 40px 0;
  }
  .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;
  }
  /* Groene vinkjes: op mobiel standaard ingeklapt, titel + chevron klikbaar */
  .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;
  }
  .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;
  }
  .field {
    margin-bottom: 5px;
  }
  .field > label { flex: 0 0 110px; }
  .field > input, .field > select, .field > textarea { max-width: none; }
  /* Container-samenvatting (wanneer zichtbaar) compacter op mobiel */
  .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-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
