/* ═══════════════════════════════════════════════════════════════
   Sliedrecht Montage B.V. – Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

:root {
  --red: #CC1111;
  --red-dark: #9E0A0A;
  --red-light: #E82020;
  --gray-dark: #1C1C1C;
  --gray-mid: #3A3A3A;
  --gray: #6B6B6B;
  --gray-light: #C8C8C8;
  --gray-pale: #F0F0F0;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-deep: 0 8px 40px rgba(0,0,0,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--gray-pale);
  color: var(--gray-dark);
  overflow-x: hidden;
}

/* ─── TOP BAR ────────────────────────────────────────────────── */
.topbar {
  background: var(--gray-dark);
  color: var(--gray-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px;
}
.topbar a { color: var(--gray-light); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar-left  { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-badge {
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
header {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 88px;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
}
.logo-wrap img { height: 124px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text .sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ─── MAIN NAV ───────────────────────────────────────────────── */
nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background .2s, color .2s;
  position: relative;
}
nav.main-nav a:hover,
nav.main-nav a.active { background: var(--red); color: var(--white); }
nav.main-nav a.cta-btn { background: var(--red); color: var(--white); margin-left: 8px; }
nav.main-nav a.cta-btn:hover { background: var(--red-dark); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-deep);
  min-width: 220px;
  z-index: 2000;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.82rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-pale);
  transition: background .15s, color .15s;
  letter-spacing: 0.06em;
}
.dropdown-menu a:hover { background: var(--gray-pale); color: var(--red); }

/* ─── HERO (HOME) ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--gray-dark);
}
.slideshow { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide-1 { background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 50%, #5a2020 100%); }
.slide-2 { background: linear-gradient(135deg, #2a2a2a 0%, #4a1a1a 50%, #CC1111 100%); }
.slide-3 { background: linear-gradient(135deg, #111 0%, #444 60%, #222 100%); }
.slide-4 { background: linear-gradient(135deg, #3a2a2a 0%, #1a1a1a 50%, #4a1a1a 100%); }
.slide-5 { background: linear-gradient(135deg, #2a2a2a 0%, #5a2010 50%, #1a1a1a 100%); }
.slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-placeholder-label {
  position: absolute;
  bottom: 80px; right: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%; left: 60px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 520px;
}
.hero-content .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 10px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* Slide indicators */
.slide-dots { position: absolute; bottom: 24px; left: 60px; z-index: 4; display: flex; gap: 8px; }
.dot {
  width: 28px; height: 4px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background .3s, width .3s;
  border-radius: 2px;
}
.dot.active { background: var(--red); width: 44px; }

/* Slide captions */
.slide-caption { position: absolute; bottom: 60px; right: 40px; z-index: 4; display: flex; gap: 8px; }
.caption-item {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  transition: background .2s;
  border-radius: 2px;
  text-decoration: none;
}
.caption-item:hover { background: var(--red); }

/* ─── TRUST BAR (hero bottom) ───────────────────────────────── */
.hero-trust-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--red);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: default;
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(204,17,17,0.25); }
.trust-item svg { width: 22px; height: 22px; fill: none; stroke: var(--red-light); stroke-width: 1.8; flex-shrink: 0; }
.trust-item-text { display: flex; flex-direction: column; }
.trust-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}
.trust-item-sub { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-top: 2px; letter-spacing: 0.04em; }

/* ─── SERVICES STRIP ─────────────────────────────────────────── */
.services-strip {
  background: var(--gray-dark);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 3px solid var(--red);
}
.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 8px;
  cursor: pointer;
  transition: background .2s;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.service-tab:last-child { border-right: none; }
