/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark:    #1a2e4a;
  --blue-mid:     #24436e;
  --blue-light:   #2d5a9e;
  --orange:       #f5820d;
  --orange-hover: #d96f00;
  --white:        #ffffff;
  --gray-light:   #f4f6f9;
  --gray-mid:     #e2e8f0;
  --gray-text:    #5a6a7e;
  --text-dark:    #1a2e4a;
  --shadow:       0 4px 20px rgba(26, 46, 74, 0.12);
  --radius:       8px;
  --transition:   0.25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 3rem;
  max-width: 620px;
}

.section-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  margin: 0.5rem auto 3rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo-afbeelding in de navbar */
.navbar .logo-img {
  height: 58px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* Logo-afbeelding in de footer */
.footer .logo-img {
  height: 66px;
  width: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Telefoonnummer in navbar */
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(245, 130, 13, 0.15);
  border: 1.5px solid var(--orange);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.navbar-phone i {
  color: var(--orange);
  font-size: 0.9rem;
}

.navbar-phone:hover {
  background: var(--orange);
  color: #ffffff;
}

.navbar-phone:hover i {
  color: #ffffff;
}

/* Verberg volledig op mobiel */
@media (max-width: 768px) {
  .navbar-phone { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-links .btn-nav:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.nav-links .btn-nav::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000000;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 1.5rem;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 1.5rem;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }

  .nav-links .btn-nav {
    margin-top: 0.75rem;
    width: 100%;
    text-align: center;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Video-hero variant */
.hero-video {
  background: var(--blue-dark);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

/* Achtergrondvideo: vult de volledige hero, geen scroll mee */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Donkere overlay – sterker aan de linkerkant waar de tekst staat */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(16, 30, 50, 0.82) 0%,
    rgba(16, 30, 50, 0.55) 55%,
    rgba(16, 30, 50, 0.25) 100%
  );
  z-index: 1;
}

/* Content boven video en overlay */
.hero-video-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
}

.hero-video .hero-content {
  max-width: 640px;
}

.hero-content .tag {
  display: inline-block;
  background: rgba(245, 130, 13, 0.2);
  color: var(--orange);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

/* Hero H1 – primaire zoekterm, groot en scherp */
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.hero-content h1 span {
  color: #ffaa44;
  white-space: nowrap;
}

/* SEO-label boven de H1 */
.hero-content .tag {
  display: inline-block;
  background: rgba(245, 130, 13, 0.22);
  color: #ffcc77;
  border: 1px solid rgba(245, 130, 13, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Ondersteuningsparagraaf – helder wit, leesbaar */
.hero-body {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #eef2ff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

/* Vertrouwenslijst */
.hero-trust {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.hero-trust li i {
  color: #ffaa44;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== WHATSAPP ZWEVENDE KNOP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.whatsapp-btn i {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Op kleine schermen: enkel icoon, geen tekst */
@media (max-width: 480px) {
  .whatsapp-btn {
    padding: 0.85rem;
    border-radius: 50%;
  }
  .whatsapp-label {
    display: none;
  }
}

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

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-image { display: none; }
  .hero { padding: 4rem 0; }
  .hero-video { min-height: 80vh; }
  .hero-video-content { padding: 4rem 0; }
}

/* ===== GELUID KNOP OP HERO ===== */
.sound-btn {
  position: absolute;
  bottom: 6rem;
  right: 1.75rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.sound-btn:hover {
  background: rgba(245, 130, 13, 0.7);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* ===== USP STRIP ===== */
.usp-strip {
  background: var(--orange);
  padding: 1.25rem 0;
}

.usp-strip .container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.usp-item i {
  font-size: 1rem;
}

/* ===== ABOUT INTRO (homepage) ===== */
.about-intro {
  padding: 5rem 0;
  background: var(--white);
}

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-img img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-intro-text .tag {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.about-intro-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  line-height: 1.25;
}

.about-intro-text p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.about-intro-text .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-intro .container { grid-template-columns: 1fr; }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 5rem 0;
  background: var(--gray-light);
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 46, 74, 0.15);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 46, 74, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--blue-dark);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--blue-dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-card .card-link:hover {
  gap: 0.7rem;
}

/* ===== WHY US ===== */
.why-us {
  padding: 5rem 0;
  background: var(--blue-dark);
  color: var(--white);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1rem;
}

.why-card i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--orange) 0%, #e0700a 100%);
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== OVER ONS – POËTISCHE TEKSTSTIJLEN ===== */
.about-poem {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--gray-text);
  line-height: 1.9;
  border-left: 3px solid var(--orange);
  padding-left: 1.1rem;
  margin-bottom: 1.4rem;
}

.about-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.about-answer {
  display: block;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.05em;
  margin-top: 0.2rem;
}

.about-answer em {
  font-style: normal;
  font-size: 1.1em;
}

/* ===== OVER ONS PAGE ===== */
.about-section {
  padding: 5rem 0;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-section .container { grid-template-columns: 1fr; }
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.about-section p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.about-section img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Values */
.values-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
}

/* Team */
.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.team-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
}

/* ===== VAKWERK IN BEELD ===== */
.vakwerk-section {
  background: var(--white);
}

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

.vakwerk-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.vakwerk-text p {
  color: var(--gray-text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.vakwerk-text strong {
  color: var(--blue-dark);
  font-weight: 600;
}

.vakwerk-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .vakwerk-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vakwerk-img img {
    height: 300px;
  }
}

/* ===== DIENSTEN PAGE ===== */
.services-page {
  padding: 5rem 0;
  background: var(--white);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
}

@media (max-width: 580px) {
  .services-page-grid { grid-template-columns: 1fr; }
}

.service-detail-card {
  background: var(--gray-light);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-detail-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--blue-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-icon i {
  font-size: 1.7rem;
  color: var(--white);
}

.service-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.service-detail-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.service-detail-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1.25rem;
}

.service-detail-card ul li {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 0.3rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-info h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-detail .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(26, 46, 74, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon-box i {
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-detail span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 158, 0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit .btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: #2d7a40;
  background: #edfaf1;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 600;
}

/* Map placeholder */
.map-section {
  padding: 0 0 5rem;
}

.map-placeholder {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.95rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 0;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--orange);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  padding: 0.7rem 0;
  font-size: 0.82rem;
  color: var(--gray-text);
}

.breadcrumb a {
  color: var(--blue-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ===== RESPONSIVE: TABLET (max 1024px) ===== */
@media (max-width: 1024px) {

  /* Secties iets minder hoog padding */
  .about-intro,
  .services,
  .why-us,
  .about-section,
  .values-section,
  .team-section,
  .services-page,
  .contact-section { padding: 3.5rem 0; }

  /* About-intro: twee kolommen iets dichter */
  .about-intro .container { gap: 2.5rem; }

  /* About-sectie over-ons: gap verkleinen */
  .about-section .container { gap: 2.5rem; }

  /* Vakwerk: gap verkleinen */
  .vakwerk-grid { gap: 2.5rem; }
  .vakwerk-img img { height: 400px; }

  /* Hero content breder op tablet */
  .hero-video .hero-content { max-width: 100%; }

  /* Diensten kaarten: één kolom op tablet */
  .services-page-grid { grid-template-columns: 1fr; }

  /* Footer: twee kolommen op tablet */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* CTA banner titel */
  .cta-banner h2 { font-size: 1.6rem; }
}

/* ===== RESPONSIVE: MOBIEL (max 768px) ===== */
@media (max-width: 768px) {

  /* Secties compacter */
  .about-intro,
  .services,
  .why-us,
  .about-section,
  .values-section,
  .team-section,
  .services-page,
  .contact-section { padding: 3rem 0; }

  .cta-banner { padding: 2.5rem 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p  { font-size: 0.95rem; }

  /* Section titles */
  .section-title { font-size: 1.6rem; }

  /* Hero */
  .hero-video { min-height: 85vh; }
  .hero-video-content { padding: 3rem 0 4rem; }
  .hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero-body { font-size: 0.92rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; text-align: center; }

  /* USP strip: twee per rij */
  .usp-strip .container { gap: 1rem; justify-content: flex-start; }
  .usp-item { flex: 0 0 calc(50% - 0.5rem); }

  /* About intro: foto bovenaan, tekst eronder */
  .about-intro .container { grid-template-columns: 1fr; gap: 2rem; }

  /* About-intro afbeelding op mobiel iets kleiner */
  .about-intro-img img { max-height: 280px; width: 100%; object-fit: cover; }

  /* Vakwerk: foto boven tekst */
  .vakwerk-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vakwerk-img { order: -1; }
  .vakwerk-img img { height: 260px; }

  /* Diensten detail kaarten: icoon boven tekst */
  .service-detail-card { flex-direction: column; }

  /* Contactformulier padding verkleinen */
  .contact-form { padding: 1.5rem; }

  /* Footer één kolom */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: auto; }

  /* Sound knop: iets hoger zodat hij boven WhatsApp uitkomt */
  .sound-btn { bottom: 6.5rem; right: 1rem; }
}

/* ===== RESPONSIVE: KLEIN MOBIEL (max 480px) ===== */
@media (max-width: 480px) {

  .container { width: 94%; }

  /* Hero */
  .hero-video { min-height: 90vh; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-trust { display: none; }

  /* USP strip: één per rij */
  .usp-item { flex: 0 0 100%; }

  /* Page hero */
  .page-hero { padding: 2.5rem 0; }
  .page-hero h1 { font-size: 1.5rem; }

  /* Diensten kaarten grid: één kolom */
  .services-grid { grid-template-columns: 1fr; }

  /* Values grid: één kolom */
  .values-grid { grid-template-columns: 1fr; }

  /* Logo iets kleiner op kleine schermen */
  .navbar .logo-img { height: 46px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
