/* ============================================
   P&P Service B.V. — Light Premium Theme
   Matching current WP/Elementor design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a2e4a;
  --navy-dark: #171c24;
  --navy-light: #3a5a8a;
  --gold: #FFC131;
  --gold-hover: #FFD060;
  --orange: #FD6D00;
  --white: #FFFFFF;
  --light-bg: #f5f7fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c8ced8;
  --gray-text: #5a6478;
  --gray-light: #94a3b8;

  --font-heading: 'Domine', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { color: var(--gray-text); font-size: 0.95rem; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-light);
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--light-bg); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: var(--gray-300); }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-300); }
.section--navy .label, .section--dark .label { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,193,49,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn--small { padding: 0.65rem 1.5rem; font-size: 0.85rem; }

/* --- Navigation (WHITE, like WP) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav--scrolled {
  box-shadow: var(--shadow);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__brand h3 {
  font-size: 1.1rem;
  margin: 0;
}
.nav__brand-text span {
  font-size: 0.75rem;
  color: var(--gray-text);
}
.nav__logo {
  height: 85px;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 2px;
}
.lang-btn {
  padding: 0.3rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-light);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { background: var(--gold); color: var(--navy-dark); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav__hamburger span { width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero (LIGHT, split layout like WP) --- */
.hero {
  padding-top: 95px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
  padding: 3rem 0;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__title {
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero__title em {
  font-style: normal;
  color: var(--navy-light);
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,74,0.05), transparent);
  z-index: 1;
  border-radius: var(--radius-lg);
}

/* Page hero (subpages) */
.hero--page {
  background: var(--navy);
  padding: 95px 0 0;
  min-height: auto;
  border: none;
  margin-bottom: -1px;
}
.hero--page .hero__inner {
  min-height: 35vh;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero--page .hero__title { color: var(--white); }
.hero--page .hero__subtitle { color: var(--gray-300); margin: 0 auto 2rem; max-width: 600px; }

/* --- Stats Bar --- */
.stats-bar { padding: 3rem 0; border-bottom: 1px solid var(--gray-200); }
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.stat__label { font-size: 0.85rem; color: var(--gray-text); margin-top: 0.25rem; }

/* --- Section Header --- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header .label { margin-bottom: 0.5rem; display: block; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1rem; }

/* --- Service Cards (Kustermans-style) --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  padding-top: 2rem;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,46,74,0.12);
  border-color: var(--navy-light);
}
.service-card__icon,
.service-card__icon-svg {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.2rem;
  width: 42px;
  height: 42px;
  color: var(--navy-light);
  line-height: 1;
  transition: all 0.35s ease;
  opacity: 0.4;
}
.service-card:hover .service-card__icon,
.service-card:hover .service-card__icon-svg {
  color: var(--gold);
  opacity: 0.7;
  transform: scale(1.05);
}
.service-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.service-card__list {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  flex: 1;
}
.service-card__list li {
  font-size: 0.84rem;
  color: var(--gray-text);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.service-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--navy-light);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-top: auto;
  transition: color 0.2s;
}
.service-card:hover .service-card__link { color: var(--navy); }

/* --- USP Grid (Kustermans-style) --- */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.usp-item {
  text-align: left;
  padding: 0;
}
.usp-item__icon {
  font-size: 2.2rem;
  color: var(--navy-light);
  margin-bottom: 0.75rem;
  display: block;
}
.usp-item__icon-svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--navy-light);
  margin-bottom: 0.75rem;
  display: block;
  transition: color 0.3s, transform 0.3s;
}
.usp-item:hover .usp-item__icon-svg {
  color: var(--gold);
  transform: scale(1.1);
}
.usp-item__title {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  line-height: 1.3;
}
.usp-item__text { font-size: 0.88rem; line-height: 1.6; }