.service-tab:hover { background: var(--red); }
.service-tab svg { width: 26px; height: 26px; stroke: var(--gray-light); fill: none; stroke-width: 1.5; transition: stroke .2s; }
.service-tab:hover svg { stroke: white; }
.service-tab span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.3;
  transition: color .2s;
}
.service-tab:hover span { color: white; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ─── SECTION TITLES ─────────────────────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
h2.section-title span { color: var(--red); }
.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

/* ─── CERTIFICATIONS ─────────────────────────────────────────── */
.cert-strip {
  background: #f7f7f7;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 40px;
  overflow: hidden;
}
.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cert-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--gray-dark);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.cert-badge:hover { border-color: var(--red); color: var(--red); }
.cert-badge .dot-cert { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.vca-badge { background: var(--gray-dark); color: white !important; border-color: var(--gray-dark) !important; font-size: 0.82rem; gap: 8px; }
.vca-badge:hover { background: #111 !important; border-color: var(--red) !important; }
.vca-badge .dot-cert { background: var(--red); }
.vca-badge .vca-check { width: 16px; height: 16px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vca-badge .vca-check::after { content: '✓'; font-size: 10px; color: white; font-weight: 900; line-height: 1; }

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { font-size: 0.96rem; line-height: 1.78; color: var(--gray-mid); margin-bottom: 16px; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 4px; display: block; object-fit: cover; height: 340px; }
.about-image-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.06em;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  border: 3px solid var(--red);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}
.about-image img, .about-image-placeholder { position: relative; z-index: 1; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-light); margin-top: 40px; border: 1px solid var(--gray-light); }
.stat-item { background: var(--white); padding: 24px; text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.services-section { padding: 80px 0; background: var(--gray-pale); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-light); }
.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width .3s; }
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--gray-pale); }
.service-card .icon-wrap { width: 48px; height: 48px; background: var(--gray-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background .2s; }
.service-card:hover .icon-wrap { background: var(--red); }
.service-card:hover .icon-wrap svg { stroke: white; }
.service-card .icon-wrap svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.7; transition: stroke .2s; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; line-height: 1.65; color: var(--gray); }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { background: var(--red); padding: 56px 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: white; line-height: 1; margin-bottom: 8px; letter-spacing: 0.02em; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 300; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { padding: 13px 28px; background: white; color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, transform .15s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); }
.btn-white:hover { background: var(--gray-pale); transform: translateY(-1px); }
.btn-outline-white { padding: 12px 28px; background: transparent; color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.6); cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ─── INTERIOR / PAGE HERO ───────────────────────────────────── */
.page-hero { height: 320px; background: var(--gray-dark); position: relative; overflow: hidden; }
.page-hero .ph-slides { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.ph-slide.active { opacity: 1; }
.ph-slide:nth-child(1) { background: linear-gradient(135deg, #1a1a1a 0%, #3a1010 60%, #5a0808 100%); }
.ph-slide:nth-child(2) { background: linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 50%, #4a1010 100%); }
.ph-slide:nth-child(3) { background: linear-gradient(160deg, #111 0%, #2a2a2a 40%, #3a1010 100%); }
.ph-slide img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.45; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); z-index: 2; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 4; }
.page-hero-content {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  padding: 0 40px 36px;
}
.page-hero .breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; letter-spacing: 0.06em; }
.page-hero .breadcrumb span { color: var(--red-light); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem; color: white; letter-spacing: 0.03em; line-height: 1; }

/* Page trust bar */
.page-trust-bar { background: var(--gray-dark); border-top: 2px solid var(--red); border-bottom: 3px solid var(--red); display: flex; align-items: stretch; overflow: hidden; }
.page-trust-bar .trust-item { flex: 1; }

/* Interior content */
.interior-content { padding: 60px 0; background: var(--white); min-height: 400px; }
.interior-content .container { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.interior-content .container.full-width { grid-template-columns: 1fr; }
.content-body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dark); margin: 28px 0 10px; }
.content-body h3:first-child { margin-top: 0; }
.content-body p { font-size: 0.96rem; line-height: 1.78; color: var(--gray-mid); margin-bottom: 14px; }

/* Sidebar card */
.sidebar-card { background: var(--gray-pale); border: 1px solid var(--gray-light); border-top: 3px solid var(--red); padding: 28px; border-radius: 0 0 4px 4px; }
.sidebar-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.sidebar-card .contact-info { font-size: 0.92rem; line-height: 1.8; color: var(--gray-mid); }
.sidebar-card .phone { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--gray-dark); letter-spacing: 0.04em; display: block; margin: 8px 0; }
.sidebar-card .btn-primary { display: block; text-align: center; margin-top: 16px; text-decoration: none; }

/* ─── NEN-KEURING ────────────────────────────────────────────── */
.nen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--gray-light); margin: 32px 0; }
.nen-item { background: var(--white); padding: 24px 20px; display: flex; gap: 14px; align-items: flex-start; }
.nen-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--red); line-height: 1; min-width: 70px; white-space: nowrap; }
.nen-item-text h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 4px; }
.nen-item-text p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

