/* ============================================================
   Elektricien Storingsdienst — Premium Stylesheet
   ============================================================ */

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

:root {
  --color-navy:         #1B2A3B;
  --color-cobalt:       #0057D9;
  --color-cobalt-hover: #0046B8;
  --color-amber:        #F5A623;
  --color-ice:          #F4F6F9;
  --color-white:        #FFFFFF;
  --color-text:         #1A1A2E;
  --color-muted:        #6B7A8D;
  --color-footer:       #0F1E2D;
  --color-star:         #FBBC04;
  --color-green:        #1A8A1A;
  --color-border:       #E8ECF0;
  --color-cobalt-glow:  rgba(0,87,217,0.14);
  --color-amber-glow:   rgba(245,166,35,0.18);
  --radius:             12px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-cta: 0 6px 24px rgba(0,87,217,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(36px,5vw,54px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px,4vw,42px); font-weight: 700; line-height: 1.18; letter-spacing: -0.015em; }
h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(20px,2.5vw,24px); font-weight: 700; line-height: 1.28; }
h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-cta);
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}
.btn-primary:hover { background: var(--color-cobalt-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,87,217,0.36); }
.btn-primary:active { transform: translateY(0); }

.btn-sm { font-size: 15px; padding: 12px 24px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-navy);
  padding: 9px 24px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.top-bar-item {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.top-bar-item svg { color: var(--color-amber); flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(27,42,59,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#site-header:not(.scrolled) {
  background: rgba(27,42,59,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.site-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.01em;
}
.site-logo .logo-icon {
  width: 32px; height: 32px;
  background: var(--color-cobalt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.site-logo span { color: var(--color-amber); }

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.main-nav > a {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav > a:hover { color: var(--color-white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-item > a:hover { color: var(--color-white); background: rgba(255,255,255,0.08); }
.nav-chevron { transition: transform 0.25s; flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  min-width: 250px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s, top 0.22s;
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 7px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-white);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; top: calc(100% + 8px); }

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--color-text) !important;
  font-size: 14px !important;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--color-ice); color: var(--color-cobalt) !important; }
.dropdown a:hover .d-icon-wrap { background: var(--color-cobalt-glow); color: var(--color-cobalt); }

.d-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--color-ice);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  color: var(--color-cobalt);
}

.header-cta {
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,87,217,0.28);
  display: flex; align-items: center; gap: 7px;
}
.header-cta:hover { background: var(--color-cobalt-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,87,217,0.38); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: 0.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-menu {
  display: none;
  flex-direction: column;
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,.68,0,1.2);
}
.mobile-menu.open { display: flex; max-height: 640px; }
.mobile-menu a {
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.mobile-menu a:hover { color: var(--color-white); background: rgba(255,255,255,0.04); }
.mobile-menu .mob-cta {
  margin: 14px 20px 16px;
  background: var(--color-cobalt);
  color: var(--color-white) !important;
  font-weight: 700 !important;
  border-radius: 6px;
  justify-content: center;
  border-bottom: none;
  box-shadow: var(--shadow-cta);
}
.mobile-menu .mob-cta:hover { background: var(--color-cobalt-hover) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 116px;
}
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(27,42,59,0.88) 0%,
    rgba(27,42,59,0.72) 55%,
    rgba(27,42,59,0.45) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  color: var(--color-white);
  padding: 60px 24px;
  animation: fadeInUp 0.9s cubic-bezier(.22,.68,0,1.2) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 2px solid #10b981;
  color: #065f46;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-badge .pulse-dot {
  width: 10px; height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-badge .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-ring 1.5s infinite;
}
#elek-count {
  animation: count-blink 2.4s ease-in-out infinite;
  font-weight: 800;
}
@keyframes count-blink {
  0%, 80%, 100% { opacity: 1; }
  90% { opacity: 0.2; }
}

