/* =======================================
   RESET
======================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #faf6ef;
  color: #2d3a3a;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
}

/* =======================================
   VARIABLES
======================================= */

:root {
  --primary: #026e81;
  --primary-dark: #024d5f;
  --accent: #ff9933;
  --light: #faf6ef;
  --white: #ffffff;
  --text: #2d3a3a;
  --muted: #6b7f7f;
  --border: rgba(2, 110, 129, 0.12);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* =======================================
   ANIMATIES
======================================= */

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade {
  opacity: 0;
  animation: revealFade 1.1s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 8% cover 38%;
}

.service-card:nth-child(1) {
  animation-delay: 0s;
}
.service-card:nth-child(2) {
  animation-delay: 0.25s;
}
.service-card:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-section .animate-up,
.hero-section .animate-left,
.hero-section .animate-right,
.hero-section .animate-zoom,
.hero-section .animate-rotate,
.hero-section .animate-blur,
.hero-section .animate-flip {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.hero-badge {
  animation: heroFadeUp 0.7s ease forwards;
}

.hero-content h1 {
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.15s forwards;
}

.hero-content p {
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.3s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.45s forwards;
}

.hero-section::after {
  animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -18px);
  }
}

/* =======================================
   GENERAL
======================================= */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-white {
  background: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.section-heading h2,
.split-text h2 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: var(--primary);
  line-height: 1.15;
  margin-top: 12px;
}

.section-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2, 110, 129, 0.08);
  color: var(--primary);
  border: solid 1px var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 12px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 50px;
}

.section-subtext {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;

  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;

  color: var(--muted);
}

/* =======================================
   BUTTONS
======================================= */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.6s;
}

.btn:hover::before {
  left: 120%;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

/* =======================================
   HEADER
======================================= */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.35s ease;
  padding: 18px 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 78px;
  height: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.logo-img:hover {
  transform: translateY(-2px) rotate(-4deg);
}

.logo-text {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-left: -10px;
}

.logo-text strong {
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
}

.logo-text span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.55);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.desktop-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s ease;
}

.nav-a {
  color: var(--text);
}

.desktop-nav a:not(.btn):hover {
  background: rgba(2, 110, 129, 0.07);
  color: var(--primary);
}

.nav-cta {
  padding: 14px 22px;
  color: var(--white);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  transition: 0.25s ease;
}

.mobile-nav a:hover {
  background: rgba(2, 110, 129, 0.06);
  color: var(--primary);
}

.mobile-nav.show {
  display: flex;
  animation: menuFade 0.3s ease;
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================================
   HERO
======================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 130px;
  background:
    radial-gradient(circle at 20% 50%, rgba(2, 110, 129, 0.1), transparent 40%),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 153, 51, 0.12),
      transparent 35%
    );
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/education-hero.png") center/cover;
  filter: blur(0px);
  opacity: 0.12;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 153, 51, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  filter: blur(60px);
}

.hero-content {
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    rgba(2, 110, 129, 0.95),
    rgba(2, 110, 129, 0.75)
  );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: 0 10px 30px rgba(2, 110, 129, 0.25);

  backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;

  margin-bottom: 26px;
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: badgeShine 6s infinite;
}

@keyframes badgeShine {
  0% {
    left: -60%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-size: 72px;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 22px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =======================================
   STATS
======================================= */

.stats-section {
  position: relative;
  margin-top: -55px;
  z-index: 5;
  padding: 0 16px 55px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(2, 110, 129, 0.08);

  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 34px 20px;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(2, 110, 129, 0.08);
}

.stat-box h3 {
  font-family: "DM Serif Display", serif;
  font-size: 46px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* =======================
   DIENSTEN UPGRADE
======================= */

#diensten {
  position: relative;
  margin-top: -55px;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid rgba(2, 110, 129, 0.08);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  height: 480px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-content {
  flex: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 110, 129, 0.03),
    rgba(255, 153, 51, 0.04)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 45px rgba(0, 0, 0, 0.1),
    0 10px 24px rgba(2, 110, 129, 0.1);
  border-color: rgba(2, 110, 129, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(2, 110, 129, 0.12),
    rgba(2, 110, 129, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--primary);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 14px;
}

.service-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.service-cta {
  position: relative;
  overflow: hidden;

  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 22px;
  border-radius: 999px;

  background: var(--primary);
  color: white;
  text-decoration: none;

  font-weight: 700;
  font-size: 14px;

  transition: 0.3s ease;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.6s;
}

.service-cta:hover::before {
  left: 120%;
}

.service-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.service-cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* =======================================
   OVER ONS UPGRADE
======================================= */

.about-section {
  overflow: hidden;
}

.about-layout {
  display: block;
}

.about-text {
  display: block;
}

.about-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
}

.about-visual {
  float: right;
  width: 46%;
  margin: 0 0 28px 50px;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 400px;
  border-radius: 30px;
  border: 1px solid rgba(2, 110, 129, 0.08);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.1),
    0 12px 28px rgba(2, 110, 129, 0.08);
  background: white;
}

.about-image-mask {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden; /* hier hoort het */
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: contrast(1.04) saturate(1.02);
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.05);
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  min-width: 135px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  z-index: 9;
}

