:root {
  --shiraz: #C20344;
  --black: #000;
  --white: #fff;
  --grey: #F8F7F7;
  --bianca: #FAF5EA;
  --aquahaze: #EEF4F4;
  --mist: #DCE6E9;
  --mountain-meadow: #25D366;
  --champagne: #F2E6CC;

  /* Text colors */
  --text-grey: #666;
  --text-light-grey: #696766;

  /* Border colors */
  --border-grey: #E3E0DE;

  /* Social media colors */
  --postnl-orange: #FF6200;
  --facebook-blue: #1877F2;
  --instagram-pink: #E4405F;

  /* Typography scale */
  --font-size-base: 1rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.1rem;
  --font-size-h5: 1rem;
  --font-size-h6: 1rem;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black) !important;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-base);
}

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

*::selection {
  background: var(--shiraz);
  color: var(--white);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--shiraz);
  outline-offset: 2px;
}

.navbar {
  transition: padding 0.25s ease, background-color 0.25s ease;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-grey);
}

.navbar.navbar--shrink { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.navbar img { transition: height 0.25s ease; }
.navbar .nav-link { font-weight: 300; text-decoration: none !important; }
.navbar .nav-link:hover { text-decoration: underline !important; }
.navbar .nav-link.active { font-weight: 500; }
.navbar .btn:hover { text-decoration: none !important; }
.navbar-toggler { border: 0 !important; box-shadow: none !important; }

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.nav-icon img {
  transition: filter 0.3s ease;
}

.nav-icon:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(93%) saturate(7041%) hue-rotate(338deg) brightness(86%) contrast(114%);
}

/* Specific hover colors for social icons */
.nav-icon[aria-label*="PostNL"]:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(2661%) hue-rotate(2deg) brightness(101%) contrast(106%);
}

.nav-icon[aria-label*="Facebook"]:hover img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(2592%) hue-rotate(201deg) brightness(98%) contrast(98%);
}

.nav-icon[aria-label*="Instagram"]:hover img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(2899%) hue-rotate(332deg) brightness(95%) contrast(89%);
}

.navbar .navbar-logo { transition: height 0.25s ease; }
.navbar.navbar--shrink .navbar-logo { height: 50px; }
.navbar-contact-btn { white-space: nowrap; }

