/* ============================================================
   BEJODAK — main.css  (blue #0058A0 + orange #E12F00)
   ============================================================ */

:root {
  /* Primaries z logo */
  --blue:    #0058A0;
  --blue2:   #0068BC;
  --blue3:   #004F8F;
  --bluedark:#003666;
  --orange:  #E12F00;
  --orange2: #FF4A1A;
  --orange3: #FF6B3D;

  /* Neutrals */
  --dark:    #060C14;
  --dark2:   #0B1520;
  --dark3:   #111E2E;
  --white:   #FFFFFF;
  --off:     #F2F6FA;
  --gray:    #7A8FA6;
  --gray2:   #B8C8D8;
  --gray3:   #D4E2EE;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --radius: 2px;
  --ease:   0.25s ease;
  --max:    1240px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* UTILITY */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); }
.section-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px);
  line-height: 1; letter-spacing: .02em; color: var(--white); margin-top: 14px;
}
.section-title span { color: var(--orange); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--blue2); color: var(--white);
  font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 30px; border-radius: var(--radius);
  transition: all var(--ease);
}
.btn-outline:hover { background: var(--blue); border-color: var(--blue); }

/* ============================================================
   LANG BAR
   ============================================================ */
.lang-bar {
  background: var(--dark2); border-bottom: 1px solid rgba(0,88,160,.25);
  padding: 9px 0; font-size: 12px;
}
.lang-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lang-bar-contact { display: flex; gap: 20px; color: var(--gray); }
.lang-bar-contact a { color: var(--gray); transition: color var(--ease); }
.lang-bar-contact a:hover { color: var(--orange); }
.divider-v { width: 1px; height: 14px; background: rgba(255,255,255,.12); align-self: center; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--gray); padding: 4px 10px; border-radius: 2px;
  border: 1px solid transparent; transition: all .18s;
}
.lang-btn:hover, .lang-btn.active { color: var(--white); border-color: var(--blue2); background: var(--blue); }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,12,20,.97); backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--blue);
  transition: border-bottom-color .3s;
}
#main-nav.scrolled { border-bottom-color: var(--orange); box-shadow: 0 4px 40px rgba(0,0,0,.6); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}

/* LOGO */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 64px; width: auto; display: block; }

/* DESKTOP LINKS */
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links > li > a {
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gray2); transition: color .2s; position: relative;
  display: flex; align-items: center; gap: 5px; white-space: nowrap; padding: 4px 0;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* DROPDOWN — JS controlled, geen gap-probleem */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.chevron { width: 10px; height: 6px; flex-shrink: 0; transition: transform .2s; }
.nav-dropdown.dd-open .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: var(--dark2);
  border: 1px solid rgba(0,88,160,.3); border-top: 3px solid var(--blue);
  min-width: 210px; border-radius: 0 0 4px 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  /* Geen opacity transition — gewoon display toggle */
  display: none;
  /* Padding top zodat muis van link naar menu kan bewegen zonder gap */
  padding-top: 0;
}
.nav-dropdown.dd-open .dropdown-menu { display: block; }
/* Invisible bridge — vult gap tussen link en menu */
.nav-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: -16px; right: -16px;
  height: 12px; /* zelfde als gap */
  background: transparent;
  display: none;
}
.nav-dropdown.dd-open::after { display: block; }

.dropdown-menu a {
  display: block; padding: 12px 20px;
  font-size: 13px; color: var(--gray2);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .15s; white-space: nowrap;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  color: var(--white); background: rgba(0,88,160,.15);
  padding-left: 26px; border-left: 3px solid var(--orange);
}

.nav-cta { flex-shrink: 0; }

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

/* ============================================================
   MOBILE MENU — slide-in overlay
   ============================================================ */