.floating-badge strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
  font-family: "DM Serif Display", serif;
  margin-bottom: 4px;
}

.floating-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
}

.badge-vo {
  top: 40px;
  left: -35px;
  animation: floatBadgeOne 5.5s ease-in-out infinite;
}

.badge-mbo {
  right: -35px;
  bottom: 45px;
  animation: floatBadgeTwo 6s ease-in-out infinite;
}

.reveal-about-heading {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-about-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.about-section .section-heading {
  text-align: center;
  margin: 0 auto 60px;
}

.about-section .section-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.reveal-about {
  opacity: 0;
  transform: translateY(55px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-about.show {
  opacity: 1;
  transform: translateY(0);
}

.about-text-column {
  display: block;
}

.about-text-column::after {
  content: "";
  display: block;
  clear: both;
}

.left-align {
  text-align: left;
  margin-bottom: 35px;
}

.left-align .section-subtext {
  text-align: left;
  margin: 18px 0 0;
}

.left-align h2::after {
  left: 0;
  transform: none;
}

@keyframes floatBadgeOne {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatBadgeTwo {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(16px);
  }
}

/* =======================================
   CARDS
======================================= */

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  transition: 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.portfolio-body h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "DM Serif Display", serif;
}

.portfolio-body p {
  color: var(--muted);
}

.portfolio-top {
  height: 180px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #0896a3);
  margin-bottom: 24px;
}

.portfolio-top svg {
  width: 54px;
  height: 54px;
  color: white;
}

.portfolio-body span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* =======================================
   SPLIT LAYOUT
======================================= */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =======================================
   EDUCATION BOXES
======================================= */

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.edu-box {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(2, 110, 129, 0.05);
  text-align: center;
}

.edu-box.active {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
}

.edu-box.active span {
  color: rgba(255, 255, 255, 0.8);
}

.edu-box.active strong {
  background: var(--primary);
  color: white;
}

.edu-box strong {
  display: block;
  font-size: 34px;
  color: #026e81;
  font-family: "DM Serif Display", serif;
}

.edu-box span {
  font-size: 14px;
  color: #6b7f7f;
}

/* =======================================
   CONTACT
======================================= */

.contact-list {
  margin-top: 24px;
}

.contact-list div {
  margin-bottom: 14px;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--light);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
  margin-bottom: 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(2, 110, 129, 0.08);
}

/* =======================================
   FOOTER
======================================= */

.main-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #013743, #025b6b 55%, #026e81);
  color: white;
  padding: 90px 0 0;
}

.footer-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.footer-glow-left {
  background: #ff9933;
  top: -80px;
  left: -80px;
}

.footer-glow-right {
  background: #ffffff;
  right: -120px;
  bottom: -80px;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 55px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 15px;
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-img {
  width: 88px;
  margin-left: -20px;
  height: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-left: -10px;
}

.footer-logo-text strong {
  font-size: 20px;
  color: white;
}

.footer-logo-text span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: var(--accent);
}

.footer-links a {
  position: relative;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 14px;
  padding-left: 0;
  transition: 0.3s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(8px);
  padding-left: 16px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item span {
  font-size: 15px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #ff9933;
}

.footer-btn {
  margin-top: 12px;
}

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

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #ff9933;
  transform: translateY(-4px);
}

.footer-btn {
  margin-top: 16px;
  display: inline-flex;
  width: 100%;
  justify-content: center;

  background: linear-gradient(135deg, #ff9933, #ffb15a);
  color: #ffffff !important;

  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 153, 51, 0.28);
}