.custom-toggler {
  width: 40px;
  height: 40px;
  display: block;
  background-color: var(--black);
  mask: url("./img/menu.svg") no-repeat center;
  -webkit-mask: url("./img/menu.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler {
  mask: url("./img/x.svg") no-repeat center;
  -webkit-mask: url("./img/x.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.btn-primary {
  background-color: var(--shiraz);
  border: none !important;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--white) !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background-color: var(--black);
  text-decoration: none !important;
}

/* Ensure all buttons have no underline */
.btn,
.btn:hover,
.btn:focus {
  text-decoration: none !important;
}

/* Ensure consistent button sizing */
.btn,
.btn-lg {
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.25rem !important;
}

/* Typography hierarchy */
.container h1 { font-size: var(--font-size-h1); font-weight: 500; }
.container h2 { font-size: var(--font-size-h2); font-weight: 500; }
.container h3 { font-size: var(--font-size-h3); font-weight: 500; }
.container h4 { font-size: var(--font-size-h4); font-weight: 500; }
.container h5,
.container h6 { font-size: var(--font-size-h5); font-weight: 400; }

.container p { font-weight: 300; color: var(--text-light-grey); }
.container a { font-weight: 400; color: var(--black); text-decoration: underline; }
.container a:hover { text-decoration: none; }

/* Keep navbar and footer text colors as is */
.navbar p,
.navbar a,
.site-footer p,
.site-footer a { color: inherit; }

/* Keep headings black */
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 { color: var(--black); }

.hero-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.hero-content * { color: var(--white) !important; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin: 0;
  color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 600px;
}

.hero-content,
.hero-title { pointer-events: auto; }

.btn-hero {
  background-color: var(--white);
  color: var(--black) !important;
  border-radius: 0;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  text-decoration: none !important;
  width: auto;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.btn-hero:hover {
  background-color: var(--grey);
  color: var(--black) !important;
}

.cta {
  background-color: var(--aquahaze);
  margin-bottom: 1em;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  display: block;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: box-shadow 0.2s ease;
}

.cta:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.container-fluid .row > div:nth-child(1) .cta {
  animation-delay: 0.2s;
}

.container-fluid .row > div:nth-child(2) .cta {
  animation-delay: 0.4s;
  background-color: var(--bianca);
}

.container-fluid .row > div:nth-child(3) .cta {
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cta > a {
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.cta:hover img {
  transform: scale(1.03);
}

.cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  text-decoration: none !important;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.container-fluid .row > div:nth-child(1) .cta-link {
  animation-delay: 0.4s;
}

.container-fluid .row > div:nth-child(2) .cta-link {
  animation-delay: 0.6s;
}

.container-fluid .row > div:nth-child(3) .cta-link {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subcta-media img,
.hero-image img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta img.loaded,
.subcta-media img.loaded,
.hero-image img.loaded {
  opacity: 1;
}

.cta-text {
  text-decoration: none;
  font-weight: 300;
}

.cta-link:hover .cta-text {
  text-decoration: none;
}

.cta-arrow { width: 24px; height: 24px; margin-left: 1rem; flex-shrink: 0; display: block; transition: transform 0.2s ease; }
.cta-link:hover .cta-arrow { transform: translateX(3px); }

.site-footer {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

.footer-location,
.opening-hours {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer-location.is-visible,
.opening-hours.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.opening-hours.is-visible {
  transition-delay: 0.2s;
}

.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white) !important;
}

.site-footer p,
.site-footer li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer .btn {
  background: var(--white);
  color: var(--black) !important;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.site-footer .btn:hover {
  background: var(--grey);
  color: var(--black) !important;
  text-decoration: none;
}

.subcta { background-color: var(--grey); }

.subcta-item {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: stretch;
  height: 100%;
  transition: box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.2s ease;
}

/* Montagedienst page specific styling */
.services-section .subcta-item {
  background: var(--mist);
}

.subcta-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subcta .row > div:nth-child(1) .subcta-item {
  transition-delay: 0s;
}

.subcta .row > div:nth-child(2) .subcta-item {
  transition-delay: 0.15s;
}

.subcta .row > div:nth-child(3) .subcta-item {
  transition-delay: 0.3s;
}

.subcta-item,
.subcta-item:hover { text-decoration: none !important; }
.subcta-item:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.subcta-title { text-decoration: none !important; }

.subcta-media {
  width: 140px;
  flex: 0 0 140px;
  height: auto;
  overflow: hidden;
  display: block;
  background: var(--bianca);
}

.subcta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.subcta-item:hover .subcta-media img {
  transform: scale(1.05);
}

.subcta-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.subcta-title { margin: 0 0 .25rem 0; font-size: 1.05rem; font-weight: 600; }
.subcta-text { display: block; font-weight: 300; line-height: 1.5; opacity: .9; }

.footer-location {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-photo {
  width: 280px;
  height: 200px;
  overflow: hidden;
}

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

.footer-lines {
  display: grid;
  gap: .6rem;
}

.footer-line {
  display: grid;
  grid-template-columns: 20px 100px 1fr;
  gap: .75rem;
  align-items: center;
}

.footer-ico { display: inline-flex; align-items: center; justify-content: center; }
.footer-key { white-space: nowrap; }
.footer-val { font-variant-numeric: tabular-nums; text-decoration: none; }
.footer-val:hover { text-decoration: underline; }

.oh-week-range {
  margin: 0 0 .75rem 0;
  font-size: .875rem;
  opacity: .7;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .25rem;
  align-items: baseline;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.opening-hours.is-visible li {
  opacity: 1;
  transform: translateX(0);
}

.opening-hours.is-visible li:nth-child(1) { transition-delay: 0.05s; }
.opening-hours.is-visible li:nth-child(2) { transition-delay: 0.1s; }
.opening-hours.is-visible li:nth-child(3) { transition-delay: 0.15s; }
.opening-hours.is-visible li:nth-child(4) { transition-delay: 0.2s; }
.opening-hours.is-visible li:nth-child(5) { transition-delay: 0.25s; }
.opening-hours.is-visible li:nth-child(6) { transition-delay: 0.3s; }
.opening-hours.is-visible li:nth-child(7) { transition-delay: 0.35s; }

.opening-hours .oh-day { white-space: nowrap; }
.opening-hours .oh-time { font-variant-numeric: tabular-nums; }

.opening-hours li.is-today {
  font-weight: 700;
  opacity: 1;
}

.opening-hours li.is-open .oh-time::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.5rem;
  border-radius: 50%;
  background-color: var(--mountain-meadow);
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
}

.fab-whatsapp {
  position: fixed;
  right: calc(1.5rem + env(safe-area-inset-right, 0));
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mountain-meadow);
  color: var(--white) !important;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1100;
  transition: transform .2s ease, box-shadow .2s ease, background-color .3s ease;
  text-decoration: none;
}

.fab-whatsapp img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.fab-whatsapp:hover img {
  transform: rotate(15deg) scale(1.1);
}

@keyframes fabPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: no-preference) {
  .fab-whatsapp {
    animation: fabPulse 3.2s ease-in-out infinite;
  }
}

.fab-whatsapp:hover,
.fab-whatsapp:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:active {
  transform: scale(.98);
}

body.menu-open .fab-whatsapp {
  display: none !important;
}

.cc-window {
  font-family: "Work Sans", sans-serif;
}

.cc-btn {
  border-radius: 0 !important;
  text-decoration: none !important;
}

.cc-btn:hover {
  text-decoration: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-image img {
    animation: none !important;
    height: 100% !important;
  }
  
  .opening-hours li.is-open .oh-time::after {
    animation: none !important;
  }
  
  .fab-whatsapp {
    animation: none !important;
  }
  
  .nav-icon:hover,
  .cta:hover,
  .fab-whatsapp:hover img {
    transform: none !important;
  }
}

@media (min-width: 1200px) {
  .cta {
    max-height: 380px;
  }
  
  .fab-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    margin-top: 3rem;
    margin-bottom: 3rem !important;
  }
  .navbar-collapse .btn-primary {
    display: none;
  }
  
  .fab-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 767.98px) {
  :root {
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.35rem;
    --font-size-h3: 1.15rem;
  }
  
  .hero-image {
    height: 380px;
  }
  
  .hero-title {
    font-size: 1.25rem;
  }
  
  .hero-overlay {
    height: 60%;
  }
  
  .hero-content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.5rem;
  }
  
  .col-12.col-md-4 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .footer-location {
    grid-template-columns: 1fr;
  }
  
  .footer-photo {
    width: 100%;
    height: 180px;
  }
  
  .hero-image {
    height: 340px;
  }
}

/* ============================================
   Advies aan Huis Page Styles
   ============================================ */

/* Hero Advies Section */
.hero-advies {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--aquahaze) 0%, var(--bianca) 100%);
}

.hero-advies-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-advies-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-advies-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}


