/* From Above - Tom Endeman Drones
   Custom CSS - Taste-Skill compliant dark theme
   ================================================ */

/* ---- Zelf-gehoste lettertypes (variabel, latin-subset) ----
   Vervangt Google Fonts: geen externe verbinding meer bij eerste laden. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/jetbrainsmono-latin.woff2') format('woff2');
}

/* ---- Variabelen ---- */
:root {
  --navy-950: #050b18;
  --navy-900: #080d1a;
  --navy-800: #0f1624;
  --navy-700: #162035;
  --navy-600: #1e2d45;
  --cyan:     #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --blue:     #3b82f6;
  --text-1:   #ffffff;
  --text-2:   #94a3b8;
  --text-3:   #64748b;
  --radius:   12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background-color: var(--navy-900);
  color: var(--text-1);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--text-2); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(8, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(5, 11, 24, 0.96); }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-title {
  font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.08em; color: var(--text-1);
}
.nav-logo-sub {
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--cyan);
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-ghost {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-2); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.2); }

.btn-primary {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-950); text-decoration: none;
  background: var(--cyan);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 0.4rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #26dbff; transform: translateY(-1px); }

/* ---- Mobile hamburger ---- */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
  text-align: center;
}

/* Hero achtergrond video/foto (ingesteld via admin) */
.hero-media-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,212,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(59,130,246,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,212,255,0.04) 0%, transparent 50%),
    rgba(8,13,26,0.55);
}

/* Simulated aerial grid lines */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--cyan);
  margin-bottom: 1.75rem;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--cyan); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-2);
  max-width: 580px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  padding: 0.85rem 2rem;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.3); }

.btn-hero-outline {
  padding: 0.85rem 1.75rem;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-1); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.03);
}
.btn-hero-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.05); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-3); font-size: 0.7rem; letter-spacing: 0.1em;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll svg { color: var(--text-3); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Section layout ---- */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 580px; }

/* ---- Portfolio ---- */
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem; font-weight: 600;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: var(--text-2);
  cursor: pointer; transition: all 0.2s;
}
.filter-tab:hover { border-color: rgba(255,255,255,0.2); color: var(--text-1); }
.filter-tab.active {
  background: var(--text-1); color: var(--navy-950);
  border-color: var(--text-1);
}