.mobile-menu {
  /* Verborgen buiten scherm — werkt ook zonder JS */
  visibility: hidden;
  pointer-events: none;
  position: fixed; top: 0; right: 0;
  width: min(360px, 100vw); height: 100vh;
  background: var(--dark2); z-index: 9000;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
  border-left: 3px solid var(--blue);
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu-inner { padding: 24px 20px 40px; display: flex; flex-direction: column; gap: 0; min-height: 100%; }

.mobile-menu-logo { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 20px; }

.mobile-lang { display: flex; gap: 6px; margin-bottom: 24px; }

.mobile-nav { flex: 1; display: flex; flex-direction: column; gap: 0; }

.mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-link:hover { color: var(--orange); padding-left: 8px; }

.mobile-nav-section { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav-heading {
  display: block; padding: 14px 0 10px;
  font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue2);
}
.mobile-nav-sub { padding: 0 0 10px 12px; display: flex; flex-direction: column; gap: 0; }
.mobile-nav-sub a {
  display: block; padding: 9px 0;
  font-size: 14px; color: var(--gray2);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s, padding-left .15s;
}
.mobile-nav-sub a:last-child { border-bottom: none; }
.mobile-nav-sub a:hover { color: var(--white); padding-left: 8px; }

.mobile-menu-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 91vh; display: grid; grid-template-columns: 1fr 460px;
  position: relative; overflow: hidden; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 45%, var(--dark3) 100%);
}
/* Niebieska pionowa linia akcentu */
.hero-accent-line {
  position: absolute; top: 0; bottom: 0; right: 490px; width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--blue) 25%, var(--blue) 75%, transparent 100%);
  opacity: .6;
}
/* Pomarańczowy trójkąt w tle */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 0;
  border-left: 300px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 120px solid rgba(225,47,0,.06);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 80px 48px 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,88,160,.15); border: 1px solid rgba(0,88,160,.4);
  padding: 8px 16px; border-radius: 2px; margin-bottom: 32px; width: fit-content;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
.hero-badge span { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue2); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(54px, 6.5vw, 92px);
  line-height: .92; letter-spacing: .02em; color: var(--white); margin-bottom: 24px;
}
.hero h1 em { color: var(--orange); font-style: normal; display: block; }
.hero-sub { font-size: 16px; color: var(--gray2); line-height: 1.75; max-width: 460px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; }
.hero-stat-num { font-family: var(--font-display); font-size: 38px; color: var(--orange); line-height: 1; }
.hero-stat-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* Hero form */
.hero-form-panel {
  position: relative; z-index: 2;
  padding: 48px 0 48px 40px;
  align-self: stretch; display: flex; align-items: center;
}
.lead-form-card {
  background: rgba(0,88,160,.08); border: 1px solid rgba(0,88,160,.35);
  border-top: 3px solid var(--blue);
  border-radius: 4px; padding: 36px 32px; width: 100%;
  backdrop-filter: blur(10px);
}
.lead-form-card h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 6px; }
.lead-form-card > p { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue2); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  padding: 11px 14px; border-radius: var(--radius); outline: none;
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue2); box-shadow: 0 0 0 3px rgba(0,88,160,.2); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-submit {
  width: 100%; background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background var(--ease); margin-top: 4px;
}
.form-submit:hover { background: var(--orange2); }
.form-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; }
.form-success { display: none; background: rgba(0,88,160,.15); border: 1px solid rgba(0,88,160,.4); color: var(--blue2); padding: 14px; border-radius: 2px; font-size: 13px; text-align: center; margin-top: 8px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--blue);
  padding: 22px 0;
}
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { font-size: 22px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.trust-text span { font-size: 12px; color: rgba(255,255,255,.75); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--dark2); }
.services-header { margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2px; }
.service-card {
  background: var(--dark3); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background var(--ease);
  border-top: 3px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(0,88,160,.1); }