.hero-advies-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeInScale 0.8s ease-out 0.3s forwards;
  height: 300px;
}

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

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  border-radius: 0;
  transition: all 0.3s ease;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Intro Section */
.intro-section {
  padding: 3rem 0 2rem;
  background: var(--white);
}

.intro-section .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light-grey);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--white);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-grey);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-grey);
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--shiraz);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-grey);
  margin: 0;
}

.service-icon {
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-grey);
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: var(--grey);
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-number svg {
  width: 20px;
  height: 20px;
}

.benefit-card:hover .benefit-number {
  transform: scale(1.15) rotate(5deg);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--shiraz);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-grey);
  margin: 0;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-grey);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--shiraz) 0%, var(--aquahaze) 100%);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--shiraz);
  color: var(--shiraz);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.process-step-text {
  font-size: 0.95rem;
  color: var(--text-grey);
  margin: 0;
}

/* Award Section */
.award-section { padding: 5rem 0; background: var(--white); }

.award-label {
  display: inline-block;
  background: var(--shiraz);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  margin-bottom: 1.25rem;
}

.award-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.award-quote {
  border-left: 3px solid var(--shiraz);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light-grey);
  font-size: 1.05rem;
  line-height: 1.7;
}

.award-quote footer {
  font-style: normal;
  font-size: .9rem;
  margin-top: .5rem;
  opacity: .8;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--mist);
}

