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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
  background: #f7f7f7;
  color: #333;
}

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

h1, h2, h3, h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: #444;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.btn-primary {
  background: #9D8ABF;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  background: #2E5B8A;
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  margin: 0;
}

.header-inner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 0;
  padding-bottom: 0;
  transition: height 0.2s ease;
}

.logo {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}

.logo-img {
  height: 140px;
  width: auto;
  display: block;
  object-fit: cover;
  transition: height 0.2s ease;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover { background: #f3f3f3; }

.nav-cta {
  background: rgba(46,91,138,.08);
  border: 1px solid rgba(46,91,138,.18);
  font-weight: 600 !important;
  color: #2E5B8A !important;
}

/* Mobile Navigation Button & Drawer */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(46, 91, 138, 0.2);
  color: #2E5B8A;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  background: rgba(46, 91, 138, 0.08);
  outline: none;
}

.mobile-nav-drawer {
  background: #ffffff;
  border-bottom: 2px solid rgba(46, 91, 138, 0.15);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  padding: 16px 0 20px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #2d3748;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav-list a:hover {
  background: #f1f5f9;
  color: #2E5B8A;
}

.mobile-nav-list a i {
  width: 22px;
  color: #9D8ABF;
  font-size: 1rem;
  text-align: center;
}

.mobile-nav-cta-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #edf2f7;
}

.btn-mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Hero (schuine top) */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-angled {
  position: absolute;
  inset: -120px 0 auto 0;
  height: 380px;
  background: #D5D6EA;
  transform: skewY(-4deg);
  transform-origin: top left;
}

.hero-inner {
  position: relative;
  padding: 70px 0 46px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-kicker { color: rgba(0, 0, 0, 0.9); margin: 0 0 10px; }
.hero-title {
  color: #000000;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 10px;
}
.hero-subtitle { color: rgba(0, 0, 0, 0.92); font-size: 1.05rem; margin-bottom: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Foto rechts (vierkant + rand + overlay) */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Sections */
.section { padding: 56px 0; }

.section-title {
  font-size: 2.05rem;
  margin-bottom: 20px;
  color: #333;
}

/* Over card */
.section-over { padding-top: 40px; }

.text-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
}

/* Feature cards */
.section-cards { padding-top: 10px; }

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

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
  position: relative;
}

.feature-card h3 {
  margin: 22px 0 8px;
  color: #333;
  font-size: 1.12rem;
}

.feature-card p { font-size: .95rem; margin-bottom: 14px; }

/* icon boven de kaart */
.feature-icon {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2E5B8A;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

.icon-dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; }

.icon-arc {
  width: 18px; height: 12px;
  border: 3px solid #fff;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}

.icon-check {
  width: 14px; height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
  position: relative;
}

.quote-close {
  bottom: 30px;
  right: -10px;
}

blockquote {
  margin: 0;
  padding-left: 18px;
  color: #444;
  line-height: 1.7;
}

figcaption {
  margin-top: 10px;
  padding-left: 18px;
  color: #777;
  font-size: .92rem;
}

/* Mini tarieven card */
.mini-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
}

.mini-title { color: #333; font-size: 1.25rem; }

/* Footer */
.site-footer {
  background: #1E3350;
  color: #fff;
  padding: 44px 0;
  margin-top: 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo { height: 54px; width: auto; display: block; filter: brightness(1.1); }

.site-footer h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.site-footer p { color: rgba(255,255,255,.85); margin-bottom: 10px; }

.site-footer a { color: rgba(255,255,255,.9); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }

/* Responsive Navigation & Page Layouts */
@media (max-width: 860px) {
  .header-inner {
    height: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo-img {
    height: 100%;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero-inner {
    padding: 36px 0 28px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .mini-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .mini-card .btn {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .text-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form button.btn {
    width: 100%;
  }
}

/* ===== Form styling  ===== */

.form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: inherit;
  outline: none;
}

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

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(153,153,204,.55);
  box-shadow: 0 0 0 4px rgba(153,153,204,.18);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(0,0,0,.45);
}

/* 2-koloms layout op desktop */
@media (min-width: 900px) {
  .form {
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    align-items: start;
  }

  /* deze velden over hele breedte */
  .form-group:nth-child(9),
  .form-group:nth-child(10),
  .form-group:nth-child(11) {
    grid-column: 1 / -1;
  }

  /* button ook over hele breedte */
  .form button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Button iets strakker */
.form button.btn {
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.6rem;
}

.form button.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(153,153,204,.22);
}

/* Optioneel: subtiele scheiding binnen text-card */
.text-card .form {
  padding-top: 6px;
}

/* Psychologen layout */
.psych-grid {
  display: grid;
  gap: 32px;
}

.psych-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf2f7;
}

.psych-card:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.psych-card.reverse {
  grid-template-columns: 1fr 140px;
}

.psych-card.reverse .psych-header-row {
  order: 2;
}

.psych-photo {
  width: 140px;
  height: 140px;
  max-width: 140px;
  max-height: 140px;
  border-radius: 50%;
  background: rgba(153,153,204,.12);
  border: 2px solid rgba(153,153,204,.4);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psych-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psych-placeholder-icon {
  font-size: 2.5rem;
  color: #9D8ABF;
}

.psych-header-row {
  display: block;
}

.psych-main-meta {
  display: none;
}

.psych-desktop-meta {
  display: block;
}

.psych-name {
  font-size: 1.35rem;
  color: #1a202c;
  margin-bottom: 2px;
  font-weight: 700;
}

.psych-role {
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.psych-contact-info {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  font-size: 0.9rem;
  color: #4a5568;
}

.psych-contact-info a {
  color: #2E5B8A;
  text-decoration: none;
}

.psych-contact-info a:hover {
  text-decoration: underline;
}

.psych-description-container {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.psych-description {
  line-height: 1.65;
  color: #4a5568;
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
}

.psych-readmore-btn {
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  color: #4f46e5;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.psych-readmore-btn:hover {
  color: #3730a3;
}

.psych-pdf-btn {
  margin-top: 6px;
}

/* Mobile Layout (< 768px) */
@media (max-width: 768px) {
  .psych-card,
  .psych-card.reverse {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .psych-card.reverse .psych-header-row {
    order: 0;
  }

  .psych-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
  }

  .psych-photo {
    width: 84px;
    height: 84px;
    max-width: 84px;
    max-height: 84px;
    min-width: 84px;
    margin: 0;
  }

  .psych-placeholder-icon {
    font-size: 1.8rem;
  }

  .psych-main-meta {
    display: block;
    flex: 1;
    min-width: 0;
  }

  .psych-desktop-meta {
    display: none;
  }

  .psych-name {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.3;
  }

  .psych-role {
    font-size: 0.85rem;
    margin: 2px 0 6px;
    line-height: 1.3;
  }

  .psych-contact-compact {
    font-size: 0.82rem;
    color: #4a5568;
    line-height: 1.5;
  }

  .psych-contact-compact div {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .psych-contact-compact a {
    color: #2E5B8A;
    text-decoration: none;
  }

  .psych-contact-compact i {
    width: 14px;
    color: #9D8ABF;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .psych-body {
    width: 100%;
  }

  .psych-description {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .psych-pdf-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}