.hero-content h1 { color: var(--color-white); margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content h1 em {
  font-style: normal;
  color: var(--color-amber);
}
.hero-subtitle { font-size: 18px; margin-bottom: 32px; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 600px; }

.hero-bullets { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li {
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  display: flex; align-items: center; gap: 12px;
}
.hero-bullets li svg { color: var(--color-amber); flex-shrink: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { color: var(--color-white); }
.hero-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-amber);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B2A3B' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.trust-item {
  color: var(--color-navy);
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(27,42,59,0.12);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(27,42,59,0.06); }
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(27,42,59,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--color-navy);
}
.trust-item strong { display: block; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--color-navy); }
.trust-item p { font-size: 13px; color: rgba(27,42,59,0.75); line-height: 1.4; }

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency-banner {
  background: var(--color-navy);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,87,217,0.12) 0%, transparent 70%);
  top: 50%; left: 20%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.urgency-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  top: 50%; right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
}
.urgency-banner h2 { color: var(--color-white); margin-bottom: 14px; position: relative; z-index: 1; }
.urgency-banner p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 32px; position: relative; z-index: 1; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  background: var(--color-cobalt-glow);
  color: var(--color-cobalt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin: 0 auto 14px;
  border: 1px solid rgba(0,87,217,0.18);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--color-ice); }
.services-section > .container > .section-intro {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 680px;
  margin: 14px 0 48px;
  line-height: 1.75;
}

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-cobalt);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-card-img-wrap { position: relative; overflow: hidden; height: 210px; }
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.22,.68,0,1.2);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,42,59,0.5) 100%);
}

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { color: var(--color-navy); margin-bottom: 14px; font-size: 19px; }
.card-body ul { margin-bottom: 22px; flex: 1; }
.card-body ul li {
  padding: 6px 0;
  color: var(--color-muted);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--color-ice);
}
.card-body ul li:last-child { border-bottom: none; }
.card-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--color-cobalt);
  border-radius: 50%;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,87,217,0.20);
}
.card-cta:hover { background: var(--color-cobalt-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,87,217,0.32); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--color-white); }
.reviews-section h2 { text-align: center; margin-bottom: 6px; }
.rating-summary { text-align: center; font-size: 18px; margin-bottom: 44px; color: var(--color-muted); }
.rating-summary strong { color: var(--color-navy); }

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 22px; transition: transform 0.55s cubic-bezier(.22,.68,0,1.2); }

.review-card {
  min-width: 340px;
  max-width: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--color-white);
  flex-shrink: 0;
}
.reviewer-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 2px; color: var(--color-navy); }
.reviewer-meta { font-size: 12px; color: var(--color-muted); }
.google-logo { width: 22px; height: 22px; }
.review-stars { color: var(--color-star); font-size: 17px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #4A5568; line-height: 1.65; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.carousel-btn {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--color-cobalt); color: var(--color-white); border-color: var(--color-cobalt); box-shadow: var(--shadow-cta); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active { background: var(--color-cobalt); width: 24px; border-radius: 4px; }

/* ============================================================
   WERKGEBIED
   ============================================================ */
.werkgebied-section { background: var(--color-ice); }
.werkgebied-section .subtitle { font-size: 17px; color: var(--color-muted); margin-bottom: 40px; max-width: 600px; line-height: 1.7; }

.provinces-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.province {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.province:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.province h4 {
  color: var(--color-navy);
  margin-bottom: 12px;
  font-size: 11px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-amber);
}
.province ul li {
  font-size: 13px;
  padding: 4px 0;
  color: var(--color-text);
  display: flex; align-items: center; gap: 6px;
}
.province ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--color-amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.werkgebied-cta {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.06);
}
.werkgebied-cta p { font-size: 18px; font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--color-white); }
.faq-section > .container { max-width: 820px; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open {
  border-color: var(--color-cobalt);
  border-left: 3px solid var(--color-cobalt);
  box-shadow: 0 4px 20px var(--color-cobalt-glow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--color-ice); }
.faq-item.open .faq-question { background: #EEF4FF; }

.faq-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-ice);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: var(--color-cobalt);
}
.faq-item.open .faq-icon-wrap {
  background: var(--color-cobalt);
  color: var(--color-white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s;
  padding: 0 22px;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 2px 22px 20px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 0; }
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; }