.cta-box {
  background: var(--white);
  padding: 3rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

.cta-text {
  font-size: 1.125rem;
  margin: 0;
  color: var(--black);
}

.cta-section .btn-light {
  background: var(--shiraz);
  color: var(--white) !important;
  border: none;
  border-radius: 0;
  font-weight: 500 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--aquahaze);
}

.accordion {
  --bs-accordion-border-radius: 0;
  --bs-accordion-border-color: transparent;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: auto;
}

.accordion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.accordion-header {
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.accordion-button {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  border-radius: 0 !important;
  padding: 1.5rem;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  border-bottom: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light-grey);
  font-weight: 300;
}

.accordion-body a {
  color: var(--black);
  font-weight: 400;
  text-decoration: underline;
}

.accordion-body a:hover {
  color: var(--shiraz);
}

/* Responsive adjustments for Advies aan Huis */
@media (max-width: 991.98px) {
  .hero-advies {
    padding: 4rem 0 3rem;
  }

  .hero-advies-title {
    font-size: 2rem;
  }

  .hero-advies-image {
    margin-top: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-box {
    padding: 2rem;
    text-align: center;
    flex-direction: column;
  }

  .cta-image {
    width: 100px;
    height: 100px;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-advies-title {
    font-size: 1.75rem;
  }

  .hero-advies-actions {
    flex-direction: column;
  }

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

  .section-title {
    font-size: 1.75rem;
  }

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

  .cta-section .btn-light {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Animation delays for Advies aan Huis page */
.benefits-section .col-lg-3:nth-child(1) .benefit-card { transition-delay: 0.1s; }
.benefits-section .col-lg-3:nth-child(2) .benefit-card { transition-delay: 0.2s; }
.benefits-section .col-lg-3:nth-child(3) .benefit-card { transition-delay: 0.3s; }
.benefits-section .col-lg-3:nth-child(4) .benefit-card { transition-delay: 0.4s; }

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.25s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }
.process-step:nth-child(6) { transition-delay: 0.35s; }
.process-step:nth-child(7) { transition-delay: 0.4s; }
.process-step:nth-child(8) { transition-delay: 0.45s; }

.faq-section .accordion-item:nth-child(1) { transition-delay: 0.1s; }
.faq-section .accordion-item:nth-child(2) { transition-delay: 0.15s; }
.faq-section .accordion-item:nth-child(3) { transition-delay: 0.2s; }
.faq-section .accordion-item:nth-child(4) { transition-delay: 0.25s; }
.faq-section .accordion-item:nth-child(5) { transition-delay: 0.3s; }
.faq-section .accordion-item:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   Over Ons Page Styles
   ============================================ */

/* Hero About Section */
.hero-about {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--grey) 0%, var(--bianca) 100%);
}

.hero-about-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-about-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light-grey);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-about-image {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeInScale 0.8s ease-out 0.3s forwards;
  height: 300px;
}

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