/* --- Client Marquee --- */
.client-marquee { overflow: hidden; padding: 2rem 0; position: relative; }
.client-marquee::before,
.client-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2;
}
.client-marquee::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.client-marquee::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.section--gray .client-marquee::before { background: linear-gradient(to right, var(--light-bg), transparent); }
.section--gray .client-marquee::after { background: linear-gradient(to left, var(--light-bg), transparent); }
.client-track {
  display: flex;
  gap: 3rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.client-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  filter: grayscale(100%) opacity(0.4);
  transition: var(--transition);
}
.client-logo-item:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
.client-logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Client Grid (referenties) */
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.client-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition);
}
.client-logo img { max-width: 100%; max-height: 50px; object-fit: contain; filter: grayscale(40%); transition: var(--transition); }
.client-logo:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.client-logo:hover img { filter: grayscale(0%); }
.client-logo--dark { background: var(--navy) !important; }
.client-logo--dark img { filter: brightness(1) !important; }
.client-logo span { font-size: 0.8rem; font-weight: 600; color: var(--navy); text-align: center; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card__text { font-size: 0.93rem; font-style: italic; line-height: 1.8; color: var(--navy); margin-bottom: 1.25rem; }
.testimonial-card__author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--gray-light); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__glow { display: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--gray-300); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 1rem; }

/* --- Footer --- */
.footer { background: var(--navy-dark); color: var(--white); padding: 4rem 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo { height: 65px; margin-bottom: 1rem; }
.footer__brand h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--white); }
.footer__brand p { color: var(--gray-300); font-size: 0.88rem; }
.footer__kvk { font-size: 0.8rem; color: var(--gray-light); margin-top: 0.75rem; }
.footer h4 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--white); }
.footer__links a { display: block; color: var(--gray-300); font-size: 0.88rem; padding: 0.3rem 0; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.88rem; color: var(--gray-300); }
.footer__contact-icon { color: var(--gold); }
.footer__contact-item a { color: var(--gray-300); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* --- Service Detail (diensten) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail__visual { border-radius: var(--radius-lg); height: 340px; overflow: hidden; }
.service-detail__visual.has-image { font-size: 0; }
.service-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); transition: transform 0.6s ease; }
.service-detail:hover .service-img { transform: scale(1.04); }
.service-detail__content h3 { margin-bottom: 0.75rem; }
.service-detail__content > p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.service-detail__list { margin-bottom: 1.25rem; }
.service-detail__list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-detail__list li::before {
  content: '✓';
  color: var(--white);
  background: var(--navy-light);
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}

/* --- About --- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual { border-radius: var(--radius-lg); height: 400px; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-card__icon {
  width: 64px; height: 64px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 860px; margin: 0 auto; }
.team-card {
  text-align: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card__photo {
  background: var(--light-bg);
  padding: 2rem 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__avatar {
  background: var(--light-bg);
  padding: 2rem 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card__avatar span {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.team-card__body { padding: 1.75rem; }
.team-card h4 { margin-bottom: 0.25rem; font-size: 1.15rem; }
.team-card__role { font-size: 0.8rem; font-weight: 600; color: var(--navy-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.875rem; line-height: 1.7; color: var(--gray-text); }
.team-card__contact { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.team-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--navy); border: 1.5px solid var(--gray-200);
  padding: 0.4rem 0.9rem; border-radius: 20px;
  transition: var(--transition);
}
.team-card__link:hover { border-color: var(--gold); color: var(--navy); background: rgba(255,193,49,0.08); }
.company-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.detail-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.detail-box__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.4rem; font-weight: 600; }
.detail-box__value { font-family: var(--font-heading); font-size: 1rem; color: var(--white); }

/* --- Forms --- */
.form { max-width: 600px; }
.form__group { margin-bottom: 1.25rem; }
.form__label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: var(--transition);
  outline: none;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,46,74,0.08);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Contact --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info__item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-info__icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(255,193,49,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
}
.contact-info__text h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 0.1rem; }
.contact-info__text p { font-size: 0.88rem; color: var(--gray-300); }
.contact-info__text a { color: var(--gray-300); }
.contact-info__text a:hover { color: var(--gold); }
.contact-hours { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-hours h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 0.75rem; }
.contact-hours__row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--gray-300); padding: 0.25rem 0; }
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.industry-card h4 { margin-bottom: 0.3rem; }
.industry-card p { font-size: 0.85rem; }