.footer-btn:hover {
  background: linear-gradient(135deg, #ff8a14, #ff9933);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 153, 51, 0.34);
}

.footer-btn::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* =======================================
   RESPONSIVE
======================================= */

/* ---------- TABLET ---------- */
@media (max-width: 1100px) {
  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 60px;
  }
}

/* ---------- MOBILE / TABLET ---------- */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .split-text h2 {
    font-size: 38px;
    line-height: 1.15;
  }

  .section-subtext {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
  }

  /* HEADER */
  .main-header {
    padding: 14px 0;
  }

  .main-header.scrolled {
    padding: 10px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    width: 46px;
    height: 46px;
  }

  .logo {
    gap: 10px;
    flex: 1;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .logo-text strong {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 11px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
  }

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

  .mobile-nav a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 14px;
  }

  .mobile-nav a:last-child {
    background: var(--primary);
    color: white;
    text-align: center;
    margin-top: 4px;
  }

  /* HERO */
  .hero-section {
    padding: 150px 0 100px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 14px;
  }

  /* STATS */
  .stats-section {
    margin-top: -55px;
    padding: 0 16px 55px;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
  }

  .stat-box {
    position: relative;
    padding: 24px 14px;
  }

  .stat-box h3 {
    font-size: 34px;
    margin-bottom: 6px;
  }

  .stat-box p {
    font-size: 13px;
    line-height: 1.35;
  }

  .stat-box::before,
  .stat-box::after,
  .stat-box:not(:last-child)::after {
    content: "";
    display: none !important;
    position: absolute;
  }

  /* verticale lijnen */
  .stat-box:nth-child(1)::after,
  .stat-box:nth-child(3)::after {
    display: block !important;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(2, 110, 129, 0.08);
  }

  /* horizontale lijnen */
  .stat-box:nth-child(1)::before,
  .stat-box:nth-child(2)::before {
    display: block !important;
    left: 18%;
    bottom: 0;
    width: 64%;
    height: 1px;
    background: rgba(2, 110, 129, 0.08);
  }

  .card-grid.two,
  .card-grid.three,
  .footer-grid,
  .form-row,
  .edu-grid,
  .split-layout {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .portfolio-card,
  .contact-form {
    padding: 28px;
  }

  .btn {
    width: 80%;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .split-text h2 {
    font-size: 32px;
  }

  .section-subtext {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
    margin-top: 14px;
    padding: 0 6px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .logo-text span {
    font-size: 10px;
  }

  .hero-section {
    padding: 135px 0 85px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .stats-section {
    margin-top: -55px;
    padding: 0 14px 55px;
  }

  .stats-grid {
    border-radius: 22px;
  }

  .stat-box {
    padding: 20px 12px;
  }

  .stat-box h3 {
    font-size: 30px;
  }

  .stat-box p {
    font-size: 12px;
  }

  #diensten {
    position: relative;
    margin-top: -55px;
  }

  .service-card,
  .portfolio-card,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image-wrap {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .about-layout {
    gap: 34px;
  }

  .about-image-wrap {
    min-height: 420px;
  }

  .floating-badge {
    min-width: 160px;
    padding: 14px 16px;
  }

  .floating-badge strong {
    font-size: 24px;
  }

  .badge-vo {
    left: 14px;
    top: 14px;
  }

  .badge-mbo {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .about-image-wrap {
    min-height: 340px;
    border-radius: 22px;
  }

  .about-text p {
    font-size: 16px;
  }

  .floating-badge {
    min-width: 140px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .floating-badge strong {
    font-size: 22px;
  }

  .floating-badge span {
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .about-image-wrap {
    width: 100%;
    height: 520px;
    margin: 0 auto;
  }

  .about-image-wrap img {
    width: 100%;
    height: 520px;
  }
}

/* mobiel */
@media (max-width: 768px) {
  .about-image-wrap {
    height: 420px;
  }

  .about-image-wrap img {
    height: 420px;
  }
}

/* small mobile */
@media (max-width: 480px) {
  .about-image-wrap {
    height: 340px;
    border-radius: 24px;
  }

  .about-image-wrap img {
    height: 340px;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding-top: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo-icon {
    width: 46px;
    height: 46px;
  }

  .footer-logo-text strong {
    font-size: 18px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }
}
