@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --navy: #0D1B2A;
  --navy-light: #152238;
  --navy-medium: #1e3a5f;
  --brand-blue: #2B7DC4;
  --gold: #F5D000;
  --gold-light: #FAE040;
  --gold-dark: #D4B200;
  --white: #ffffff;
  --off-white: #F7F9FC;
  --gray-light: #E8ECF0;
  --gray: #6B7280;
  --text-dark: #0D1B2A;
  --text-medium: #374151;
  --text-light: #6B7280;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.25s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,208,0,0.4);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.65rem 1.4rem;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  border-bottom-color: transparent;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  padding-top: 10px;
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-footer-wrap {
  display: inline-flex;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 1rem;
}

.logo-footer-wrap .logo-img {
  height: 70px;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  color: var(--text-medium);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover { color: var(--navy); background: rgba(0,0,0,0.05); }

.nav-link.active { color: var(--brand-blue); font-weight: 600; }

.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-medium);
  font-size: 0.875rem;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-menu a i { color: var(--gold); }

.dropdown-menu a:hover {
  color: var(--navy);
  background: rgba(0,0,0,0.04);
  padding-left: 1.25rem;
}

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

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  display: block;
}

.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.mobile-nav .mobile-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 0; }

.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 0.75rem; }

/* Sub items in mobile */
.mobile-sub-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 0.75rem 1rem 0.25rem;
}

.mobile-nav .sub-link {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7) !important;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.95) 45%, rgba(13,27,42,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
  width: 100%;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero-title .accent { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item i { color: var(--gold); font-size: 0.9rem; }

/* =========================================
   PAGE HERO (subpages)
   ========================================= */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,208,0,0.08) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* =========================================
   CONTAINER
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

/* =========================================
   SERVICE CARDS
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,208,0,0.2);
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,208,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i { color: var(--gold); font-size: 1.1rem; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: var(--transition);
}

.service-card-link:hover { gap: 0.6rem; }

/* =========================================
   FEATURES / WHY US
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,208,0,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
}

.feature-item:hover .feature-icon i { color: var(--white); }

.feature-icon i { color: var(--gold); font-size: 1.3rem; transition: var(--transition); }

.feature-item h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.feature-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-image img { width: 100%; height: 480px; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

.about-badge i { color: var(--gold); font-size: 1.1rem; }

.checklist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-medium);
}

.checklist-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

/* =========================================
   PROJECTS GRID
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.project-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Projects page full cards */
.project-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.project-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-full-card img { width: 100%; height: 220px; object-fit: cover; }

.project-full-body { padding: 1.5rem; }

.project-full-body .project-category { display: inline-block; margin-bottom: 0.6rem; }

.project-full-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.project-full-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,208,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-wrap i { color: var(--gold); font-size: 1.6rem; }

.cta-text { flex: 1; }

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p { color: rgba(255,255,255,0.68); font-size: 0.975rem; }

.cta-contacts {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.cta-contact-item i { color: var(--gold); }

.cta-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,208,0,0.1);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-col ul li a:hover { color: var(--white); gap: 0.55rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
}

.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

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

/* =========================================
   DIENSTEN PAGE - detail view
   ========================================= */
.dienst-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.dienst-section:last-child { border-bottom: none; }

.dienst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dienst-grid.reverse { direction: rtl; }
.dienst-grid.reverse > * { direction: ltr; }

.dienst-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dienst-image img { width: 100%; height: 360px; object-fit: cover; }

.dienst-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.dienst-content p { color: var(--text-light); font-size: 0.975rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* =========================================
   WERKWIJZE STEPS
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: var(--transition);
  counter-increment: step-counter;
}

.step-card:hover { box-shadow: var(--shadow-md); border-color: rgba(245,208,0,0.25); }

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,208,0,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* =========================================
   FORMS
   ========================================= */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-label span { color: var(--gold); }

.form-input, .form-select, .form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.925rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,208,0,0.1);
}

.form-input.error, .form-textarea.error, .form-select.error {
  border-color: #EF4444;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-error { font-size: 0.78rem; color: #EF4444; display: none; }
.form-error.show { display: block; }

.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox label { font-size: 0.875rem; color: var(--text-medium); cursor: pointer; }

.form-upload {
  border: 2px dashed var(--gray-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
}

.form-upload:hover { border-color: var(--gold); background: rgba(245,208,0,0.03); }

.form-upload i { font-size: 1.5rem; color: var(--gray); margin-bottom: 0.5rem; }
.form-upload p { font-size: 0.875rem; color: var(--text-light); }
.form-upload span { font-size: 0.8rem; color: var(--gray); }
.form-upload input[type="file"] { display: none; }

.success-message {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  color: #166534;
  font-size: 0.925rem;
  align-items: center;
  gap: 0.75rem;
}

.success-message.show { display: flex; }
.success-message i { font-size: 1.1rem; flex-shrink: 0; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(245,208,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i { color: var(--gold); font-size: 1rem; }

.contact-detail-text { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.925rem; margin-bottom: 0.2rem; }

/* =========================================
   SECTION DIVIDER / ACCENT
   ========================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-header .section-subtitle { margin: 0 auto; }

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* inline text version */
.section-header-inline { margin-bottom: 3.5rem; }

/* =========================================
   STATS / NUMBERS
   ========================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 0.875rem; color: var(--text-light); }

/* =========================================
   VALUES / WAARDEN
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(245,208,0,0.25);
  transform: translateY(-4px);
}

.value-card i { font-size: 1.75rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.value-card h3 { font-size: 0.975rem; font-weight: 700; }

/* =========================================
   DETAIL PAGE LAYOUT
   ========================================= */
.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.sidebar-diensten a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-medium);
  transition: var(--transition);
  margin-bottom: 0.25rem;
}

.sidebar-diensten a:hover, .sidebar-diensten a.active {
  background: var(--gold);
  color: var(--white);
  padding-left: 1rem;
}

.sidebar-diensten a i { font-size: 0.7rem; }

/* =========================================
   MISC
   ========================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245,208,0,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-grid, .dienst-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dienst-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .about-image img { height: 380px; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 7rem 1.25rem 3.5rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 1rem; }
  .hero-trust { gap: 1rem; flex-direction: column; }
  .hero-trust .trust-item { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; }

  /* Page hero */
  .page-hero { padding: 6.5rem 1.25rem 3rem; }
  .page-hero h1 { font-size: 1.75rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

  /* About image */
  .about-image img { height: 280px; }

  /* Projects */
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Dienst grid: always image on top */
  .dienst-grid .dienst-image,
  .dienst-grid.reverse .dienst-image { order: -1; }
  .dienst-image img { height: 260px; }

  /* CTA section */
  .cta-inner { flex-direction: column; text-align: center; padding: 3rem 1.25rem; }
  .cta-contacts { justify-content: center; flex-direction: column; gap: 0.75rem; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-icon-wrap { display: none; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Buttons touch targets */
  .btn { min-height: 44px; }

  /* Steps grid */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Header */
  .header-inner { padding: 0 1rem; }
  .logo-img { height: 70px; }

  /* Section header */
  .section-title { font-size: 1.5rem; }

  /* Contact grid compact */
  .contact-info-card { padding: 1.75rem; }

  /* Offerte form */
  #offerteForm { padding: 1.5rem; }

  /* Sidebar cards */
  .sidebar-card { padding: 1.5rem; }
}