/* --- section--slate (USPs, testimonials) --- */
.section--slate { background: var(--light-bg); }

/* --- WhatsApp CTA Card (after hero) --- */
.whatsapp-cta {
  background: var(--navy);
  padding: 2.5rem 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  padding-bottom: 4rem;
}
.whatsapp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.whatsapp-cta__text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.whatsapp-cta__text span {
  color: var(--gold);
}
.whatsapp-cta__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.whatsapp-cta__actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.btn--whatsapp {
  background: #25D366 !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  background: #1da851 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.btn--phone {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
}
.btn--phone:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* --- Diagonal clip-path sections --- */
.section--angled {
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-top: -30px;
}
.section--angled-top {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
  padding-top: 6rem;
  margin-top: -30px;
}
.section--angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  padding-bottom: 6rem;
}

/* --- Legal pages --- */
.legal-content h3 { margin: 2rem 0 0.75rem; font-size: 1.1rem; }
.legal-content p { margin-bottom: 1rem; font-size: 0.93rem; line-height: 1.8; }
.legal-content ul { margin: 0.5rem 0 1.5rem 1.5rem; }
.legal-content li { font-size: 0.93rem; color: var(--gray-text); padding: 0.25rem 0; line-height: 1.6; }

/* --- Werkgebied --- */
.werkgebied__cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.werkgebied__region h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.werkgebied__region ul {
  list-style: none;
  padding: 0;
}
.werkgebied__region li {
  color: var(--gray-300);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.werkgebied__region li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.werkgebied__hq {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.werkgebied__note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}
.werkgebied__note p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin: 0;
}

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

/* --- Pills --- */
.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0 1.25rem; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.pill--navy { background: var(--navy); color: var(--white); }
.pill--navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.pill--gold { background: rgba(255,193,49,0.14); color: var(--navy); border: 1px solid rgba(255,193,49,0.4); }
.pill--gold:hover { background: rgba(255,193,49,0.28); transform: translateY(-1px); }
.pill--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200); }
.pill--outline:hover { border-color: var(--navy-light); transform: translateY(-1px); }
.pill--cert { background: var(--gold); color: var(--navy-dark); font-weight: 700; }
.section--dark .pill--cert, .section--navy .pill--cert { background: var(--gold); color: var(--navy-dark); }

/* --- Animations (with noscript safety) --- */
.js-loaded .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.js-loaded .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal-left.visible { opacity: 1; transform: translateX(0); }
.js-loaded .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal-right.visible { opacity: 1; transform: translateX(0); }
.js-loaded .reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-loaded .reveal-scale.visible { opacity: 1; transform: scale(1); }
.js-loaded .stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-loaded .stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.js-loaded .stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.js-loaded .stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.js-loaded .stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.js-loaded .stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.js-loaded .stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.js-loaded .stagger.visible > * { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { max-height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .company-details { grid-template-columns: repeat(2, 1fr); }
  .section--navy .label, .section--dark .label { color: var(--gold); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .whatsapp-cta__inner { flex-direction: column; text-align: center; }
  .whatsapp-cta__text { font-size: 1.1rem; }
  .whatsapp-cta__actions { justify-content: center; }
  .section--angled { clip-path: polygon(0 15px, 100% 0, 100% calc(100% - 15px), 0 100%); margin-top: -15px; padding-top: 4rem; padding-bottom: 4rem; }
  .section--angled-top { clip-path: polygon(0 15px, 100% 0, 100% 100%, 0 100%); margin-top: -15px; }
  .whatsapp-cta { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 0 100%); padding-bottom: 2.5rem; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 100px 2rem 2rem;
    transition: 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }
  .nav__links.open { right: 0; }
  .nav__hamburger { display: flex; }
  .hero__inner { min-height: 60vh; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .testimonials-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; }
  .hero__actions { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .company-details { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
