/*
Theme Name: Proza Media
Theme URI: https://prozamedia.nl
Author: Studio Kreatief
Author URI: https://kreatief.studio
Description: Een professionele one-page website voor Proza Media - kantoormanagement, schrijven, vertalen en projectmanagement.
Version: 1.0.6
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: proza-media
Tags: one-page, business, professional, dutch
*/

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --color-primary: #00aeef;
  --color-dark: #232222;
  --color-navy: #1a2742;
  --color-text: #4a5565;
  --color-text-dark: #364153;
  --color-text-light: #d1d5dc;
  --color-border: #d1d5dc;
  --color-bg-light: #f5f5f7;
  --color-bg-white: #ffffff;
  --color-bg-contact: #f9fafb;
  --color-white: #ffffff;

  --font-heading: "Roboto Slab", serif;
  --font-body: "Slabo 13px", serif;

  --section-padding: 96px;
  --container-max: 1232px;
  --container-side-padding: 24px;
  --border-radius-card: 10px;
  --border-radius-icon: 4px;
  --border-radius-badge: 50%;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.625;
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.section-label {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.section-label--left {
  text-align: left;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: var(--color-dark);
}

.section-title--white {
  color: var(--color-white);
}

.section-title--navy {
  color: var(--color-navy);
}

.section-title--center {
  text-align: center;
}

.site-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-side-padding);
  overflow-x: hidden;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-badge);
  background: var(--color-primary);
  flex-shrink: 0;
}

.check-list__icon--light svg path {
  stroke: #232222;
}

.check-list__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.check-list__text--dark {
  color: var(--color-dark);
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--container-side-padding);
  gap: 32px;
  transition: padding 0.3s ease;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3px;
  transition: font-size 0.3s ease;
}

.site-header.scrolled .logo-wordmark {
  font-size: 24px;
}

.logo-wordmark--proza {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.site-header:not(.scrolled) .logo-wordmark--proza {
  color: var(--color-white);
  text-decoration-color: var(--color-white);
}

.logo-wordmark--media {
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.site-header:not(.scrolled) .logo-wordmark--media {
  color: var(--color-white);
}

.logo-book-icon {
  flex-shrink: 0;
  margin: 0 4px;
  display: block;
  width: 46px;
  height: 36px;
  color: var(--color-primary);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    color 0.3s ease;
}

.site-header:not(.scrolled) .logo-book-icon {
  color: var(--color-white);
}

.site-header.scrolled .logo-book-icon {
  width: 42px;
  height: 33px;
  color: var(--color-primary);
}

/* WordPress Custom Logo */
.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.custom-logo {
  display: block;
  height: 58px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .custom-logo {
  height: 52px;
}

/* Variant Logo */
.site-logo--variant {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.custom-logo--variant {
  display: block;
  height: 58px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .custom-logo--variant {
  height: 52px;
}

/* Logo Switching based on background */
.site-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Show variant logo when NOT scrolled OR over dark section */
.site-header:not(.scrolled) .site-logo-wrapper--variant,
.site-header.dark-section .site-logo-wrapper--variant {
  display: flex;
}

.site-header:not(.scrolled) .site-logo-wrapper--default,
.site-header.dark-section .site-logo-wrapper--default {
  display: none;
}

/* Show default logo when scrolled on light background */
.site-header.scrolled:not(.dark-section) .site-logo-wrapper--variant {
  display: none;
}

.site-header.scrolled:not(.dark-section) .site-logo-wrapper--default {
  display: flex;
}

/* NAV LINKS */
/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Mobile Menu */
.nav-menu-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Mobile Menu Wrapper - hidden by default */
.nav-menu-wrapper {
  display: none;
}

/* Mobile Toggle Button - hidden by default */
.nav-toggle {
  display: none;
}

.nav-menu__link {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header:not(.scrolled) .nav-menu__link {
  color: var(--color-white);
}

/* Mobile nav items should always be dark, not affected by scroll state */
.nav-menu-wrapper .nav-menu__link {
  color: var(--color-dark) !important;
}

.nav-menu__link:hover {
  color: var(--color-primary);
}

/* CTA BUTTON */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #0098d4;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header:not(.scrolled) .nav-toggle span {
  background: var(--color-white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  min-height: 700px;
  /* Achtergrond wordt dynamisch ingesteld via inline style in front-page.php */
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 160px var(--container-side-padding) 100px;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.625;
  color: var(--color-text-light);
  max-width: 520px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--border-radius-card);
}

/* =========================================
   DIENSTEN SECTION
   ========================================= */
.diensten-section {
  background: var(--color-bg-light);
  padding: 96px 0;
}

.diensten-header {
  text-align: center;
  margin-bottom: 56px;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  overflow-x: hidden;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  min-width: 0;
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-dark);
  border-radius: 8px;
  margin-bottom: 32px;
  color: var(--color-primary);
}

.service-card__icon-wrap svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-dark);
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card__description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* =========================================
   CONTENT SECTIONS (dark/light alternating)
   ========================================= */
.content-section {
  padding: 112px 0;
}

.content-section--dark {
  background: var(--color-dark);
}

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

.content-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-side-padding);
}

.content-section__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.content-section__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content-section__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30px;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.content-section__body--dark-bg {
  color: var(--color-text-light);
}

.content-section__body--light-bg {
  color: var(--color-text);
}

.content-section__title {
  margin-bottom: 24px;
}

/* =========================================
   TRANSLATION IMAGE WITH ACCENT
   ========================================= */
.translation-image-wrapper {
  position: relative;
  width: 100%;
}

.translation-image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  right: auto;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-card);
  background: var(--color-primary);
  z-index: 0;
}

