:root {
  --navy-950: #001b3d;
  --navy-900: #002c64;
  --navy-800: #06397a;
  --navy-700: #003e8f;
  --sky-400: #4a93dd;
  --accent-500: #e2001a;
  --accent-400: #ff2438;
  --off-white: #f7f6f3;
  --gray-100: #eceae5;
  --gray-400: #8b8f98;
  --gray-600: #565b66;
  --gray-800: #2a2e37;
  --text-body: #363a44;
  --radius: 10px;
  --max-width: 1160px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.06), 0 1px 3px rgba(15, 23, 41, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 41, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent-500);
  color: var(--off-white);
}
.btn-primary:hover {
  background: var(--accent-400);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(247, 246, 243, 0.4);
}
.btn-outline:hover {
  border-color: var(--off-white);
  background: rgba(247, 246, 243, 0.08);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--off-white);
}
.btn-dark:hover {
  background: var(--navy-800);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--off-white);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: rgba(247, 246, 243, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--off-white);
  border-bottom-color: var(--accent-500);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23f7f6f3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--off-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 30px 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch select:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.lang-switch select option {
  color: var(--text-body);
  background: #fff;
}

.nav-cta {
  background: var(--accent-500);
  color: var(--off-white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-400);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--off-white);
  display: block;
}

/* Hero */
.hero {
  background:
    linear-gradient(160deg, rgba(0, 27, 61, 0.72), rgba(0, 20, 45, 0.66)),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  color: var(--off-white);
  padding: 100px 0 80px;
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  color: var(--sky-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--off-white);
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(247, 246, 243, 0.82);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--navy-950);
  color: var(--off-white);
  padding: 72px 0 56px;
}

.page-hero h1 { color: var(--off-white); }
.page-hero p { color: rgba(247, 246, 243, 0.78); font-size: 1.05rem; max-width: 640px; }

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-hero-photo {
  position: relative;
  justify-self: end;
  max-width: 420px;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 6px solid rgba(247, 246, 243, 0.92);
  box-shadow: 0 26px 60px rgba(0, 10, 30, 0.55);
  filter: sepia(0.22) contrast(1.06) brightness(1.02);
  transform: rotate(1.2deg);
}

.about-hero-badge {
  position: absolute;
  left: -14px;
  bottom: -16px;
  background: var(--accent-500);
  color: var(--off-white);
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

/* Services / werkwijze page banner */
.werkwijze-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.werkwijze-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.werkwijze-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 45, 0.05) 0%, rgba(0, 20, 45, 0.15) 45%, rgba(0, 27, 61, 0.92) 100%);
}

.werkwijze-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 32px;
}

.werkwijze-banner-eyebrow {
  display: block;
  color: var(--sky-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.werkwijze-banner-caption p {
  color: var(--off-white);
  font-family: "Georgia", serif;
  font-size: 1.35rem;
  max-width: 620px;
  margin: 0;
}

@media (max-width: 720px) {
  .werkwijze-banner { height: 300px; }
  .werkwijze-banner-caption p { font-size: 1.1rem; }
}

/* Stats */
.stats {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.stat {
  text-align: center;
  color: var(--off-white);
}

.stat-number {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  color: var(--sky-400);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.7);
  letter-spacing: 0.03em;
}

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

.section-alt {
  background: var(--gray-100);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 41, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--sky-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--gray-600); margin-bottom: 0; font-size: 0.95rem; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 12px;
}

.step-number {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  color: var(--accent-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 0; }

/* About page */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.brand-links {
  padding: 14px 18px;
  background: var(--gray-100);
  border-left: 3px solid var(--accent-500);
  border-radius: 6px;
  font-size: 0.95rem;
}

.brand-links a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-links a:hover {
  color: var(--accent-500);
}

.story-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: -6px;
}

.mission-box {
  background: var(--navy-950);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.mission-box h3 {
  color: var(--sky-400);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mission-box p {
  font-size: 1.15rem;
  font-family: "Georgia", serif;
  color: var(--off-white);
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  color: var(--off-white);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { color: var(--off-white); }
.cta-band p { color: rgba(247, 246, 243, 0.78); margin-bottom: 28px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy-950);
  color: var(--sky-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  margin: 0 0 4px;
  font-family: inherit;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.contact-info-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 41, 0.06);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d8d6cf;
  background: var(--off-white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-body);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 14px;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(247, 246, 243, 0.75);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img { height: 44px; }

.footer-grid p { font-size: 0.9rem; margin-top: 12px; }

.footer-heading {
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; color: rgba(247, 246, 243, 0.75); }
.footer-links a:hover { color: var(--sky-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(247, 246, 243, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* RTL (Arabic) */
[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, system-ui, -apple-system, "Geeza Pro", Arial, sans-serif;
}

[dir="rtl"] .brand-links {
  border-left: none;
  border-right: 3px solid var(--accent-500);
}

[dir="rtl"] .step-number,
[dir="rtl"] .stat-number {
  direction: ltr;
}

/* Responsive */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-photo { justify-self: center; max-width: 320px; margin-top: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats .container { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .header-right .nav-cta { display: none; }
  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.open { max-height: 400px; padding: 12px 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 14px 24px; border-bottom: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
