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

:root {
  --gold: #E5CE76;
  --gold-light: #d4b04a;
  --footer-blue: #49515E;
  --dark: #1a1a1a;
  --dark2: #2a2a2a;
  --gray-bg: #5a6070;
  --light: #f7f7f5;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: translateY(-3px);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-main {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.8;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: #3a3a3a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s, transform 0.2s, background 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--dark);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active { color: var(--dark); font-weight: 500; }
.nav-link.active::after { transform: scaleX(1); }

.nav-btn {
  background: #3d3d3d;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
  margin-left: 10px;
}

.nav-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 8px 32px 24px;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mobile-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('img/6.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(73, 81, 94, 0.88) 0%,
    rgba(73, 81, 94, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 0 18%;
  padding: 0 24px;
  padding-top: 116px;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 42px;
}

.hero-title .gold {
  color: var(--gold);
}

.about-left h2,
.references h2 {
  color: var(--footer-blue);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-gold {
  background: var(--gold);
  color: #2c353f;
}

.btn-gold:hover {
  background: #f0dc91;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.85);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about .section-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
  margin-bottom: 16px;
}

.section-label.center {
  text-align: center;
}

.section-label.center::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 16px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

h2.center { text-align: center; }
h2.light { color: var(--white); }
.why-partner h2.center { color: var(--footer-blue); }

.center { text-align: center; }

/* ===== ABOUT ===== */
.about {
  padding: 96px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.about-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.stat {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 28px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
}

.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #5c626e;
  font-weight: 500;
}

.spec-box {
  background: #444c5a;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.spec-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.spec-text {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== REFERENCES ===== */
.references {
  padding: 80px 0;
  background: var(--light);
}

.references .container {
  max-width: 1200px;
}

.ref-sub {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 44px;
  margin-top: -10px;
}

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

.reference-logo-card {
  min-height: 180px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.reference-logo-card-white {
  background: var(--white);
}

.reference-logo-card img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  display: block;
}

.reference-logo-maes {
  width: 160px;
}

.reference-logo-total {
  width: 205px;
}

.reference-logo-decat {
  width: 150px;
}

@media (max-width: 760px) {
  .reference-logo-grid {
    grid-template-columns: 1fr;
  }
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 100%;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ref-card {
  position: relative;
  flex: 0 0 calc(33.333% - 13.4px);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

@media (max-width: 900px) {
  .ref-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .ref-card {
    flex: 0 0 100%;
  }
}

.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ref-card:hover img {
  transform: scale(1.04);
}

.carousel-arrow {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--dark);
  font-size: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
  user-select: none;
}

.carousel-arrow:hover {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: #909DB1;
}

.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 44px;
  max-width: 820px;
  margin: 48px auto 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.quote-icon {
  font-size: 72px;
  line-height: 0.8;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
  opacity: 0.85;
}

.t-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.testimonial-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #49515E;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
}

.footer-logo-img {
  height: 118px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.footer-brand {
  margin-left: -10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

.footer-title {
  color: var(--gold) !important;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.footer-col ul li.align-top {
  align-items: flex-start;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.embuild-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.embuild-container a,
.t-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.embuild-logo-img {
  width: 110px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.embuild-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.mobile-break {
  display: none;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .ref-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  
  /* Center home page hero content on mobile */
  .hero {
    justify-content: center;
  }
  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-label {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Split long words on mobile */
  .mobile-break {
    display: inline;
  }
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 42px;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s, transform 0.2s;
  user-select: none;
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  user-select: none;
  z-index: 2010;
}

.lightbox-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }

@media (max-width: 600px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .lightbox-arrow.prev { left: 12px; }
  .lightbox-arrow.next { right: 12px; }
}

/* ===== HERO BANNER (Diensten Page) ===== */
.hero-banner {
  position: relative;
  height: 60vh;
  min-height: 450px;
  background: url('img/8.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 96px; /* Offset for fixed navbar */
}

.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(73, 81, 94, 0.88) 0%,
    rgba(73, 81, 94, 0.78) 100%
  );
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

.hero-banner.hero-banner-diensten .hero-content {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 24px;
}

.hero-banner .hero-label {
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  border-bottom: none;
  padding-bottom: 0;
}

.hero-banner .hero-label::before,
.hero-banner .hero-label::after {
  content: '';
  display: block;
  width: clamp(24px, 5vw, 80px);
  height: 1.5px;
  background: var(--gold);
}

.hero-banner .hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* Removed redundant hero-label size definition */

/* ===== EXPERTISE (Diensten Page) ===== */
.expertise {
  padding: 96px 0;
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.expertise-left .section-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
  margin-bottom: 16px;
}

.expertise-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--footer-blue);
  line-height: 1.2;
  margin-bottom: 24px;
}

.expertise-text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
}

.expertise-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin: 30px 0 36px 0;
}

.expertise-group h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--footer-blue);
  margin: 0 0 14px 0;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon circle,
.check-icon polyline {
  stroke: var(--gold) !important;
}

.expertise-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.expertise-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.expertise-slideshow img.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .expertise {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .expertise-groups {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY PARTNER (Samenwerken Page) ===== */
.why-partner {
  padding: 96px 0;
  background: var(--white);
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.why-content {
  margin-top: 48px;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.highlight-callout {
  border-left: 4px solid var(--gold);
  background: #f8f9fa;
  padding: 28px 32px;
  border-radius: 4px 12px 12px 4px;
  margin: 36px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.highlight-callout p {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}

.text-highlight-cta {
  font-weight: 600;
  color: var(--dark);
  margin-top: 36px;
  font-size: 16px !important;
}

/* ===== CONTACT FORM SECTION (Samenwerken Page) ===== */
.contact-form-section {
  padding: 96px 0;
  background: #909DB1;
}

.contact-form-section.contact-page-form {
  background: var(--white);
}

.contact-sub {
  margin-top: 8px;
  opacity: 0.85;
  font-size: 15px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 56px;
  max-width: 880px;
  margin: 48px auto 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
  margin-bottom: 28px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  background: #f7f8fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--dark);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a6b2;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(223, 186, 89, 0.15);
}

.form-submit-container {
  display: flex;
  justify-content: center;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #49515E;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 44px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  background: #393f4a;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(73, 81, 94, 0.3);
}

.send-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn-submit:hover .send-icon {
  transform: translate(2px, -1px);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .why-partner {
    padding: 64px 0;
  }
  .contact-form-section {
    padding: 64px 0;
  }
}

/* ===== CONTACT INFO SECTION (Contact Page) ===== */
.contact-info-section {
  padding: 80px 0 64px 0;
  background: var(--white);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: #49515E; /* Dark slate blue, matching footer */
  border-radius: 12px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
}

.contact-info-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 10px rgba(223, 186, 89, 0.2);
}

.contact-info-icon {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.contact-info-detail {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.5;
  margin: 0;
}

.contact-info-detail a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-info-detail a:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  .contact-info-section {
    padding: 48px 0;
  }
}

/* ===== LEGAL PAGE ===== */
.legal-section {
  padding: 144px 0 80px 0; /* Clear fixed navbar */
  background: var(--white);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

.legal-content h1 {
  color: var(--footer-blue);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 32px;
}

.legal-content h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}

.legal-content h2 {
  color: var(--footer-blue);
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
}

.legal-content h3 {
  color: var(--footer-blue);
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.legal-content .lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 500;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-light);
  list-style-type: disc;
}

.legal-content a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-content .address-block {
  background: var(--light);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}

.legal-content .address-block p {
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content .address-block p:last-child {
  margin-bottom: 0;
}

.legal-content .last-update {
  margin-top: 48px;
  font-style: italic;
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.8;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner-content {
  width: min(960px, 100%);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  pointer-events: auto;
}

.cookie-banner h2 {
  font-size: 17px;
  color: var(--footer-blue);
  margin: 0 0 6px 0;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--gold);
  color: #2c353f;
}

.cookie-btn-secondary {
  background: #eef0f3;
  color: var(--footer-blue);
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}
