/* Kleurenpalet afgestemd op het Navy logo van Fietsonderhoud Bram */
:root {
  --navy: #0b1a30;            /* Diep navy blauw (hoofdkleur logo) */
  --navy-light: #182d4b;      /* Lichter navy voor hovers/cards */
  --accent: #2563eb;          /* Helder blauw voor opvallende acties */
  --accent-hover: #1d4ed8;
  --bg-light: #f4f7fa;        /* Zachte lichtgrijze/blauwe achtergrond */
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --radius-lg: 18px;          /* Zorgt voor mooie ronde vormen */
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(11, 26, 48, 0.05);
  --shadow-md: 0 10px 25px rgba(11, 26, 48, 0.08);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigatie */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 26, 48, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent);
}

.instagram-nav {
  color: #e1306c !important;
  font-weight: 600;
}

/* Knoppen Algemeen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.btn-hero {
  background: var(--accent);
  color: white;
  font-size: 1.05rem;
  padding: 14px 28px;
}

.btn-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-block {
  width: 100%;
}

/* Hero Sectie */
.hero {
  background: 
    linear-gradient(
      135deg, 
      rgba(11, 26, 48, 0.92) 0%,   
      rgba(20, 45, 80, 0.88) 100%  
    ),
    url('images/colnago v4rs.jpg');
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  padding: 120px 0;
}

.hero-content {
  max-width: 800px;
}

/* BADGES / PILLS VERBERGEN */
.badge,
.card-tag {
  display: none !important;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Secties Generiek */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 45px auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.bg-light {
  background-color: var(--bg-light);
  border-radius: 30px;
}

/* Over Mij */
.about-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid rgba(11, 26, 48, 0.05);
}

.about-card h2 {
  color: var(--navy);
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 26, 48, 0.05);
}

.highlight-card h4 {
  margin: 0 0 4px 0;
  color: var(--navy);
  font-size: 1rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.highlight-icon {
  font-size: 1.4rem;
  background: var(--bg-light);
  padding: 8px;
  border-radius: 8px;
}

.about-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.about-image {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img, 
.img-responsive {
  width: 100%;
  max-width: 450px;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: var(--radius-md, 16px);
  box-shadow: 0 10px 30px rgba(11, 26, 48, 0.12);
}

/* --- MODERNE DIENSTEN RASTER (3 KAARTEN) --- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Kaart Basis */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 28px;
  border: 1px solid rgba(11, 26, 48, 0.08);
  box-shadow: 0 10px 30px rgba(11, 26, 48, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;       /* Horizontaal centreren */
  text-align: center;        /* Tekst centreren */
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 26, 48, 0.12);
  border-color: rgba(11, 26, 48, 0.15);
}

.service-card.highlight {
  border: 2px solid #2563eb;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card.highlight .icon-wrapper {
  background-color: #2563eb;
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b1a30;
  margin-bottom: 12px;
}

.card-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* BALKJES / KNOPPEN ONDERAAN KAARTEN */
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: auto;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #0b1a30 !important;
  color: #ffffff !important;
  border: none;
}

.btn-primary:hover {
  background-color: #182d4b !important;
  box-shadow: 0 6px 15px rgba(11, 26, 48, 0.25);
}

.btn-accent {
  background-color: #2563eb !important;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-accent:hover {
  background-color: #1d4ed8 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background-color: #f1f5f9 !important;
  color: #0b1a30 !important;
  border: 2px solid #0b1a30 !important;
}

.btn-outline:hover {
  background-color: #0b1a30 !important;
  color: #ffffff !important;
}