.translation-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-card);
}

/* =========================================
   TARIEVEN SECTION
   ========================================= */
.tarieven-section {
  background: var(--color-white);
  padding: 120px 0;
  text-align: center;
}

.tarieven-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-side-padding);
}

.tarieven-header {
  margin-bottom: 0;
}

.tarieven-body {
  max-width: 600px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tarieven-paragraph {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
  text-align: center;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: var(--color-bg-contact);
  padding: 112px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info__heading svg {
  flex-shrink: 0;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-navy);
}

.contact-info__title--dark {
  color: var(--color-dark);
}

.contact-info__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__line {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-dark);
}

.contact-info__note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
}

.contact-info__link {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info__link:hover {
  text-decoration: underline;
}

.contact-info__extra {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 8px 0;
}

.contact-info__paypal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-dark);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form-card {
  background: var(--color-primary);
  border-radius: 12px;
  padding: 48px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.contact-form-card__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--color-white);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
}

.form-field__input,
.form-field__textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  outline: none;
  transition: box-shadow 0.2s ease;
}

.form-field__input:focus,
.form-field__textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.form-field__textarea {
  height: 180px;
  resize: vertical;
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #111;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-dark);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-side-padding);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo,
.footer-brand .site-logo--variant {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.footer-logo .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-logo .custom-logo,
.footer-brand .site-logo--variant .custom-logo--variant {
  max-height: 60px;
  width: auto;
}

.footer-logo-wordmark {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.footer-logo-wordmark--proza {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 3px;
}

.footer-logo-wordmark--media {
  color: var(--color-white);
}

.footer-logo-book {
  flex-shrink: 0;
  margin: 0 4px;
  display: block;
  width: 46px;
  height: 36px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-light);
  max-width: 360px;
}

.footer-nav-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-list a {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--color-primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-light);
}

.footer-contact-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-value:hover {
  color: var(--color-primary);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text-light);
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text-light);
}

.footer-credit-link {
  color: var(--color-primary);
  text-decoration: none;
}

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

