/* ============================================
   DE FIETSTUIN — Stylesheet
   Warm, lokaal, organisch Amsterdam buurtwinkel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --green:       #2D4A22;
  --green-light: #3d6330;
  --green-pale:  #e8f0e4;
  --cream:       #F5EFE0;
  --cream-dark:  #ede4cf;
  --terracotta:  #C4622D;
  --terra-dark:  #a64f22;
  --text:        #1A1A1A;
  --text-muted:  #5a5a4a;
  --white:       #FFFDF8;
  --border:      #d9d0bb;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(45,74,34,0.08);
  --shadow-md:  0 6px 24px rgba(45,74,34,0.12);
  --shadow-lg:  0 16px 48px rgba(45,74,34,0.16);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;

  --max-w: 1180px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { font-size: 1.05rem; color: var(--text-muted); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Layout Utilities ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,98,45,0.3);
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,98,45,0.4);
}

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

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--terracotta); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-afspraak {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-afspraak:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}
.mobile-nav .header-phone {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.mobile-nav .btn-afspraak {
  text-align: center;
  padding: 0.9rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, #2D4A22 0%, #3d6330 40%, #4a7a3d 70%, #2D4A22 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(196,98,45,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,239,224,0.08) 0%, transparent 50%);
}

/* Organic texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: #f0c080;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.92;
}

/* ─── USP Bar ─── */
.usp-bar {
  background: var(--green);
  padding: 0;
}

.usp-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.usp-item:last-child { border-right: none; }

.usp-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.usp-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* ─── Services Grid ─── */
.diensten { background: var(--white); }

.diensten-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.diensten-header h2 { margin-bottom: 0.75rem; }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dienst-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.dienst-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--green-pale);
  transform: translate(40px, 40px);
  transition: transform 0.4s ease;
}
.dienst-card:hover::before { transform: translate(20px, 20px); }

.dienst-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dienst-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.dienst-card h3 {
  font-size: 1.3rem;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.dienst-card p {
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--terracotta);
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}
.dienst-link:hover { gap: 0.65rem; }

/* ─── Social Proof ─── */
.reviews {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--green);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.reviews-stars {
  color: #E8A838;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.reviews-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Carrousel ─── */
.reviews-carousel-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  position: relative;
}

.review-card {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  animation: reviewFadeIn 0.4s ease;
}

.review-card.active {
  display: block;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #E8A838;
  font-size: 1.1rem;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.reviewer-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 1.5rem 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.25);
}

.reviews-footer {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .reviews-carousel-container {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-btn {
    display: none;
  }

  .review-card {
    padding: 1.5rem;
  }
}

/* ─── Locatie ─── */
.locatie { background: var(--white); }

.locatie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.locatie-info h2 { margin-bottom: 1.5rem; }

.openings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.openings-table tr {
  border-bottom: 1px solid var(--border);
}
.openings-table td {
  padding: 0.7rem 0;
  color: var(--text-muted);
}
.openings-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 140px;
}
.openings-table .gesloten { color: #999; font-style: italic; }
.openings-table .vandaag td { color: var(--green); font-weight: 600; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
}
.contact-item a { color: var(--green); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder {
  background: linear-gradient(135deg, #c8d8c0 0%, #b5c9aa 50%, #9eb89e 100%);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(45,74,34,0.05) 40px,
    rgba(45,74,34,0.05) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(45,74,34,0.05) 40px,
    rgba(45,74,34,0.05) 41px
  );
}

.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-pin-bubble {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 4px rgba(196,98,45,0.3);
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--terracotta);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content { color: var(--white); position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.85); }

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 0.75rem; max-width: 560px; font-size: 1.1rem; }

/* ─── Reparatie Prijzen ─── */
.prijzen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.prijs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.prijs-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prijs-service { font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.prijs-range {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--terracotta);
  font-family: var(--font-display);
}
.prijs-desc { font-size: 0.87rem; color: var(--text-muted); }

/* ─── Werkwijze ─── */
.werkwijze { background: var(--green); color: var(--white); }

.werkwijze-header { text-align: center; margin-bottom: 3rem; }
.werkwijze-header h2 { color: var(--white); }
.werkwijze-header p { color: rgba(255,255,255,0.7); }

