/* -------------------------------------------------------
   PREMIUM LAYOUT (Dutch Governance Advisory)
   Clean, modern, government-grade design
------------------------------------------------------- */

/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: #122033;
  background: #f7f9fc;
  line-height: 1.6;
}

/* CONTAINERS */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------- */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #032b55;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #032b55;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links .active {
  color: #0077cc;
}

/* -------------------------------------------------------
   HERO PREMIUM
------------------------------------------------------- */
.hero-premium {
  position: relative;
  background: linear-gradient(135deg, #023d7d 0%, #086ccf 100%);
  color: #fff;
  padding: 120px 5% 140px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-pattern.svg');
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-premium h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  max-width: 600px;
  opacity: 0.95;
  margin-bottom: 40px;
}

/* CTA buttons */
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 600;
}

.cta-primary {
  background: #ffffff;
  color: #023d7d;
  border: none;
}

.cta-primary:hover {
  background: #e8f1ff;
}

.cta-secondary {
  background: #023d7d;
  color: #fff;
  border: 1px solid #fff;
}

.cta-secondary:hover {
  background: #015fb4;
}

/* Consultant card */
.consultant-card {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.consultant-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* -------------------------------------------------------
   SERVICES GRID
------------------------------------------------------- */
.services {
  padding: 80px 0;
}

.section-sub {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #dde6ef;
  transition: 0.2s;
}

.service-card:hover {
  border-color: #b8d7ff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #022c56;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------
   WHY SECTION
------------------------------------------------------- */
.why {
  padding: 80px 0;
  background: #f0f6ff;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.why-item h4 {
  font-size: 20px;
  color: #023d7d;
  margin-bottom: 8px;
}

/* -------------------------------------------------------
   QUICKSCAN CTA SECTION
------------------------------------------------------- */
.quickscan-cta {
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(135deg, #086ccf 0%, #0a8d74 100%);
  color: #fff;
}

.quickscan-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

/* -------------------------------------------------------
   KNOWLEDGE / KENNISBANK
------------------------------------------------------- */
.knowledge {
  padding: 80px 0;
}

.knowledge-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.kb-item {
  display: block;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #dde6ef;
  text-decoration: none;
  color: #122033;
  transition: 0.2s;
}

.kb-item:hover {
  border-color: #b8d7ff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.kb-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* -------------------------------------------------------
   PAGE HEADERS
------------------------------------------------------- */
.page-header {
  padding: 80px 0 60px;
  background: #f0f6ff;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

/* -------------------------------------------------------
   BIO PAGE
------------------------------------------------------- */
.bio-section {
  padding: 60px 0;
  max-width: 800px;
}

.bio-photo {
  width: 160px;
  border-radius: 12px;
  margin-bottom: 22px;
}

/* -------------------------------------------------------
   CONTACT FORM
------------------------------------------------------- */
.contact-section input,
.contact-section textarea {
  width: 100%;
  border: 1px solid #cbd7e4;
  border-radius: 8px;
  padding: 14px;
  margin: 10px 0 20px;
  font-size: 16px;
}

.contact-section textarea {
  height: 160px;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer {
  margin-top: 80px;
  padding: 40px 0;
  background: #032b55;
  color: #fff;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #cfe3ff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

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

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 768px) {

  .hero-premium h1 {
    font-size: 34px;
  }

  .nav-links {
    gap: 16px;
  }

  .footer-flex {
    flex-direction: column;
  }
}
/* Premium Hero Fix */
.hero-premium {
    background: linear-gradient(135deg, #004aad, #0077cc);
    padding: 80px 20px;
    color: white;
    border-radius: 0 0 20px 20px;
}

.hero-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 550px;
}

.cta-primary {
    background: white;
    color: #004aad;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.cta-primary:hover {
    background: #e5e5e5;
}

.hero-profile {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    backdrop-filter: blur(6px);
}

.hero-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-profile-text {
    font-size: 16px;
    line-height: 1.3;
}
/* --- Premium Profile Image Fix --- */

.hero-profile img {
    width: 70px;              /* foto kleiner */
    height: 70px;             /* gelijke hoogte -> perfect rond */
    border-radius: 50%;       /* cirkel */
    object-fit: cover;        /* nooit uitrekken, altijd mooi */
    border: 3px solid rgba(255,255,255,0.35); /* subtiele premium ring */
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);  /* diepte */
}
/* --- Premium refined profile card --- */

.hero-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 14px 22px;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.55);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero-profile-text {
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
}

.hero-profile-text strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
}