/* --- PRIJZENTABEL (ALGEMENE PRIJZEN GECENTREERD) --- */

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;       /* Centreert knop en inhoud in de prijskaart */
  text-align: center;
  box-sizing: border-box;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card h3 {
  color: var(--navy);
  margin: 0;
  text-align: center;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin: 15px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
  flex-grow: 1;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Zorgt dat de knoppen onderin de prijskaarten netjes gecentreerd staan */
.price-card .btn,
.price-card .btn-primary,
.price-card .btn-outline {
  width: 100%;
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

/* Afspraken Formulier */
.appointment-form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Portfolio / Foto's */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.portfolio-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.portfolio-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.portfolio-caption {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* Cal.com Agendasysteem */
.cal-embed-wrapper {
  width: 100%;
  max-width: 1100px;
  height: 850px;
  margin: 35px auto 0 auto;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(11, 26, 48, 0.1);
  border: 1px solid rgba(11, 26, 48, 0.08);
  background: #ffffff;
}

.cal-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 20px 0;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo Vergroten & Opschonen */
.footer-brand h3 {
  display: none !important; /* Verbergt de tekst als die er nog staat */
}

.footer-logo,
footer .footer-brand img {
  max-width: 240px;          /* Vergroot het logo (was 160px) */
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}


.footer-brand p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-logo,
footer img {
  max-width: 160px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.instagram-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: var(--transition);
}

.instagram-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.footer-contact h4,
.footer-map h4 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.footer-contact p {
  color: #cbd5e1;
  margin: 8px 0;
}

.footer-contact a {
  color: #60a5fa;
  text-decoration: none;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  display: block;
}

.btn-maps-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm, 8px);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-maps-nav:hover {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  padding-top: 20px;
  color: #64748b;
  font-size: 0.85rem;
}

/* Responsieve Instellingen (Tablets & Mobiel) */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    gap: 15px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .cal-embed-wrapper {
    height: 750px;
    border-radius: var(--radius-md, 12px);
  }
}
/* Hide mobile-only elements on desktop */
.mobile-only {
  display: none !important;
}

/* Hide mobile-only elements on desktop */
.mobile-only {
  display: none !important;
}

/* ===================================================
   MINIMALISTISCH, RUSTIG & OVERZICHTELIJK MOBIEL DESIGN
   =================================================== */