.service-card.featured {
  background: rgba(0,88,160,.12);
  border: 1px solid rgba(0,88,160,.3);
  border-top: 3px solid var(--blue);
}
.service-card.featured::before { display: none; }
.service-num { font-family: var(--font-display); font-size: 54px; color: rgba(0,88,160,.2); line-height: 1; margin-bottom: 14px; }
.service-icon { font-size: 34px; margin-bottom: 18px; }
.service-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 8px; transition: gap var(--ease); }
.service-card:hover .service-link { gap: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; background: var(--dark); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,.05);
  border: 1px solid rgba(0,88,160,.2);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); padding: 22px 26px; border-radius: 2px;
}
.about-badge .num { font-family: var(--font-display); font-size: 46px; color: var(--white); line-height: 1; }
.about-badge .lbl { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .1em; }
.about-content .section-label { margin-bottom: 12px; }
.about-content p { font-size: 15px; color: var(--gray2); line-height: 1.8; margin: 20px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.about-feature {
  background: rgba(0,88,160,.08); border: 1px solid rgba(0,88,160,.2);
  border-left: 3px solid var(--blue); padding: 18px 20px; border-radius: var(--radius);
}
.about-feature-icon { font-size: 22px; margin-bottom: 10px; }
.about-feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.about-feature p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { padding: 100px 0; background: var(--dark2); }
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.projects-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray); border: 1px solid rgba(255,255,255,.12); padding: 8px 18px;
  border-radius: 100px; transition: all .18s;
}
.filter-btn:hover { color: var(--white); border-color: var(--blue); }
.filter-btn.active { color: var(--white); background: var(--orange); border-color: var(--orange); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.project-item { background: var(--dark3); border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.project-item:nth-child(1) { grid-column: span 7; }
.project-item:nth-child(2) { grid-column: span 5; }
.project-item:nth-child(3) { grid-column: span 4; }
.project-item:nth-child(4) { grid-column: span 4; }
.project-item:nth-child(5) { grid-column: span 4; }
.project-item:nth-child(6) { grid-column: span 6; }
.project-item:nth-child(7) { grid-column: span 6; }
.project-img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s ease; }
.project-item:nth-child(1) .project-img { height: 320px; }
.project-placeholder {
  width: 100%; height: 260px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; color: rgba(0,88,160,.2);
  transition: transform .4s ease;
}
.project-item:nth-child(1) .project-placeholder { height: 320px; }
.project-item:hover .project-img,
.project-item:hover .project-placeholder { transform: scale(1.05); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,20,.95) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transition: opacity .3s;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); background: var(--orange);
  padding: 4px 10px; border-radius: 2px; width: fit-content; margin-bottom: 8px;
}
.project-title { font-family: var(--font-serif); font-size: 17px; color: var(--white); }
.projects-more { text-align: center; margin-top: 44px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 100px 0; background: var(--dark); }
.reviews-header { margin-bottom: 52px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: var(--dark2); border: 1px solid rgba(0,88,160,.2);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius); padding: 32px;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.review-stars span { color: var(--orange); font-size: 17px; }
.review-quote { font-family: var(--font-serif); font-size: 44px; color: rgba(0,88,160,.3); line-height: .7; margin-bottom: 10px; }
.review-text { font-size: 15px; color: var(--gray2); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white); flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-loc { font-size: 12px; color: var(--gray); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'BEJODAK'; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 200px; color: rgba(255,255,255,.06);
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.cta-banner::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 6px;
  background: var(--orange);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); line-height: 1.1; color: var(--white); }
.cta-inner h2 span { color: var(--orange3); }
.cta-inner > p { font-size: 15px; color: rgba(255,255,255,.8); margin-top: 8px; }
.cta-right { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 16px; }
.cta-phone-icon { font-size: 30px; }
.cta-phone-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.cta-phone-num { font-family: var(--font-display); font-size: 26px; color: var(--white); letter-spacing: .02em; }
/* Btn op blauwe achtergrond = wit/oranje */
.cta-banner .btn-primary { background: var(--orange); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--orange2); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ============================================================
   INTERIOR PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, var(--dark3) 100%);
  border-bottom: 3px solid var(--blue);
  padding: 80px 0 70px;
}
.page-hero .breadcrumb { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: var(--gray2); max-width: 560px; margin-top: 20px; line-height: 1.7; }