/* Asymmetric portfolio grid: first card is featured (large) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.2);
}
.portfolio-card.hidden { display: none; }
.portfolio-card.featured {
  grid-column: 1 / 3;
}

.portfolio-card-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.portfolio-card.featured .portfolio-card-img { aspect-ratio: 16/8; }

/* Category color gradients for image placeholders */
.img-foto    { background: linear-gradient(135deg, #7c3a0a 0%, #c2560e 30%, #f97316 55%, #fbbf24 75%, #92400e 100%); }
.img-thermal { background: linear-gradient(135deg, #1e0a3c 0%, #6d28d9 25%, #c026d3 45%, #ef4444 65%, #f97316 80%, #fcd34d 100%); }
.img-survey  { background: linear-gradient(135deg, #0c2a4a 0%, #0369a1 25%, #10b981 50%, #78716c 75%, #1e3a2a 100%); }

.portfolio-card-img img,
.portfolio-card-img video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-card-img img,
.portfolio-card:hover .portfolio-card-img video { transform: scale(1.04); }

.portfolio-loc-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(8,13,26,0.85);
  border-radius: 100px;
  font-size: 0.65rem; font-weight: 600;
  color: var(--text-1);
  display: flex; align-items: center; gap: 0.3rem;
  backdrop-filter: blur(8px);
}

.portfolio-cat-badge {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
}
.portfolio-cat-badge.foto    { background: rgba(249,115,22,0.25); color: #fb923c; }
.portfolio-cat-badge.thermal { background: rgba(139,92,246,0.25); color: #a78bfa; }
.portfolio-cat-badge.survey  { background: rgba(16,185,129,0.25); color: #34d399; }

/* Simulated drone data overlay on image */
.portfolio-sim-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 0.5rem;
}
.portfolio-sim-crosshair {
  width: 60px; height: 60px;
  border: 2px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  position: relative;
}
.portfolio-sim-crosshair::before,
.portfolio-sim-crosshair::after {
  content: ''; position: absolute;
  background: rgba(0,212,255,0.4);
}
.portfolio-sim-crosshair::before { width: 80px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.portfolio-sim-crosshair::after  { height: 80px; width: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Badge met aantal foto's (linksonder) als er een galerij is */
.portfolio-count-badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 1;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(8,13,26,0.85);
  color: var(--text-1);
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.3rem;
  backdrop-filter: blur(8px);
}
.portfolio-count-badge svg { color: var(--cyan); }

/* Titel-overlay die bij hover verschijnt */
.portfolio-card-hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 0.25rem;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(8,13,26,0.92) 0%, rgba(8,13,26,0.45) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-card-hover,
.portfolio-card:focus-visible .portfolio-card-hover { opacity: 1; }
.portfolio-card-hover-title {
  font-size: 1rem; font-weight: 700; color: var(--text-1);
  line-height: 1.3;
  transform: translateY(8px);
  transition: transform 0.25s ease;
}
.portfolio-card:hover .portfolio-card-hover-title,
.portfolio-card:focus-visible .portfolio-card-hover-title { transform: translateY(0); }
.portfolio-card-hover-hint {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cyan);
}

.portfolio-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.portfolio-meta {
  display: flex; gap: 1rem; margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.portfolio-meta-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; color: var(--text-3); font-weight: 500;
}
.portfolio-meta-item svg { color: var(--cyan); flex-shrink: 0; }

/* ---- Portfolio popup / modal ---- */
.portfolio-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.portfolio-modal[hidden] { display: none; }
.portfolio-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,8,16,0.78);
  backdrop-filter: blur(4px);
  animation: pf-fade 0.2s ease;
}
.portfolio-modal-dialog {
  position: relative;
  width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  animation: pf-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-modal-close {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: rgba(8,13,26,0.7);
  color: var(--text-1); cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.portfolio-modal-close:hover { background: rgba(8,13,26,0.95); }
.portfolio-modal-media {
  aspect-ratio: 16/9; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.portfolio-modal-media img,
.portfolio-modal-media video { width: 100%; height: 100%; object-fit: cover; }
/* Thumbnail-strip onder de hoofdfoto */
.portfolio-modal-thumbs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.85rem 1rem 0;
}
.portfolio-modal-thumbs[hidden] { display: none; }
.portfolio-modal-thumb {
  width: 64px; height: 48px; flex: 0 0 auto;
  padding: 0; border: 2px solid transparent; border-radius: 8px;
  overflow: hidden; cursor: pointer; background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.65;
}
.portfolio-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-modal-thumb:hover { opacity: 1; }
.portfolio-modal-thumb.active { border-color: var(--cyan); opacity: 1; }
.portfolio-modal-thumb.is-video { color: var(--cyan); }

.portfolio-modal-body { padding: 1.6rem; }
.portfolio-modal-body h3 { font-size: 1.4rem; margin-bottom: 0.85rem; line-height: 1.25; }
.portfolio-modal-body .pf-data-desc {
  font-size: 0.95rem; line-height: 1.65; color: var(--text-2);
  white-space: pre-line;
}
@keyframes pf-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pf-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.pf-modal-open { overflow: hidden; }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(0,212,255,0.15); }

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
}
.service-icon.blue   { background: rgba(59,130,246,0.15); color: #3b82f6; }
.service-icon.red    { background: rgba(239,68,68,0.15);  color: #ef4444; }
.service-icon.green  { background: rgba(16,185,129,0.15); color: #10b981; }
.service-icon.yellow { background: rgba(234,179,8,0.15);  color: #eab308; }
.service-icon i.ti { font-size: 1.5rem; line-height: 1; }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.25rem; }

.service-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.service-bullets li {
  font-size: 0.82rem; color: var(--text-2);
  display: flex; align-items: center; gap: 0.5rem;
}
.service-bullets li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}

.btn-service {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-2); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-service:hover { color: var(--text-1); border-color: rgba(255,255,255,0.2); }

/* ---- About / Over Tom ---- */
.about-section {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem;
  align-items: start;
}

.about-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--cyan);
  margin-bottom: 1rem;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { margin-bottom: 1rem; font-size: 0.92rem; line-height: 1.75; }

.about-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem;
}
.about-badge {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.about-badge-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-badge-title { font-size: 0.82rem; font-weight: 700; color: var(--text-1); }
.about-badge-sub   { font-size: 0.72rem; color: var(--text-3); margin-top: 0.15rem; }

.spec-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky; top: 5rem;
}
.spec-card-header {
  padding: 0.9rem 1.25rem;
  background: rgba(0,212,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--text-3);
  display: flex; align-items: center; gap: 0.5rem;
}
.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.04);
}
.spec-item {
  background: var(--navy-800);
  padding: 1rem 1.25rem;
}
.spec-item-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 0.35rem; }
.spec-item-value { font-size: 0.82rem; font-weight: 700; color: var(--text-1); line-height: 1.3; }

.spec-notice {
  padding: 0.9rem 1.25rem;
  background: rgba(234,179,8,0.06);
  border-top: 1px solid rgba(234,179,8,0.15);
  font-size: 0.75rem; color: var(--text-2); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 0.5rem;
}

/* ---- Contact ---- */
.contact-section {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  align-items: start;
}

.contact-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--cyan);
  margin-bottom: 1rem;
}
.contact-content h2 { margin-bottom: 1rem; }
.contact-content p  { font-size: 0.9rem; margin-bottom: 2rem; }