@media (max-width: 768px) {

  /* 1. Algemene basis - Schoon & Ruim */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    background-color: #f8fafc !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .section {
    padding: 32px 0 !important;
  }

  /* 2. Rustige Titels */
  .section-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    margin: 0 auto 6px auto !important;
    color: #0f172a !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    color: #64748b !important;
    max-width: 90% !important;
  }

  /* 3. Header & Navigation */
  header {
    background: #ffffff !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }

  .navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  /* 4. Hero Sectie */
  .hero h1 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    color: #0f172a !important;
  }

  .hero p {
    font-size: 0.88rem !important;
    color: #64748b !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
  }

  .hero .btn {
    display: inline-block !important;
    width: 100% !important;
    max-width: 280px !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
  }

  /* 5. SWIPESTROKEN: Diensten, Tarieven én Werkplaats Foto's */
  .services-grid, 
  .pricing-table,
  .gallery-grid,
  .werkplaats-grid,
  .photos-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    /* Extra padding-top (18px) zodat uitstekende badges niet worden afgesneden */
    padding: 18px 20px 16px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar,
  .pricing-table::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .werkplaats-grid::-webkit-scrollbar,
  .photos-grid::-webkit-scrollbar {
    display: none !important;
  }

  .service-card, 
  .price-card,
  .gallery-grid img,
  .werkplaats-grid img,
  .photos-grid img,
  .gallery-item {
    flex: 0 0 80% !important;
    scroll-snap-align: center;
    box-sizing: border-box !important;
    border-radius: 12px !important;
  }

  /* Specifiek voor de kaarten (diensten & tarieven) */
  .service-card, 
  .price-card {
    position: relative !important;
    overflow: visible !important; /* Voorkomt het afsnijden van 'Meest gekozen' badge */
    padding: 24px 16px 20px 16px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  /* FIX VOOR MEEST GEKOZEN BADGE OP MOBIEL */
  .badge-popular,
  .popular-badge,
  .badge-meest-gekozen,
  .price-card .badge,
  .service-card .badge {
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    max-width: 90% !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
  }

  .service-card h3,
  .price-card h3 {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
  }

  .price-card .price {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 8px 0 !important;
  }

  .price-card ul {
    padding: 0 !important;
    list-style: none !important;
    margin: 12px 0 !important;
  }

  .price-card li {
    font-size: 0.82rem !important;
    color: #64748b !important;
    padding: 4px 0 !important;
    border-bottom: 1px solid #f8fafc;
  }

  .card-btn,
  .price-card .btn {
    display: block !important;
    width: 100% !important;
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
  }

  /* Specifiek voor de werkplaats foto's */
  .gallery-grid img,
  .werkplaats-grid img,
  .photos-grid img {
    width: 80% !important;
    height: 220px !important;
    object-fit: cover !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  }

  /* 6. PERFEKT GECENTREERD 'WIE BEN IK' BLOK */
  .about,
  .about-section,
  #over-mij,
  #wie-ben-ik {
    text-align: center !important;
  }

  .about-card,
  .about-content,
  .about-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 24px 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .about-img,
  .about-card img,
  .about-avatar,
  .profile-img {
    display: block !important;
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto 16px auto !important;
    border: 2px solid #e2e8f0 !important;
  }

  .about-card h2,
  .about-card h3,
  .about-content h2,
  .about-content h3 {
    text-align: center !important;
    margin: 0 auto 10px auto !important;
    font-size: 1.25rem !important;
    color: #0f172a !important;
  }

  .about-card p,
  .about-content p {
    text-align: center !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: #475569 !important;
    margin: 0 auto 12px auto !important;
  }

  /* 7. Footer */
  footer {
    background: #1e293b !important;
    color: #94a3b8 !important;
    padding: 28px 0 20px 0 !important;
    text-align: center !important;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .footer-logo {
    max-height: 36px !important;
    width: auto !important;
    margin: 0 auto !important;
    opacity: 0.9;
  }

  /* ===================================================
     EXACTE FIX VOOR 'WIE BEN IK' (.about-grid)
     =================================================== */

  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .about-image {
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 220px !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .about-text {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .about-text .badge {
    display: inline-block !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
  }

  .about-text h2 {
    font-size: 1.3rem !important;
    text-align: center !important;
    margin: 0 auto 10px auto !important;
    line-height: 1.3 !important;
  }

  .about-text p {
    text-align: center !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 auto 8px auto !important;
  }

  /* ===================================================
     HERO SECTIE FIX: BLAUWE BLOK + FIETSACHTERGROND
     =================================================== */

  .hero {
    background-color: var(--navy, #0f172a) !important;
    background-image: linear-gradient(
                        rgba(15, 23, 42, 0.75), 
                        rgba(15, 23, 42, 0.75)
                      ), 
                      url("images/hero-bg.jpg") !important;
    
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    
    padding: 40px 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-bottom: none !important;
  }

  .hero h1 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
  }

  .hero p {
    color: #e2e8f0 !important;
    font-size: 0.92rem !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
  }

  .hero .btn {
    display: inline-block !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  }

  /* ===================================================
     STRAKKE MENU-KNOPPEN BOVENAAN (MOBIEL)
     =================================================== */

  nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  nav a {
    display: inline-block !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: var(--navy, #0f172a) !important;
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  nav a[href*="afspraak"],
  nav a[href*="boeken"] {
    background-color: var(--navy, #0f172a) !important;
    color: #ffffff !important;
    border-color: var(--navy, #0f172a) !important;
  }

  /* ===================================================
     EXACTE FIX VOOR FOTO'S UIT DE WERKPLAATS (.portfolio-grid)
     =================================================== */

  .portfolio-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 8px 20px 16px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .portfolio-grid::-webkit-scrollbar {
    display: none !important;
  }

  .portfolio-item {
    flex: 0 0 78% !important;
    max-width: 280px !important;
    scroll-snap-align: center !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  .portfolio-item img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .portfolio-caption {
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  /* ===================================================
     GROTER LOGO OP MOBIEL
     =================================================== */

  .logo-img, 
  .navbar img,
  header img {
    display: block !important;
    height: auto !important;
    max-height: 75px !important;
    width: auto !important;
    max-width: 90vw !important;
    margin: 8px auto 12px auto !important;
    object-fit: contain !important;
  }

  /* ===================================================
     MAXIMALE GEBRUIKSVRIENDELIJKHEID & OVERZICHT CAL.COM
     =================================================== */

  #afspraak {
    padding: 12px 0 24px 0 !important;
  }

  .cal-embed-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: max(650px, 82vh) !important; 
    margin: 0 auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05) !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .cal-embed-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    transform: scale(1.02) !important;
    transform-origin: top center !important;
  }
}