.footer-bottom-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
    --container-side-padding: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-inner {
    gap: 48px;
  }

  .content-section__inner {
    gap: 48px;
  }

  .content-section {
    padding: 80px 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-wordmark {
    font-size: 24px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Tablet breakpoint (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-max: 100%;
    --section-padding: 64px;
    --container-side-padding: 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-title {
    font-size: 34px;
  }

  .cta-title {
    font-size: 36px;
  }

  .diensten-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .diensten-section {
    padding: 72px 0;
  }

  .diensten-header {
    margin-bottom: 40px;
  }

  .service-card {
    padding: 32px;
  }

  .service-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-side-padding: 12px;
  }

  /* Header adjustments */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px var(--container-side-padding);
    gap: 8px;
    width: 100%;
    max-width: none;
  }

  /* Logo sizing on mobile */
  .site-logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: 0;
  }

  .custom-logo {
    height: 40px;
    width: auto;
  }

  .logo-wordmark {
    font-size: 18px;
  }

  .logo-book-icon {
    width: 32px;
    height: 25px;
  }

  /* Hide desktop menu and CTA */
  .nav-menu {
    display: none !important;
  }

  .nav-cta:not(.nav-cta--mobile) {
    display: none !important;
  }

  /* Show mobile toggle button */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  .site-header:not(.scrolled) .nav-toggle span {
    background: var(--color-white);
  }

  /* Mobile menu wrapper - default hidden off-screen */
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80vw;
    max-width: 80%;
    background: var(--color-white);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 12px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Show mobile menu when open */
  .nav-menu-wrapper.is-open {
    transform: translateX(0);
  }

  /* Backdrop overlay */
  .site-header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 998;
    transition: background 0.3s ease;
  }

  .site-header.nav-open::after {
    background: rgba(0, 0, 0, 0.4);
    pointer-events: auto;
  }

  /* Mobile menu logo */
  .site-logo--mobile {
    display: none;
  }

  .nav-menu-wrapper.is-open .site-logo--mobile {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
    margin-bottom: 4px;
  }

  .nav-menu-wrapper.is-open .site-logo--mobile .logo-wordmark {
    font-size: 18px;
  }

  .nav-menu-wrapper.is-open .site-logo--mobile .logo-book-icon {
    width: 32px;
    height: 25px;
  }

  .nav-menu-wrapper.is-open .site-logo--mobile .custom-logo {
    height: 40px;
  }

  /* Mobile menu items */
  .nav-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu-wrapper.is-open .nav-menu-mobile {
    display: flex;
  }

  .nav-menu-mobile li {
    list-style: none;
  }

  .nav-menu-mobile .nav-menu__link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    width: 100%;
    font-size: 16px;
    color: var(--color-dark);
    display: block;
    text-decoration: none;
  }

  /* Mobile CTA button */
  .nav-cta--mobile {
    display: none;
  }

  .nav-menu-wrapper.is-open .nav-cta--mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    margin-top: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px var(--container-side-padding) 60px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .diensten-section {
    padding: 60px 0;
  }

  .diensten-header {
    margin-bottom: 32px;
  }

  .content-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-section__inner--reversed .content-section__image {
    order: -1;
  }

  .content-section__image {
    height: 320px;
  }

  .translation-image {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-logo-wordmark {
    font-size: 22px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  /* Additional mobile utilities */
  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .tarieven-section {
    padding: 80px 0;
  }

  .tarieven-paragraph {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 20px;
  }

  /* Hero padding adjustment */
  .hero-section {
    min-height: auto;
  }

  /* Service cards padding */
  .service-card {
    padding: 28px;
  }

  /* Contact info blocks */
  .contact-info__block {
    padding: 16px 0;
  }

  /* Footer adjustments */
  .site-footer {
    padding: 40px 0 20px;
  }
}

/* Small devices (480px and below) */
@media (max-width: 480px) {
  :root {
    --container-side-padding: 16px;
  }

  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
    line-height: 30px;
  }

  .cta-title {
    font-size: 24px;
  }

  .contact-info__title {
    font-size: 18px;
  }

  .nav-menu-wrapper {
    width: 80vw;
    max-width: 80%;
    padding: 16px;
  }

  .nav-menu-wrapper.is-open {
    width: 80vw;
  }

  .site-nav {
    padding: 12px 0;
  }

  .service-card {
    padding: 24px;
  }

  .service-card__icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }

  .service-card__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .diensten-section {
    padding: 48px 0;
  }

  .diensten-header {
    margin-bottom: 28px;
  }

  .contact-form-card {
    padding: 16px;
  }

  /* Adjust gap for smaller screens */
  .check-list {
    gap: 12px;
  }

  .check-list__item {
    gap: 12px;
  }
}

/* =========================================
   FORM STATUS
   ========================================= */
.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(0, 174, 239, 0.12);
  color: #004a6e;
  border: 1px solid rgba(0, 174, 239, 0.3);
}

.form-status--error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* =========================================
   SCROLLED HEADER
   ========================================= */
.site-header.scrolled .site-nav {
  padding: 16px var(--container-side-padding);
}

/* =========================================
   HERO CTA (inline with hero)
   ========================================= */
.hero-cta {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 16px;
}

/* =========================================
   TARIEVEN CONTENT (WYSIWYG)
   ========================================= */
.tarieven-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.625;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
}

.tarieven-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .tarieven-paragraph {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 24px;
  }
}

/* Contact Form 7 styling (contact sectie) */
.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  display: grid;
  gap: 16px;
}

.wpcf7-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: white;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d6dbe3;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #1e2430;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
  appearance: none;
}

.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #00aeef;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.2);
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  background: black;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.25);
}

.wpcf7-response-output {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #c62828;
}

.wpcf7-not-valid {
  border-color: #c62828;
}