/* Our Story Section */
.our-story-section { padding: 5rem 0; background: var(--white); }
.story-content { opacity: 0; animation: fadeInUp 0.8s ease-out 0.3s forwards; }
.story-content p { font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; color: var(--text-light-grey); }
.story-content p:last-child { margin-bottom: 0; }

.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.story-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .story-photos { grid-template-columns: 1fr; }
}

/* Services Overview Section */
.services-overview-section { padding: 5rem 0; background: var(--grey); }

.service-overview-card {
  background: var(--white);
  padding: 0;
  height: 100%;
  border: 1px solid var(--border-grey);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-overview-card:nth-child(1) { animation-delay: 0.1s; }
.service-overview-card:nth-child(2) { animation-delay: 0.2s; }
.service-overview-card:nth-child(3) { animation-delay: 0.3s; }
.service-overview-card:nth-child(4) { animation-delay: 0.4s; }
.service-overview-card:nth-child(5) { animation-delay: 0.5s; }
.service-overview-card:nth-child(6) { animation-delay: 0.6s; }
.service-overview-card:nth-child(7) { animation-delay: 0.7s; }
.service-overview-card:nth-child(8) { animation-delay: 0.8s; }
.service-overview-card:nth-child(9) { animation-delay: 0.9s; }

.service-overview-image-link {
  display: block;
  text-decoration: none;
}

.service-overview-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-overview-card:hover .service-overview-image img {
  transform: scale(1.05);
}

.service-overview-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
  padding: 0 2rem;
  padding-top: 2rem;
}

.service-overview-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light-grey);
  margin: 0 0 1rem 0;
  padding: 0 2rem;
  flex: 1;
}

.service-overview-link {
  display: inline-block;
  color: var(--shiraz);
  font-weight: 500;
  text-decoration: none;
  padding: 0 2rem 2rem 2rem;
  transition: color 0.3s ease;
}

.service-overview-link:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Team Section */
.team-section { padding: 5rem 0; background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-member.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-member.is-visible:nth-child(1) { transition-delay: 0.05s; }
.team-member.is-visible:nth-child(2) { transition-delay: 0.1s; }
.team-member.is-visible:nth-child(3) { transition-delay: 0.15s; }
.team-member.is-visible:nth-child(4) { transition-delay: 0.2s; }
.team-member.is-visible:nth-child(5) { transition-delay: 0.25s; }
.team-member.is-visible:nth-child(6) { transition-delay: 0.3s; }
.team-member.is-visible:nth-child(7) { transition-delay: 0.35s; }
.team-member.is-visible:nth-child(8) { transition-delay: 0.4s; }
.team-member.is-visible:nth-child(9) { transition-delay: 0.45s; }
.team-member.is-visible:nth-child(10) { transition-delay: 0.5s; }
.team-member.is-visible:nth-child(11) { transition-delay: 0.55s; }

.sponsor-item.is-visible:nth-child(1) { transition-delay: 0.05s; }
.sponsor-item.is-visible:nth-child(2) { transition-delay: 0.1s; }
.sponsor-item.is-visible:nth-child(3) { transition-delay: 0.15s; }
.sponsor-item.is-visible:nth-child(4) { transition-delay: 0.2s; }
.sponsor-item.is-visible:nth-child(5) { transition-delay: 0.25s; }
.sponsor-item.is-visible:nth-child(6) { transition-delay: 0.3s; }
.sponsor-item.is-visible:nth-child(7) { transition-delay: 0.35s; }
.sponsor-item.is-visible:nth-child(8) { transition-delay: 0.4s; }
.sponsor-item.is-visible:nth-child(9) { transition-delay: 0.45s; }
.sponsor-item.is-visible:nth-child(10) { transition-delay: 0.5s; }
.sponsor-item.is-visible:nth-child(11) { transition-delay: 0.55s; }
.sponsor-item.is-visible:nth-child(12) { transition-delay: 0.6s; }
.sponsor-item.is-visible:nth-child(13) { transition-delay: 0.65s; }

.team-member-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--grey);
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member-info { text-align: center; }
.team-member-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0; color: var(--black); }