.contact-info-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 0.9rem;
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}
.contact-info-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-3); }
.contact-info-value { font-size: 0.88rem; font-weight: 600; color: var(--text-1); }

.contact-base {
  margin-top: 2rem;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  font-size: 0.78rem; color: var(--text-2); line-height: 1.6;
}
.contact-base strong { color: var(--cyan); font-size: 0.65rem; letter-spacing: 0.1em; display: block; margin-bottom: 0.35rem; }

/* Contact form */
.contact-form-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.35rem; }
.contact-form-sub   { font-size: 0.82rem; color: var(--text-2); margin-bottom: 1.75rem; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-3);
}
.form-group label .required { color: var(--cyan); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-1); font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus { border-color: rgba(0,212,255,0.4); }
textarea.form-control { resize: vertical; min-height: 110px; }

.dienst-tabs {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem;
}
.dienst-tab {
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem; font-weight: 600;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: var(--text-2); cursor: pointer;
  transition: all 0.2s;
}
.dienst-tab:hover { border-color: rgba(255,255,255,0.2); color: var(--text-1); }
.dienst-tab.active { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.08); }

.form-privacy {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.72rem; color: var(--text-3); margin: 1rem 0;
}
.form-privacy svg { flex-shrink: 0; margin-top: 1px; color: var(--cyan); }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em;
  color: #fff; background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.25s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(0,212,255,0.25); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500;
  display: none;
}
.form-message.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: #34d399; }
.form-message.error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-dot { display: inline-block; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; margin-right: 0.5rem; vertical-align: middle; }
.footer-brand { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 0.5rem; }
.footer-sub { font-size: 0.78rem; color: var(--text-3); margin-bottom: 1.5rem; line-height: 1.6; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { font-size: 0.78rem; color: var(--text-3); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { font-size: 0.72rem; color: var(--text-3); }

/* ---- Scroll animations ---- */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- Animations ---- */
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* ---- Mobile nav overlay ---- */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: 64px; z-index: 99;
  background: var(--navy-950);
  padding: 1.5rem 2rem;
  flex-direction: column; gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--cyan); }

/* ====================================================
   PARTNERS STRIP
   ==================================================== */
.partners-strip {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 1.5rem;
}
.partners-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.partners-strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-3);
  text-transform: uppercase;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 72px;
  overflow: hidden;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
  flex-shrink: 0;
}
.partner-item:hover {
  opacity: 1;
  transform: scale(1.05);
}
.partner-item img {
  display: block;
  max-width: 180px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-name-fallback {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-2);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-section   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .spec-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.featured { grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 300px; justify-content: center; }
}

/* ---- Offerte-CTA op de homepage (teaser) ---- */
.contact-cta-points { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.contact-cta-point { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text-2); }
.contact-cta-point span { font-size: 1.1rem; }

/* ---- Locatiekiezer (offerteformulier) ---- */
.locatie-picker { position: relative; }
.locatie-zoekrij { display: flex; gap: 0.5rem; }
.locatie-zoekrij .form-control { flex: 1; }
.locatie-wis-btn {
  padding: 0 0.9rem; font-size: 0.78rem; font-family: inherit; cursor: pointer;
  background: rgba(255,255,255,0.05); color: var(--text-2);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
}
.locatie-wis-btn:hover { color: var(--text-1); border-color: rgba(0,212,255,0.4); }
.locatie-suggesties {
  position: absolute; left: 0; right: 0; top: 2.6rem; z-index: 1100;
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); overflow: hidden; max-height: 220px; overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.locatie-sugg {
  display: block; width: 100%; text-align: left; cursor: pointer;
  padding: 0.55rem 0.8rem; font-size: 0.8rem; font-family: inherit;
  background: transparent; border: none; color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.locatie-sugg:hover { background: rgba(0,212,255,0.08); color: var(--text-1); }
.locatie-map {
  height: 280px; margin-top: 0.6rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08); z-index: 1;
}
.locatie-hint { font-size: 0.72rem; color: var(--text-3); margin-top: 0.4rem; line-height: 1.5; }
.fotos-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.fotos-thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}
.form-akkoord {
  display: flex; align-items: flex-start; gap: 0.6rem; margin: 1rem 0 0.25rem;
  font-size: 0.82rem; color: var(--text-2); line-height: 1.5; cursor: pointer;
}
.form-akkoord input { margin-top: 0.2rem; accent-color: var(--cyan); flex-shrink: 0; }
.form-akkoord a { color: var(--cyan); }
.locatie-gekozen { font-size: 0.8rem; color: var(--cyan); margin-top: 0.35rem; }
input[type="file"].form-control { padding: 0.5rem 0.9rem; }