.final-cta-left {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
}
.final-cta-left::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,87,217,0.14) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}
.final-cta-left h3 { color: var(--color-white); margin-bottom: 28px; font-size: 28px; position: relative; z-index: 1; }
.final-cta-list { margin-bottom: 36px; position: relative; z-index: 1; }
.final-cta-list li {
  padding: 9px 0;
  font-size: 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.final-cta-list li:last-child { border-bottom: none; }
.final-cta-list li svg { color: var(--color-amber); flex-shrink: 0; }

.final-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-cta);
  position: relative; z-index: 1;
}
.final-cta-phone:hover { background: var(--color-cobalt-hover); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,87,217,0.40); }

.final-cta-right { background: var(--color-ice); padding: 72px 60px; border-left: 1px solid var(--color-border); }
.final-cta-right h3 { color: var(--color-navy); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-cobalt);
  box-shadow: 0 0 0 3px var(--color-cobalt-glow);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button {
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,87,217,0.22);
}
.contact-form button:hover { background: var(--color-cobalt-hover); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,87,217,0.34); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,87,217,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer-brand .logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.footer-brand .logo .logo-icon {
  width: 28px; height: 28px;
  background: var(--color-cobalt);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .logo span { color: var(--color-amber); }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 20px; }

.footer-col h4 {
  color: var(--color-white);
  font-size: 11px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  font-size: 14px;
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { opacity: 1; color: var(--color-amber); }
.footer-col .contact-line { font-size: 15px; margin-bottom: 8px; }
.footer-col .contact-line a { color: var(--color-amber); font-weight: 700; }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  opacity: 0.40;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom a:hover { color: var(--color-amber); opacity: 1; }

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  height: 58px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: var(--color-cobalt);
  color: var(--color-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  gap: 10px;
}
.mobile-call-bar a:hover { background: var(--color-cobalt-hover); }

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--color-navy);
  padding: 200px 0 96px;
  min-height: 520px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}
.page-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(27,42,59,0.86) 0%, rgba(27,42,59,0.60) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; animation: fadeInUp 0.8s both; }
.page-hero-content h1 { color: var(--color-white); margin-bottom: 18px; font-size: clamp(28px,4vw,44px); }
.page-hero-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.65; }

.breadcrumb { position: relative; z-index: 2; margin-bottom: 24px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.breadcrumb ol li { font-size: 13px; color: rgba(255,255,255,0.55); }
.breadcrumb ol li a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb ol li a:hover { color: var(--color-amber); }
.breadcrumb ol li + li::before { content: ' › '; margin-right: 6px; }

/* Service page body */
.service-intro { padding: 72px 0; background: var(--color-white); }
.service-intro h2 { margin-bottom: 18px; color: var(--color-navy); }
.service-intro p { font-size: 17px; color: var(--color-muted); line-height: 1.8; margin-bottom: 24px; }
.service-bullets { margin-bottom: 36px; }
.service-bullets li {
  padding: 11px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--color-ice);
  display: flex; align-items: center; gap: 12px;
  color: var(--color-text);
}
.service-bullets li svg { color: var(--color-cobalt); flex-shrink: 0; }

.cta-banner { background: var(--color-cobalt); padding: 48px 0; text-align: center; }
.cta-banner h3 { color: var(--color-white); font-size: 24px; margin-bottom: 20px; }

