/* ============================================================
   Autoklimaat Woerden — Stylesheet
   Palette: #C0001A (rood), #222222 (antraciet), #FFFFFF, #F5F5F5
   Accent: #B8860B (goud, spaarzaam)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #C0001A;
  --red-dark: #960015;
  --dark:     #222222;
  --mid:      #444444;
  --light:    #F5F5F5;
  --white:    #FFFFFF;
  --gold:     #B8860B;
  --radius:   6px;
  --shadow:   0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg:0 6px 32px rgba(0,0,0,0.16);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Barlow', 'Inter', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; }
img { display: block; }
ul { list-style: none; }

/* Media fill helper */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img img, .hero__bg { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Utility ---------- */
.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(34,34,34,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Barlow', 'Inter', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo__icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__sub {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--white); }

/* Mobile menu trigger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  border-radius: 4px;
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,0.1); }
.mobile-menu__trigger .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   MOBILE NAV — FULLSCREEN OVERLAY
   ============================================================ */
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  overflow-y: auto;
  transition: opacity 0.28s ease, transform 0.28s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu__overlay.is-open {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__panel {
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 24px 40px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
  flex-shrink: 0;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu__item {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  font-family: 'Barlow', 'Inter', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--red); padding-left: 8px; }

.mobile-menu__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__footer a.btn { width: 100%; justify-content: center; }
.mobile-menu__contact-info {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu__contact-info a { color: rgba(255,255,255,0.85); }
.mobile-menu__contact-info a:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px; /* header height */
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.78) 0%,
    rgba(34,34,34,0.62) 60%,
    rgba(192,0,26,0.22) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,0,26,0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero__title span { color: var(--red); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.proof-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.proof-strip__item:last-child { border-right: none; }
.proof-strip__icon {
  width: 36px;
  height: 36px;
  background: rgba(192,0,26,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.proof-strip__text strong {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}
.proof-strip__text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   DIENSTEN GRID
   ============================================================ */
.diensten {
  padding: 80px 0;
  background: var(--white);
}
.diensten__header {
  text-align: center;
  margin-bottom: 52px;
}
.diensten__header .section-subtitle { margin: 0 auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Red top accent bar */
.card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--red);
  position: absolute;
  top: 0; left: 0; right: 0;
}

.card__body {
  padding: 28px 24px 24px;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(192,0,26,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}

/* Duotone icon style: icon layer with subtle red bg */
.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.card__desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons {
  padding: 80px 0;
  background: var(--light);
}
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.over-ons__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.over-ons__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__content .section-title { margin-bottom: 20px; }
.over-ons__content p {
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.75;
}
.over-ons__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--red);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(192,0,26,0.04);
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.partners__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.partners__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-right: 8px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--mid);
  transition: border-color var(--transition), color var(--transition);
  min-width: 110px;
}
.partner-logo:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--red);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-info { display: flex; flex-direction: column; gap: 10px; }
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-info-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-info-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-info-item a:hover { color: var(--white); }

.footer-partners {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-partners span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-partner {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.stek-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 4px 10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 100px 0 60px;
  margin-top: 68px;
  border-bottom: 3px solid var(--red);
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero__subtitle { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.contact-section { padding: 72px 0; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-list .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(192,0,26,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-list .ci-content strong {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-info-list .ci-content span,
.contact-info-list .ci-content a {
  color: var(--mid);
  font-size: 0.92rem;
}
.contact-info-list .ci-content a:hover { color: var(--red); }

.openingstijden-table {
  background: var(--light);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
}
.openingstijden-table h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.ot-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: var(--mid);
}
.ot-row:last-child { border-bottom: none; }
.ot-row strong { color: var(--dark); font-weight: 600; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.contact-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form__subtitle {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-label span { color: var(--red); }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.14);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,0,26,0.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-control::placeholder { color: rgba(0,0,0,0.3); }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .over-ons__inner { grid-template-columns: 1fr; gap: 40px; }
  .over-ons__img { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }
  .mobile-menu__trigger { display: block; }

  .hero { height: 100svh; max-height: none; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .card-grid { grid-template-columns: 1fr; }

  .proof-strip__item {
    padding: 14px 16px;
    min-width: 140px;
    flex-basis: 50%;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-form { padding: 24px 20px; }
  .cta-band { padding: 56px 0; }

  .diensten { padding: 60px 0; }
  .over-ons { padding: 60px 0; }
}

@media (max-width: 400px) {
  .proof-strip__item { flex-basis: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* Animations removed — sections always visible */