.page-content { padding: 80px 0; background: var(--dark2); }
.page-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; }
.page-body h2 { font-family: var(--font-serif); font-size: 26px; margin: 36px 0 14px; color: var(--white); border-left: 3px solid var(--orange); padding-left: 14px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { font-size: 15px; color: var(--gray2); line-height: 1.8; margin-bottom: 18px; }
.page-body ul { margin-bottom: 18px; }
.page-body ul li { font-size: 15px; color: var(--gray2); padding: 6px 0 6px 22px; position: relative; }
.page-body ul li::before { content: '—'; color: var(--orange); position: absolute; left: 0; }
.sidebar-card {
  background: var(--dark3); border: 1px solid rgba(0,88,160,.25);
  border-top: 3px solid var(--orange);
  border-radius: 4px; padding: 28px; height: fit-content;
  position: sticky; top: 90px;
}
.sidebar-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.sidebar-card p { font-size: 13px; color: var(--gray); margin-bottom: 20px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 42px; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--gray2); line-height: 1.8; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { font-size: 22px; flex-shrink: 0; }
.contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue2); display: block; margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: var(--white); }
.contact-form-card {
  background: var(--dark3); border: 1px solid rgba(0,88,160,.25);
  border-top: 3px solid var(--blue);
  border-radius: 4px; padding: 36px;
}
.contact-form-card h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 24px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card { background: var(--dark3); border-radius: var(--radius); overflow: hidden; transition: transform var(--ease); border-bottom: 3px solid transparent; }
.blog-card:hover { transform: translateY(-4px); border-bottom-color: var(--orange); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg,var(--dark2),var(--dark3)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-serif); font-size: 19px; margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.blog-card-meta { font-size: 12px; color: var(--gray); }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 16px; font-weight: 600; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; transition: color var(--ease);
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 20px; color: var(--blue2); flex-shrink: 0; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 15px; color: var(--gray2); line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-item.open .faq-answer { max-height: 400px; }

/* Gallery masonry */
.gallery-masonry { columns: 3; gap: 16px; }
.gallery-masonry-item { break-inside: avoid; margin-bottom: 16px; border-radius: 2px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-masonry-item img { width: 100%; display: block; transition: transform .3s; }
.gallery-masonry-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 32px; color: var(--white); cursor: pointer; transition: color .2s; }
.lightbox-close:hover { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark); border-top: 3px solid var(--blue);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand .footer-logo-text { font-family: var(--font-display); font-size: 30px; letter-spacing: .04em; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 2px; color: var(--gray);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue2); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--gray); transition: color .18s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col address { font-size: 14px; color: var(--gray); line-height: 1.9; }
.footer-col address strong { color: var(--blue2); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.footer-col address a { color: var(--gray); transition: color .18s; }
.footer-col address a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(0,88,160,.2);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--gray); transition: color .18s; }
.footer-bottom-links a:hover { color: var(--blue2); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-form-panel { padding: 0 0 60px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { right: 0; bottom: -16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 900px) {
  /* Nav: verberg desktop links, toon hamburger */
  .nav-links { display: none !important; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Logo groter op tablet */
  .logo-img { height: 58px; }
}

@media (max-width: 768px) {
  /* Logo op mobile: begrens breedte */
  .logo-img { height: 56px; max-width: 240px; }

  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-item { grid-column: span 1 !important; }
  .project-img, .project-placeholder { height: 180px !important; }

  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .lang-bar-contact { display: none; }
  .hero-stats { gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .logo-img { height: 50px; max-width: 210px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 48px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-item { grid-column: span 1 !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body.js-loaded .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}


/* ============================================================
   BLOG BODY — content styling
   ============================================================ */
.blog-body { font-size: 15px; color: var(--gray2); line-height: 1.85; }
.blog-body p { margin-bottom: 18px; }
.blog-body h2 { font-family: var(--font-serif); font-size: 24px; color: var(--white); margin: 32px 0 14px; border-left: 3px solid var(--orange); padding-left: 14px; }
.blog-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin: 24px 0 10px; }
.blog-body ul, .blog-body ol { margin: 0 0 18px 20px; }
.blog-body li { margin-bottom: 8px; }
.blog-body strong { color: var(--white); font-weight: 600; }
.blog-body a { color: var(--orange); text-decoration: underline; }
