/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --bg-color: #FAFAFA; /* Off-white / Sand */
  --bg-sand: #F4F1ED;
  --bg-sage: #E8EDE6; /* Soft Sage Green */

  --text-main: #2D3730; /* Dark forest green / near black */
  --text-muted: #5B6A5C;
  --text-light: #F4F1ED;

  --accent-primary: #6E8B74; /* Earthy Green */
  --accent-secondary: #B99976; /* Warm Terra/Sand */
  --accent-hover: #5A765F;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px rgba(45, 55, 48, 0.05);
  --shadow-md: 0 10px 20px rgba(45, 55, 48, 0.08);
  --shadow-lg: 0 20px 40px rgba(45, 55, 48, 0.12);
  --border-radius: 12px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 6rem 0;
}

.section-subtitle {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Background Utility Classes */
.bg-sand {
  background-color: var(--bg-sand);
}

.bg-sage {
  background-color: var(--bg-sage);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 139, 116, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--text-light);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  background-color: var(--bg-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, background-color 0.3s ease, padding 0.3s ease;
  z-index: 1000;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background-color: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(5px);
  padding: 0.2rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-logo {
  height: 220px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: -60px 0; /* Snijdt virtuele witruimte van het afbeeldingsbestand af zodat de witte balk niet onnodig meegroeit */
}

.navbar.scrolled .nav-logo {
  height: 50px;
}

.footer-logo {
  filter: invert(1) hue-rotate(180deg);
}

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

.nav-links a:not(.btn) {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-image: url('header.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px; /* Zorgt ervoor dat de tekst niet onder de navigatiebalk schuift */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(45, 55, 48, 0.15), rgba(45, 55, 48, 0.45));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--text-light);
}

.hero-content p {
  color: rgba(244, 241, 237, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(244, 241, 237, 0.95);
}

.trust-item i {
  color: var(--accent-primary);
  background: var(--bg-sand);
  border-radius: 50%;
  padding: 3px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .trust-bar {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mask-image {
  border-radius: 20px 100px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mask-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mask-image:hover img {
  transform: scale(1.05);
}

.features {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
}

.feature-item i {
  color: var(--accent-primary);
  font-size: 1.5rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover:before {
  transform: scaleX(1);
}

.service-card.highlight {
  background: var(--text-main);
  color: var(--text-light);
}

.service-card.highlight:before {
  background-color: var(--accent-secondary);
}

.service-card.highlight h3,
.service-card.highlight p {
  color: var(--text-light);
}

.service-card.highlight .card-icon {
  background: rgba(255,255,255,0.1);
  color: var(--accent-secondary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.service-list {
  margin-top: 2rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.service-list i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.highlight .service-list i {
  color: var(--accent-secondary);
}

/* Uitklapbare beschrijving op service cards */
.beschrijving-btn {
  background: none;
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: var(--transition);
  color: var(--accent-primary);
}

.service-card.highlight .beschrijving-btn {
  color: var(--accent-secondary);
}

.beschrijving-btn:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.service-card.highlight .beschrijving-btn:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: #fff;
}

.beschrijving-btn i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.beschrijving-btn.open i {
  transform: rotate(180deg);
}

.beschrijving-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.beschrijving-content.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 1rem;
}

/* Insights (Blog) */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.insight-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

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

.insight-content {
  padding: 2.5rem 2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--bg-sand);
  color: var(--accent-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.insight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--accent-primary);
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  gap: 0.8rem;
  color: var(--text-main);
}

/* Contact Section */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-details {
  margin-top: 3rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
}

.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: var(--text-main);
}

.tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(110, 139, 116, 0.1);
}

.submit-btn {
  width: 100%;
  border: none;
}

/* Calendar Mockup */
.calendar-mockup {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
}

/* Calendly Loading Spinner */
.calendly-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--bg-sage);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.cal-grid span {
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.cal-grid span.disabled {
  color: #ccc;
}

.cal-grid span.active {
  background-color: var(--accent-primary);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  margin: 0 auto;
}

.time-slots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.slot {
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--accent-primary);
}

.slot.selected {
  background-color: var(--accent-primary);
  color: #fff;
}

/* Footer */
.footer {
  background-color: var(--text-main);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Animations & Utilities */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal classes (Hooked in JS) */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.active {
  opacity: 1;
  transform: translate(0);
}



/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mask-image {
    order: -1;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.nav-active {
    left: 0;
  }

  .nav-links a:not(.btn) {
    color: var(--text-main);
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .nav-logo {
     height: 150px;
  }

  .navbar.scrolled .nav-logo {
     height: 40px;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Custom Image Classes */
.parallax-divider { height: 400px; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; margin: 4rem 0; }
.quote-box { max-width: 900px; margin: 4rem auto; padding: 0 1rem; text-align: center; }
.quote-box img { width: 100%; height: auto; border-radius: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05); }

/* ===========================================
   MOBILE ONLY (phones, max 480px)
   Does NOT affect tablet or desktop.
   =========================================== */
@media (max-width: 480px) {

  /* --- Global Spacing --- */
  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 4%;
  }

  .section-header {
    margin: 0 auto 2rem;
  }

  /* --- Typography --- */
  h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  /* --- Navigation --- */
  .nav-logo {
    height: 100px;
  }

  .navbar.scrolled .nav-logo {
    height: 35px;
  }

  .nav-links a:not(.btn) {
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  /* --- Hero Section --- */
  .hero {
    min-height: 100vh;
    min-height: 100svh; /* safe viewport height for mobile browsers */
    padding: 0 5%;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .trust-bar {
    margin-top: 2rem;
    gap: 0.6rem;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  /* --- About / Over Pivot --- */
  .about-grid {
    gap: 1.5rem;
  }

  .mask-image {
    border-radius: 12px 50px 12px 12px;
    max-height: 300px;
  }

  .mask-image img {
    max-height: 300px;
  }

  .about-text h2 {
    margin-top: 0.5rem;
  }

  .features {
    margin-top: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .feature-item img {
    max-width: 60px !important;
  }

  /* --- Parallax Divider (Zonnebloem) --- */
  .parallax-divider {
    height: 220px;
    margin: 2rem 0;
    background-attachment: scroll; /* parallax fixed doesn't work well on mobile */
  }

  /* --- Services / Trajecten --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* --- Quote Box (Inspiratie foto) --- */
  .quote-box {
    margin: 2rem auto;
  }

  .quote-box img {
    border-radius: 0.75rem;
  }

  /* --- Insights (Blog cards) --- */
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insight-content {
    padding: 1.5rem 1.25rem;
  }

  .insight-card h3 {
    font-size: 1.15rem;
  }

  /* --- Contact Section --- */
  .contact-wrap {
    gap: 2rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-details {
    margin-top: 1.5rem;
  }

  .detail-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .detail-item i {
    font-size: 1.5rem;
  }

  .glass-panel {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    font-size: 0.95rem;
    padding: 0.75rem 0;
  }

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

  .input-group input,
  .input-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.8rem;
  }


  .service-list li {
    font-size: 0.9rem;
  }

  /* --- Buttons general mobile touch sizing --- */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-outline {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* --- Calendly widget mobile height --- */
  .calendly-inline-widget {
    min-height: 500px !important;
    height: 550px !important;
  }

  /* --- Over Mij page header mobile spacing --- */
  .blog-header {
    padding: 100px 5% 40px;
  }
}