.flyer-card { background: var(--gray-dark); color: white; padding: 32px; position: relative; overflow: hidden; border-radius: 3px; }
.flyer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.flyer-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: white; letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 16px; }
.flyer-card p { font-size: 0.85rem; line-height: 1.7; color: var(--gray-light); margin-bottom: 12px; }
.flyer-card .nen-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
.flyer-tag { background: var(--red); color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px; }

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery-section { padding: 48px 0 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--gray-light); }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--gray-light); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; background: linear-gradient(135deg,#2a2a2a,#4a1a1a); }

/* ─── CATEGORY HERO ──────────────────────────────────────────── */
.category-hero { background: var(--gray-dark); padding: 60px 0; position: relative; overflow: hidden; }
.category-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.cat-slideshow-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }
.cat-main-slide { aspect-ratio: 16/9; background: var(--gray-mid); border-radius: 3px; overflow: hidden; position: relative; }
.cat-main-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.6s ease; }
.cat-slide-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; background: linear-gradient(135deg,#2a2a2a,#4a1a1a); }
.cat-info { color: white; }
.cat-info h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; letter-spacing: 0.03em; margin-bottom: 12px; }
.cat-info p { font-size: 0.95rem; font-weight: 300; color: var(--gray-light); line-height: 1.7; margin-bottom: 24px; }
.cat-info .section-label { color: var(--red-light); }
.cat-info .section-label::before { background: var(--red-light); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-light); border-radius: 3px; font-family: 'Barlow', sans-serif; font-size: 0.93rem; color: var(--gray-dark); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-block h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-dark); margin: 24px 0 12px; }
.contact-info-block h3:first-child { margin-top: 0; }
.info-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.92rem; color: var(--gray-mid); line-height: 1.5; }
.info-row svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 1px; }

/* ─── VACATURES ──────────────────────────────────────────────── */
.job-card { border: 1.5px solid var(--gray-light); border-left: 4px solid var(--red); padding: 24px 28px; margin-bottom: 16px; background: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: box-shadow .2s; }
.job-card:hover { box-shadow: var(--shadow); }
.job-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 4px; }
.job-meta { font-size: 0.82rem; color: var(--gray); }
.job-tag { background: var(--gray-pale); border: 1px solid var(--gray-light); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; color: var(--gray); white-space: nowrap; }

/* ─── SCROLL TO TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .2s, transform .2s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--gray-dark); color: var(--gray-light); padding: 56px 40px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 16px; }
footer p { font-size: 0.88rem; line-height: 1.7; color: var(--gray); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 0.88rem; color: var(--gray); text-decoration: none; transition: color .2s; }
footer ul li a:hover { color: var(--red-light); }
.footer-logo img { height: 50px; margin-bottom: 16px; opacity: 0.85; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--gray); }
.fb-btn { display: inline-flex; align-items: center; gap: 8px; background: #1877F2; color: white; padding: 7px 14px; border-radius: 3px; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background .2s; }
.fb-btn:hover { background: #1565d8; }

/* ─── HAMBURGER + MOBILE NAV ─────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0; bottom: 0;
  background: var(--gray-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color .2s, padding-left .2s; }
.mobile-nav a:hover { color: white; padding-left: 8px; }
.mobile-nav a.sub { font-size: 1rem; color: rgba(255,255,255,0.5); padding-left: 16px; }
.mobile-nav a.sub:hover { color: var(--red-light); padding-left: 24px; }
.mobile-nav .mobile-cta { margin-top: 20px; background: var(--red); color: white; text-align: center; padding: 16px; border: none; border-bottom: none; }
.mobile-nav .mobile-cta:hover { background: var(--red-dark); padding-left: 0; }
.mobile-cert-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-cert-pill { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 10px; border-radius: 2px; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .topbar { display: none; }
  header { padding: 0 20px; height: 72px; }
  .mobile-nav { top: 72px; }
  .hero { height: 480px; }
  .hero-content { left: 20px; max-width: 90%; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-trust-bar { display: none; }
  .services-strip { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .interior-content .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .cat-slideshow-wrap { grid-template-columns: 1fr; }
  .nen-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .page-trust-bar { display: none; }
  .page-hero { height: 240px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