/* Contact page */
.contact-page { padding: 72px 0; background: var(--color-ice); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { font-size: 17px; color: var(--color-muted); margin-bottom: 28px; line-height: 1.75; }
.contact-info-items { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--color-white);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.contact-info-item:hover { box-shadow: var(--shadow-md); }
.contact-info-item .ci-icon {
  width: 42px; height: 42px;
  background: var(--color-cobalt-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-cobalt);
  flex-shrink: 0;
}
.contact-info-item strong { display: block; margin-bottom: 3px; color: var(--color-navy); font-size: 14px; font-weight: 700; }
.contact-info-item a { color: var(--color-cobalt); font-weight: 700; }
.contact-form-box {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.contact-form-box h3 { margin-bottom: 24px; color: var(--color-navy); }

/* Static pages */
.static-page { padding: 120px 0 72px; background: var(--color-white); }
.static-page h1 { font-size: 36px; margin-bottom: 32px; color: var(--color-navy); }
.static-page h2 { font-size: 20px; margin: 32px 0 12px; color: var(--color-navy); }
.static-page p { margin-bottom: 16px; line-height: 1.85; color: var(--color-muted); }
.static-page ul { margin: 12px 0 16px 20px; }
.static-page ul li { margin-bottom: 8px; line-height: 1.75; list-style: disc; color: var(--color-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .provinces-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(28px,7vw,38px); }
  h2 { font-size: clamp(24px,5vw,32px); }
  section { padding: 56px 0; }

  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .top-bar-inner { gap: 12px; }
  .top-bar-item:nth-child(3),
  .top-bar-item:nth-child(4) { display: none; }
  #site-header { top: 33px; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .provinces-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-left, .final-cta-right { padding: 48px 28px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 40px 20px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }

  .werkgebied-cta { flex-direction: column; text-align: center; }
  .review-card { min-width: 290px; }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }

  .page-hero { padding: 160px 0 72px; min-height: 460px; }
  .page-hero-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .provinces-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-item { padding: 24px 16px; }
}

/* ============================================================
   SERVICE CARD — DUAL BUTTONS
   ============================================================ */
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.card-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--color-cobalt);
  border: 2px solid var(--color-cobalt);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.card-cta-outline:hover { background: var(--color-cobalt); color: #fff; }
.card-cta.card-cta-phone {
  font-size: 14px;
  padding: 11px 10px;
}

/* ============================================================
   SERVICE SPLIT SECTION (2nd image)
   ============================================================ */
.service-split {
  padding: 96px 0;
  background: var(--color-ice);
}
.service-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-split-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27,42,59,0.18);
  aspect-ratio: 4/3;
  position: relative;
}
.service-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-split-img:hover img { transform: scale(1.05); }
.service-split-content { display: flex; flex-direction: column; gap: 0; }
.service-split-content h2 { color: var(--color-navy); margin-bottom: 16px; font-size: clamp(22px,2.5vw,32px); }
.service-split-content > p { color: var(--color-muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.service-stat-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-cobalt);
  border-radius: 10px;
  padding: 20px 12px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(27,42,59,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-stat-box:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,217,0.12); }
.service-stat-box .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-cobalt);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.service-stat-box p { font-size: 12px; color: var(--color-muted); margin: 0; line-height: 1.4; font-weight: 500; }

/* ============================================================
   OTHER SERVICES SECTION
   ============================================================ */
.other-services-section {
  background: var(--color-navy);
  padding: 80px 0;
}
.other-services-section h2 { text-align: center; margin-bottom: 10px; color: #fff; }
.other-services-section .subtitle { text-align: center; color: rgba(255,255,255,0.6); margin-bottom: 48px; font-size: 16px; }
.other-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.other-svc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.other-svc-card:hover {
  background: var(--color-cobalt);
  border-color: var(--color-cobalt);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,87,217,0.35);
}
.other-svc-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-amber);
  transition: all 0.25s;
  flex-shrink: 0;
}
.other-svc-card:hover .other-svc-icon { background: rgba(255,255,255,0.2); color: #fff; }
.other-svc-card span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  transition: color 0.25s;
}
.other-svc-card:hover span { color: #fff; }

/* ============================================================
   FOOTER — NEW LAYOUT
   ============================================================ */
.footer-top { grid-template-columns: 2fr 1fr 1.4fr; }

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-trust-item svg { color: var(--color-amber); flex-shrink: 0; }

.footer-contact-col .footer-phone {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-amber);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-col .footer-phone:hover { color: #fff; }
.footer-contact-col .footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-contact-col .footer-area {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-contact-col .footer-area svg { color: var(--color-amber); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-amber); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .other-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .service-split-grid { gap: 48px; }
}
@media (max-width: 860px) {
  .service-split-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-split-img { aspect-ratio: 16/9; max-height: 340px; }
}
@media (max-width: 768px) {
  .card-actions { grid-template-columns: 1fr; }
  .other-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-stats { grid-template-columns: repeat(3, 1fr); }
  .service-split { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .other-svc-grid { grid-template-columns: 1fr 1fr; }
  .service-stats { grid-template-columns: repeat(3, 1fr); }
  .service-stat-box .stat-num { font-size: 22px; }
}