.stappen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.stappen::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.stap {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.stap-number {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.stap h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.6rem; }
.stap p { color: rgba(255,255,255,0.65); font-size: 0.93rem; }

/* ─── Reparatie Form ─── */
.reparatie-form { background: var(--white); }

.form-container {
  max-width: 680px;
  margin: 0 auto;
}
.form-intro { text-align: center; margin-bottom: 2.5rem; }
.form-intro h2 { margin-bottom: 0.75rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

input, textarea, select {
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }

.form-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ─── Fietsen ─── */
.filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

.fietsen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fiets-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.fiets-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fiets-card.hidden { display: none; }

.fiets-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fiets-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fiets-badge.tweedehands { background: var(--cream); color: var(--text-muted); }
.fiets-badge.nieuw { background: var(--green); color: var(--white); }

.fiets-body { padding: 1.5rem; }
.fiets-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.fiets-prijs {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.fiets-desc { font-size: 0.87rem; margin-bottom: 1.25rem; }

/* ─── Over Ons ─── */
.verhaal { background: var(--white); }
.verhaal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.verhaal-content h2 { margin-bottom: 1.25rem; }
.verhaal-content p { margin-bottom: 1rem; }

.verhaal-image-placeholder {
  border-radius: var(--radius-lg);
  height: 460px;
  background: linear-gradient(145deg, #3d6330 0%, #2D4A22 40%, #C4622D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.verhaal-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.waarden { background: var(--cream); }
.waarden-header { text-align: center; margin-bottom: 3rem; }
.waarden-header h2 { margin-bottom: 0.6rem; }

.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.waarde-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.waarde-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.waarde-icon {
  width: 68px;
  height: 68px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.waarde-card h3 { color: var(--green); margin-bottom: 0.6rem; }
.waarde-card p { font-size: 0.93rem; }

.team { background: var(--white); }
.team-header { text-align: center; margin-bottom: 3rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; display: block; }
.team-card p { font-size: 0.92rem; }

/* ─── Contact ─── */
.contact-page { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block h2 { margin-bottom: 1.5rem; }

.contact-info-group {
  margin-bottom: 2rem;
}
.contact-info-group h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.contact-page .map-placeholder {
  margin-top: 3rem;
  height: 280px;
}

/* ─── Footer ─── */
.site-footer {
  background: #1a2e12;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand .logo { color: var(--cream); font-size: 1.4rem; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-hours dt { font-weight: 500; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.footer-hours dd { font-size: 0.85rem; margin-bottom: 0.4rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-list a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Success message ─── */
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .prijzen-grid { grid-template-columns: repeat(2, 1fr); }
  .fietsen-grid { grid-template-columns: repeat(2, 1fr); }
  .verhaal-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locatie-inner { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .site-nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }

  .usp-bar .container { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .usp-item:last-child { border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: 1fr; }
  .stappen::before { display: none; }
  .waarden-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .fietsen-grid { grid-template-columns: 1fr; }
  .prijzen-grid { grid-template-columns: 1fr; }
}

/* ─── Logo Image ─── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ─── Hero met echte foto ─── */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/exterior.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.38;
}

/* ─── Stalling Sectie ─── */
.stalling-sectie {
  background: var(--green);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.stalling-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.stalling-foto {
  background-image: url('../img/stalling.png');
  background-size: cover;
  background-position: center;
  min-height: 360px;
  position: relative;
}
.stalling-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--green));
}

.stalling-content {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.stalling-content h2 { color: var(--white); }
.stalling-content p { color: rgba(255,255,255,0.75); }

.stalling-voordelen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.stalling-voordeel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
}
.stalling-voordeel-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stalling-prijs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-top: 0.25rem;
}
.stalling-prijs-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.stalling-prijs-bedrag { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #f0c080; }

@media (max-width: 768px) {
  .stalling-inner { grid-template-columns: 1fr; }
  .stalling-foto { min-height: 240px; }
  .stalling-foto::after { background: linear-gradient(to bottom, transparent 60%, var(--green)); }
}

/* ─── Reviews Carousel ─── */
.reviews-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-reviews 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-fade-left,
.reviews-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-fade-left  { left: 0;  background: linear-gradient(to right, var(--cream), transparent); }
.reviews-fade-right { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

/* review-card already defined, just make them fixed width in carousel */
.reviews-track .review-card {
  width: 340px;
  flex-shrink: 0;
}

/* ─── Team Foto ─── */
.team-foto-real {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--border);
}

/* ─── In het nieuws ─── */
.nieuws-banner {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.nieuws-badge {
  background: #d42b2b;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.nieuws-text { font-size: 0.97rem; color: var(--text); }
.nieuws-text strong { color: var(--green); }
.nieuws-link {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.nieuws-link:hover { text-decoration: underline; }

/* ─── Diensten 3-col override ─── */
@media (max-width: 900px) {
  .diensten-grid[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .diensten-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ─── Reparatie intro grid responsive ─── */
@media (max-width: 768px) {
  .reparatie-intro-grid { grid-template-columns: 1fr !important; }
}

/* ─── FAQ Accordion ─── */
.faq-section { background: var(--white); }
.faq-section.alt { background: var(--cream); }

.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-header h2 { margin-bottom: 0.6rem; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-question:hover { color: var(--green); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.4rem 1.1rem;
}
.faq-answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
