/* ============================================
   OFFscreen Media — style.css (Crisp Minimal Light)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg:        #FFFFFF;
  --clr-bg-alt:    #FAF9F6; /* warm subtle off-white */
  --clr-surface:   #FFFFFF;
  --clr-card:      #FFFFFF;
  --clr-border:    rgba(15, 23, 42, 0.08);
  --clr-border-md: rgba(15, 23, 42, 0.15);

  /* Premium Elegant Palette: Royal Navy and Indigo, no orange/drab gray */
  --clr-accent:    #1E3A8A; /* deep royal navy */
  --clr-accent-lt: #3B82F6; /* vibrant blue */
  --clr-dark:      #0F172A; /* slate 900 */
  --clr-dark2:     #1E293B; /* slate 800 */
  --clr-text:      #334155; /* slate 700 */
  --clr-muted:     #64748B; /* slate 500 */
  --clr-light:     #94A3B8; /* slate 400 */
  --clr-white:     #FFFFFF;

  --ff-display:    'Bebas Neue', sans-serif;
  --ff-body:       'Inter', sans-serif;
  --ff-accent:     'Space Grotesk', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --transition:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  --container-w:   1200px;
  --section-pad:   100px;

  --shadow-sm:  0 1px 4px rgba(15, 23, 42, 0.03);
  --shadow-md:  0 10px 30px rgba(15, 23, 42, 0.04);
  --shadow-lg:  0 20px 50px rgba(15, 23, 42, 0.06);
}

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

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid var(--clr-border);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--ff-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.1px;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover { color: var(--clr-accent); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  color: var(--clr-white);
  background: var(--clr-accent);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}

.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover  { background: var(--clr-accent-lt); transform: translateY(-1px); }

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

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--clr-surface);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mob-link {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--clr-dark);
  transition: color var(--transition);
}

.mob-link:hover { color: var(--clr-accent); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  background: var(--clr-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--clr-dark);
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--clr-border-md);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  letter-spacing: 0.1px;
}

.btn-ghost:hover {
  border-color: var(--clr-accent);
  background: rgba(30, 58, 138, 0.04);
  transform: translateY(-2px);
  color: var(--clr-accent);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--clr-dark);
}

.section-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   HERO — Clean Two-Column Layout
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%), var(--clr-bg);
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; }

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  color: var(--clr-dark);
}

.title-line {
  opacity: 0;
  transform: translateY(36px);
  animation: fadeUp 0.7s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.35s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.accent {
  color: var(--clr-accent);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--clr-text);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards 0.85s;
}

/* Right side — floating photo collage */
.hero-right {
  position: relative;
  height: 520px;
  opacity: 0;
  animation: fadeIn 0.9s ease forwards 0.4s;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid var(--clr-border);
}

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

.hero-photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  z-index: 10;
}

/* Photo 1 — Large */
.hero-photo-1 {
  width: 65%;
  height: 56%;
  top: 0;
  left: 0;
  z-index: 3;
  animation: floatA 7s ease-in-out infinite 1s;
}

/* Photo 2 — Medium */
.hero-photo-2 {
  width: 50%;
  height: 50%;
  top: 15%;
  right: 0;
  z-index: 2;
  animation: floatB 8s ease-in-out infinite 0.5s;
}

/* Photo 3 — Small */
.hero-photo-3 {
  width: 45%;
  height: 38%;
  bottom: 0;
  left: 10%;
  z-index: 4;
  animation: floatC 6.5s ease-in-out infinite 1.5s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clr-light);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--ff-accent);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: var(--clr-accent);
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker 32s linear infinite;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-track .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  padding: 0 40px;
}

.stats-container {
  max-width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--clr-border);
}

.stat-item {
  text-align: center;
  padding: 64px 24px;
  border-right: 1px solid var(--clr-border);
  transition: background var(--transition);
  background: transparent;
}

.stat-item:hover { background: #FFFFFF; }

.stat-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--clr-dark2);
  vertical-align: super;
}

.stat-label {
  color: var(--clr-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0.2px;
}

/* ============================================
   DIENSTEN
   ============================================ */
.diensten {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dienst-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dienst-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.dienst-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.dienst-card:hover::after { transform: scaleX(1); }

.dienst-card.featured {
  border-color: rgba(30, 58, 138, 0.15);
  background: var(--clr-bg-alt);
}

.dienst-card.featured::after { transform: scaleX(1); }

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--ff-accent);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.dienst-icon {
  width: 44px;
  height: 44px;
  color: var(--clr-accent);
  margin-bottom: 28px;
}

.dienst-icon svg { width: 100%; height: 100%; }

.dienst-card h3 {
  font-family: var(--ff-accent);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-dark);
}

.dienst-card p {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.dienst-link {
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), opacity var(--transition);
}

.dienst-link:hover { gap: 12px; opacity: 0.8; }

/* ============================================
   WERK / PORTFOLIO
   ============================================ */
.werk {
  padding: var(--section-pad) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.werk .section-container { margin-bottom: 56px; }

.werk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.werk-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  background: var(--clr-surface);
}

.werk-item.large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.werk-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.werk-item:hover img {
  transform: scale(1.04);
}

.werk-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform var(--transition), opacity var(--transition);
}

.werk-item:hover .werk-overlay { opacity: 1; transform: translateY(0); }

.werk-tag {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}

.werk-overlay h3 {
  font-family: var(--ff-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.werk-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   QUOTE STRIP
   ============================================ */
.quote-strip {
  background: var(--clr-accent);
  padding: 80px 0;
  color: var(--clr-white);
  text-align: center;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.quote-strip blockquote {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.quote-strip cite {
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============================================
   OVER ONS
   ============================================ */
.over {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

.over-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.over-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--clr-text);
}

.over-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-icon {
  font-size: 1.5rem;
  padding: 10px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  color: var(--clr-accent);
  display: inline-flex;
}

.value-item strong {
  display: block;
  font-family: var(--ff-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 0;
}

.over-visual {
  position: relative;
  height: 480px;
}

.over-image-wrap {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.over-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-image-wrap:first-child {
  width: 75%;
  height: 75%;
  top: 0; left: 0;
  z-index: 2;
}

.over-image-wrap.small {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  z-index: 3;
}

.over-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1;
}

.badge-txt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ============================================
   KLANTEN STRIP
   ============================================ */
.klanten {
  padding: 60px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
}

.klanten-label {
  text-align: center;
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 36px;
}

.klanten-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.logo-item {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--clr-light);
  letter-spacing: 2px;
  transition: color var(--transition);
}

.logo-item:hover { color: var(--clr-accent); }

/* ============================================
   CONTACT PAGE & FORM
   ============================================ */
.contact-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--clr-bg);
}

.contact-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-detail-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border-md);
  background: var(--clr-white);
  color: var(--clr-dark);
  transition: border-color var(--transition), outline var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}

.form-success {
  margin-top: 20px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  color: #065F46;
  font-size: 0.92rem;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo {
  filter: brightness(0) invert(1); /* make logo white in footer */
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-socials a:hover {
  background: var(--clr-accent-lt);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--clr-white); }

.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 40px 40px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
  transition: color var(--transition);
}

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

/* ============================================
   RESPONSIVENESS & ANIMATIONS
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 40px;
  }
  .hero-right {
    height: 440px;
  }
  .over-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .over-visual {
    height: 400px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }
  .nav-links { display: none; }
  .burger { display: flex; }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .diensten-grid, .werk-grid {
    grid-template-columns: 1fr;
  }
  .werk-item.large {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