.team-member.is-visible:nth-child(12) { transition-delay: 0.6s; }

.team-member-image--vacancy {
  background: var(--shiraz);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.team-member-vacancy-content { text-align: center; }

.team-member-image--vacancy .team-member-vacancy-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.team-member-image--vacancy .team-member-vacancy-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  text-decoration: underline;
  word-break: break-all;
}

.team-member-image--vacancy .team-member-vacancy-link:hover { color: var(--white); }

/* Sponsors Section */
.sponsors-section { padding: 5rem 0; background: var(--grey); }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.sponsor-item {
  background: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s ease;
}

.sponsor-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sponsor-item:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); }

.sponsor-item img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(100%);
  opacity: 0.7;
}

.sponsor-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

/* Responsive adjustments for Over Ons */
@media (max-width: 991.98px) {
  .hero-about {
    padding: 4rem 0 3rem;
  }

  .hero-about-title {
    font-size: 2rem;
  }

  .hero-about-image {
    margin-top: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-about-title {
    font-size: 1.75rem;
  }

  .hero-about-text {
    font-size: 1.1rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sponsor-item {
    padding: 1.5rem;
    min-height: 100px;
  }

  .sponsor-item img {
    max-height: 60px;
  }
}

/* ===================================
   Contact Page
   =================================== */

.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: var(--white);
}

.contact-form {
  padding: 2rem;
  background: var(--grey);
  border-radius: 8px;
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--shiraz);
  box-shadow: 0 0 0 0.2rem rgba(194, 3, 68, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-info-wrapper {
  padding: 2rem;
  background: var(--aquahaze);
  border-radius: 8px;
  height: 100%;
}

.contact-info-item {
  padding-bottom: 1.5rem;
}

.contact-info-item:last-child {
  padding-bottom: 0;
}

.contact-info-item h3 {
  margin-bottom: 1rem;
}

.contact-info-item p {
  color: var(--black);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-detail img {
  flex-shrink: 0;
  filter: brightness(0);
}

.contact-detail a {
  color: var(--black);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--shiraz);
  text-decoration: underline;
}

.contact-map-link {
  color: var(--shiraz);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.5rem;
}

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

.opening-hours-compact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours-compact li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-grey);
}

.opening-hours-compact li:last-child {
  border-bottom: none;
}

.opening-hours-compact .oh-day {
  font-weight: 500;
}

.opening-hours-compact .oh-time {
  color: var(--black);
}

.opening-hours-compact li.is-today {
  font-weight: 700;
}

.opening-hours-compact li.is-open .oh-time::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.5rem;
  border-radius: 50%;
  background-color: var(--mountain-meadow);
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

/* Formspree badge */
.formspree-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.formspree-badge__label {
  font-size: .8rem;
  color: var(--text-grey);
  white-space: nowrap;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
}

/* Responsive adjustments for Contact */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-form,
  .contact-info-wrapper {
    padding: 1.5rem;
  }

  .contact-reasons-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .contact-form,
  .contact-info-wrapper {
    padding: 1.25rem;
  }

  .contact-reason-card {
    padding: 1.5rem;
  }

  .map-section iframe {
    height: 300px;
  }
}

/* Privacy Page */
.privacy-section { padding: 4rem 0 6rem; }

.privacy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.privacy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  color: var(--text-light-grey);
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light-grey);
  margin-bottom: .75rem;
}

.privacy-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-content a {
  color: var(--shiraz);
  text-decoration: underline;
}

.privacy-content a:hover { opacity: .8; }

.privacy-meta {
  font-size: .875rem;
  color: var(--text-grey);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-grey);
}

/* 404 Page */
.error-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--shiraz);
  margin-bottom: 0;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.error-text {
  font-size: 1.05rem;
  color: var(--text-light-grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}
