/* ===========
   Basis
   =========== */
:root {
  --color-bg: #0f172a;
  --color-bg-soft: #111827;
  --color-surface: #ffffff;
  --color-primary: #1e2a5a;
  --color-accent: #2563eb;
  --color-accent-soft: #e0edff;
  --color-text: #111827;
  --color-text-muted: #6b7280;

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);

  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #f3f4f6;
  line-height: 1.6;
}

/* ===========
   Layout
   =========== */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  padding-top: 90px; /* ruimte onder fixed header */
}

/* ===========
   Header / Navigatie
   =========== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 70px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  z-index: 50;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.brand-logo {
  height: 70px;
  width: auto;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #93c5fd;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #38bdf8);
  transition: width 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff !important;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Mobiel nav: voor nu simpele wrap */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .brand-tagline {
    display: none;
  }
}

/* ===========
   Hero (home)
   =========== */

.hero {
  background: radial-gradient(circle at top left, #1d4ed8 0, #0f172a 38%, #020617 100%);
  color: #e5e7eb;
  padding: 80px 0 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 1rem;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #f9fafb;
}

.hero-title span {
  color: #93c5fd;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #cbd5f5;
  margin-bottom: 1.4rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.13s ease,
    color 0.13s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.65);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

/* Hero rechterkant */

.hero-card {
  background: #020617;
  border-radius: 26px;
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.8);
  position: relative;
  overflow: hidden;
}

.hero-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.hero-card-title {
  font-size: 0.95rem;
}

.hero-region {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.metric {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.metric-highlight {
  color: #4ade80;
}

.hero-card-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Kleine decoratieve cirkel */
.hero-orb {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.9), transparent 70%);
  opacity: 0.4;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    max-width: 360px;
    margin-inline: auto;
  }
}

/* ===========
   Sections algemeen
   =========== */

.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0;
  color: var(--color-primary);
}

.section-subtitle {
  max-width: 36rem;
  margin: 0.7rem auto 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===========
   Diensten grid
   =========== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #cbd5f5;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
}

.card-text {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.card-list {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ===========
   Waarom sectie
   =========== */

.why-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.why-point {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.why-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.why-text-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.why-text-body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.why-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: #e5efff;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
}

.why-side {
  background: linear-gradient(145deg, #1d4ed8, #0f172a);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  color: #e5e7eb;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.45);
}

.why-side-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.why-side-body {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.why-side-stat {
  font-size: 0.85rem;
  color: #bfdbfe;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===========
   Portfolio
   =========== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.portfolio-card {
  overflow: hidden;
  padding: 0;
}

.portfolio-image {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
}

.portfolio-body {
  padding: 1rem 1.1rem 1rem;
}

/* ===========
   Testimonials
   =========== */

.testimonials {
  background: #0f172a;
  color: #e5e7eb;
}

.testimonials .section-title {
  color: #e5e7eb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border-radius: 18px;
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.testimonial-quote {
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ===========
   CTA / Contact blok
   =========== */

.cta {
  background: radial-gradient(circle at top right, #2563eb 0, #1e293b 40%, #020617 100%);
  color: #e5e7eb;
  text-align: center;
}

.cta-inner {
  max-width: 32rem;
  margin-inline: auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.cta-text {
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

/* ===========
   Pagina: algemene elementen (Over, Diensten, Contact)
   =========== */

.page-hero {
  background: #0f172a;
  color: #e5e7eb;
  padding: 70px 0 40px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  margin: 0 0 0.4rem;
}

.page-hero-subtitle {
  font-size: 0.96rem;
  color: #cbd5f5;
}

/* Contactformulier */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* ===========
   Footer
   =========== */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 25px 0 20px;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo img {
  height: 26px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e5e7eb;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.55);
}
.btn-call {
  background: #1e3a8a;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.35);
}

.btn-call:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(30, 58, 138, 0.55);
}
.btn-linkedin {
  background: #0a66c2;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.35);
}

.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(10, 102, 194, 0.55);
}
/* gradient balk*/
/* Bewegende gradient balk */
.accent-bar {
  width: 100%;
  height: 16px;
  background: linear-gradient(
    90deg,
    #020617,
    #0f172a,
    #1d4ed8,
    #38bdf8,
    #1d4ed8,
    #0f172a,
    #020617
  );
  background-size: 300% 100%;
  animation: accent-bar-move 12s linear infinite;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.45);
  position: relative;
  z-index: 2;
}

/* Hover – iets hoger en sneller */
.accent-bar:hover {
  height: 18px;
  animation-duration: 6s;
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.7);
}

/* Animatie */
@keyframes accent-bar-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*hamburger Menu*/
/* Hamburger-knop basis */
.nav-toggle {
  display: none; /* desktop: verborgen */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  vertical-align: middle;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

/* Animatie naar "X" wanneer open */
.navbar.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobiele layout */
@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* menu standaard verborgen op mobiel */
  .nav-links {
    position: absolute;
    top: 70px; /* gelijk aan header-height */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #020617;
    padding: 0 1.5rem 1.1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    gap: 0.4rem;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.18s ease;
    overflow: hidden;
  }

  .nav-links a {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  /* wanneer open */
  .navbar.nav-open .nav-links {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* tagline verbergen op heel klein scherm */
  .brand-tagline {
    display: none;
  }
}
