/*
 * FitFix Style Guide - Based on TOTALBODYSTRONGGLOW Design System
 * Custom CSS to override existing theme styles with new brand identity
 */

/* CSS Reset - Box Sizing Normalization */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* HTML and Body Reset */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* CSS Custom Properties for Brand Colors */
:root {
  --primary-color: #ffcab1; /* Soft peach */
  --secondary-color: #77456f; /* Deep mauve */
  --background-color: #ce94b6; /* Muted pink */
  --neutral-color: #e2e8f0; /* Light slate gray */
  --text-dark: #2d3748; /* Dark text */
  --text-light: #ffffff; /* White text */
  --random-bg: url("/assets/images/illustrations/bg-1.svg"); /* Default background, overridden by JS */

  --online-color: var(--primary-color);
  --fitfix-color: var(--secondary-color);
  --products-color: var(--background-color);

  --gratis-bg: var(--secondary-color);
  --over-ons-bg: var(--primary-color);

  /* Form message colors */
  --success-bg: #d4edda;
  --success-text: #155724;
  --success-border: #c3e6cb;
  --error-bg: #f8d7da;
  --error-text: #721c24;
  --error-border: #f5c6cb;

  /* Additional utility colors */
  --gray-text: #666;
  --gradient-primary: rgba(255, 202, 177, 0.8);
  --white-alpha-25: rgba(255, 255, 255, 0.25);
  --white-alpha-80: rgba(255, 255, 255, 0.8);
  --white-alpha-90: rgba(255, 255, 255, 0.9);
  --purple-highlight: #802378;
  --gray-light: #f8f9fa;
}

/* Service Tags */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
}

.service-tag {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.service-tag.offline {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.service-tag.online {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.service-tag.products {
  background-color: var(--background-color);
  color: var(--text-light);
}

/* Typography - Roboto Condensed Base */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");

/* Global Typography Override */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
}

/* Body Text */
body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Page Layout - Flexbox for Footer Positioning */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.main-content {
  flex: 1;
  /* padding: 4rem; */
}

/* @media (max-width: 768px) { */
/*   .main-content { */
/*     padding: 2rem 1rem; */
/*   } */
/* } */

/* Responsive Typography */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* Heading Styles */
h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h2 {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 3rem 0;
  font-size: 3rem;
  font-weight: 100;
  text-wrap: balance;
  /* color: var(--card-title-color, #802378); */
  /* background: var(--bg-purple); */
  display: block;
  margin-inline: auto;
  /* width: max-content; */
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 100;
  line-height: 1;
  margin: 0 0 1rem 0;
  color: var(--secondary-color);
  letter-spacing: 0.05em;
}

h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

/* Responsive Headings */
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 14px;
  }
}

/* Global Background Override */
body {
  background-color: var(--background-color);
}

/* Button Styles */
.wp-block-button__link,
button,
input[type="submit"],
.btn {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  /* border-radius: 8px; */
  transition: all 0.3s ease;
  text-decoration: none;
}

.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Navigation Menu Styles */
.main-navigation a,
.site-header a {
  color: var(--text-dark);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  transition: color 0.3s ease;
}

.main-navigation a:hover,
.site-header a:hover {
  color: var(--secondary-color);
}

/* Form Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 2px solid var(--neutral-color);
  /* border-radius: 8px; */
  padding: 12px;
  font-family: "Roboto Condensed", sans-serif;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(255, 202, 177, 0.3); */
}

/* Card/Container Styles */
.widget,
.post,
.entry {
  background-color: var(--text-light);
  /* border-radius: 12px; */
  padding: 20px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  margin-bottom: 20px;
}

/* Link Styles */
a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* Footer Styles */
.site-footer,
.footer-container {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.site-footer a,
.footer-container a {
  color: var(--text-light);
}

.site-footer a:hover,
.footer-container a:hover {
  color: var(--primary-color);
}

/* Header Styles */
.site-header,
.header-container {
  background-color: var(--text-light);
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Image Styling */
.main-content img {
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .main-content img {
    max-width: 100%;
    height: auto;
  }
}

/* High Contrast Elements */
.highlight-box,
.call-to-action {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 20px;
  /* border-radius: 12px; */
  border-left: 4px solid var(--secondary-color);
}

/* Contact Form 7 Specific Styles */
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  margin-bottom: 15px;
}

.wpcf7-submit {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

/* WhatsApp Chat Button Override */
.qlwapp {
  background-color: var(--secondary-color);
}

/* ==========================================================================
   ELEVENTY-SPECIFIC STYLES
   ========================================================================== */

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
}

/* Header Styles */
.site-header {
  background-color: var(--text-light);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.logo {
  display: block;
  text-decoration: none;
}

.logo-image {
  height: 80px;
  width: auto;
  /* max-width: 187.5px; */
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a.active {
  color: var(--secondary-color);
  font-weight: 600;
  /* border-bottom: 2px solid var(--secondary-color); */
  padding-bottom: 4px;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--background-color)
  );
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  h1 {
    text-wrap: balance;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1rem;
    max-width: 100%;
  }
}

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

/* Page Hero */
.page-hero {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--primary-color);

  p {
    text-wrap: balance;
  }
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 12px 24px;
  /* border-radius: 8px; */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.btn-secondary {
  background-color: var(--white-alpha-25);
  color: var(--text-dark);
  border: 2px solid var(--white-alpha-80);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-link {
  background: none;
  color: var(--secondary-color);
  padding: 0;
  font-weight: 400;
}

.btn-link:hover {
  color: var(--primary-color);
}

/* Section Styles */
section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}

.intro-section,
.about-intro,
.about-mission {
  background-color: var(--white-alpha-90);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  p {
    max-width: 65ch;
  }
}

.intro-section .container {
  display: flex;
  gap: 2rem;
}
.intro-section .container .intro-image img {
  width: 100%;
}

/* About Intro Layout */
.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 3rem; */
  align-items: center;
  margin-top: 2rem;
  /* background-color: rgba(255, 255, 255, 0.8); */
  /* padding: 2rem; */
  border-radius: 12px;
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  position: relative;
  width: fit-content;
  margin: 2rem auto 0 auto;
}

.intro-image {
  max-width: 100%;
  transform: rotate();
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  transform: rotate(5deg);
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--white-alpha-80);
  padding: 2rem;
  border-radius: 1rem;
  transform: rotate(-0.5deg);
}

.intro-text p {
  margin: 0;
  line-height: 1.7;
}

/* Grid Layouts */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.services-detail {
  padding: 4rem 0;
}

.services-detail .subtitle {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 3rem;
  font-size: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-inline: 0.5rem;
}
@media (min-width: 769px) {
  .services-detail {
    background: var(--gradient-primary);
  }

  .services-detail h2 {
    background: transparent;
    color: var(--secondary-color);
  }
  .services-detail .subtitle {
    margin: 0 auto 3rem;
  }
}

.services-detail h2 {
  margin-bottom: 1rem;
}

.services-detail .subtitle {
  text-align: center;
  max-width: 60ch;
  margin-block: 0 3rem;
  }
}

.services-detail h2 {
  margin-bottom: 1rem;
}


.services-detail .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: masonry;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
}

/* Fallback for browsers without masonry support */
@supports not (grid-template-rows: masonry) {
  .services-detail .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 10px;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
  }

  .services-detail .services-grid > * {
    grid-row-end: span var(--row-span, 25);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-detail {
    padding: 3rem 0;
  }
}

.value-item,
.service-item {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* New Service Card Design - Horizontal Layout */
.service-card {
  background-color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 300px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Left layout - image on left, content on right */
.service-card--left {
  flex-direction: row;
}

/* Right layout - image on right, content on left */
.service-card--right {
  flex-direction: row-reverse;
}

.service-image {
  position: relative;
  flex: 0 0 45%;
  overflow: hidden;
  min-width: 350px;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(119, 69, 111, 0.1),
    rgba(255, 202, 177, 0.1)
  );
}

.service-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-content .service-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.service-image .service-tag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.service-card--left .service-image .service-tag {
  right: auto;
  left: 0;
}

.service-image .service-tag.offline {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.service-image .service-tag.online {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.service-image .service-tag.products {
  background-color: var(--background-color);
  color: var(--text-light);
}

.service-content p {
  flex-grow: 1;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.service-content .btn-link {
  align-self: flex-start;
  font-weight: 600;
  font-size: 1rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  font-size: 1rem;
}

.service-btn:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Services Page Grid - 2 column layout */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services-page-grid .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* Responsive breakpoints for better medium screen support */
@media (max-width: 1440px) {
  .service-image {
    flex: 0 0 40%;
    min-width: 280px;
  }

  .service-content {
    padding: 2rem;
  }
}

@media (max-width: 1200px) {
  .service-card--left,
  .service-card--right {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
  }

  .service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    /* border-radius: 12px 12px 0 0; */
  }

  .service-image .service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
  }

  .service-card--left .service-image .service-tag {
    right: 1rem;
    left: auto;
  }
}

@media (max-width: 900px) {
  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-inline: 0.5rem;
  }
}

/* Mobile responsive - adjust overlay for smaller screens */
@media (max-width: 768px) {
  .service-card--left,
  .service-card--right {
    min-height: 350px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-image .service-tag {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .service-card--left,
  .service-card--right {
    min-height: 320px;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }

  .service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-item p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-item .btn-link {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Services Section (Homepage) */
.services-section {
  padding: 4rem 0;
}

.services-section h2 {
  margin-bottom: 2.5rem;
}

.services-section .subtitle {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.services-section .services-grid {
  /* position: relative; */
  max-width: 900px;
  margin: 0 auto;
}

.services-section .services-grid > * {
  /* position: absolute; */
  /* width: calc(50% - 1rem); */
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .services-section .services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    position: static !important;
    height: auto !important;
  }

  .services-section .services-grid > * {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
  }

  .services-section {
    padding: 3rem 0;
  }
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

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

.cta-item {
  text-align: center;
}

.cta-item h3 {
  color: var(--text-light);
}

/* Forms - Moved to WebC Components */

/* Contact Page */
.contact-form-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-form-section .container {
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 500px;
}

/* Center cards horizontally */
.card--hero-right,
.card--hero-left {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  margin-bottom: 2rem;
}

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

.opening-hours li {
  padding: 0.25rem 0;
}

/* Testimonials Carousel */

.testimonial {
  background-color: transparent;
  padding: 3rem 2rem;
  text-align: center;
  /* box-shadow: none; */
}

.testimonial blockquote {
  margin: 0 0 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-wrap: balance;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  /* border-radius: 50%; */
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial cite {
  font-weight: 700;
  color: var(--secondary-color);
  font-style: normal;
  font-size: 1.1rem;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  /* border-radius: 50%; */
  background-color: var(--neutral-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .testimonial {
    padding: 2rem 1rem;
  }

  .testimonial blockquote {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .testimonial-photo {
    width: 50px;
    height: 50px;
  }
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 3rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  flex-shrink: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  gcolor: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-color);
}g

.footer-bottom {
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

/* Footer Icons */
.footer-section i {
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

/* Inline Icon Styles */
.inline-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
}

.footer-icon-link .inline-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--primary-color);
}

/* Footer Icon Links with Hover Zoom */
.footer-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.footer-icon-link:hover {
  transform: scale(1.3);
}

/* Trigger icon zoom when hovering over text links */
.footer-section p:hover .footer-icon-link {
  transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-image {
    height: 70px;
    /* max-width: 150px; */
  }

  .nav-menu {
    flex-direction: row;
    gap: 0.5rem;
    text-align: center;
    font-size: 14px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .nav-menu a {
    white-space: nowrap;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    width: 100%;
    margin: 2rem 0 0 0;
  }

  .intro-image img {
    max-width: 300px;
  }
}

/* Checkbox Styling - Moved to WebC Components */

/* Form Messages */
.form-message {
  padding: 1rem;
  /* border-radius: 8px; */
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Support both old and new naming conventions */
.form-message.success,
.form-message--success {
  background-color: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
}

.form-message.error,
.form-message--error {
  background-color: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
}

/* Legal Pages */
.legal-content {
  background-color: var(--text-light);
  padding: 3rem;
  /* border-radius: 12px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.last-updated {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-color);
  text-align: center;
  color: var(--gray-text);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
  }

  .site-footer {
    padding: 3rem 0 5rem 0;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 3rem 0 4.5rem 0;
  }
}

/* Fixed Background Tree Branch */
/* body::before { */
/*   content: ""; */
/*   position: fixed; */
/*   top: 0; */
/*   left: 0; */
/*   width: 322.89px; */
/*   height: 349.5px; */
/*   background-image: url('data:image/svg+xml,<svg data-name="branch" xmlns="http://www.w3.org/2000/svg" width="322.89" height="349.5" viewBox="0 0 322.89 349.5"><path d="M308.34,90c-18.97-9.67-50.16-10.17-64,5-5.67-1.5-11.33-3-17-4.5-22.57-3.99-38.06,5.59-52.5,11.5h-2v-.5c8.67-11.33,19.5-20.05,27-33,11.23-19.39,16.37-43.91,27-64.5-.17-1.17-.33-2.33-.5-3.5-1.67-.17-3.33-.33-5-.5-8.24,5.19-16.99,9.18-23,16.5-14.38,17.49-18.98,41.06-29.5,63-2.83,5-5.67,10-8.5,15-2.09,4.8-.91,13.49-3.5,18.5-2.83,2.17-5.67,4.33-8.5,6.5-7.79,6.24-12.6,15.82-21.5,21-10.36,6.03-22.99,7.76-27.5,19.5-.33.17-.67.33-1,.5h-.5c3.25-20.4,14.14-43.25,7-68.5-1-.5-2-1-3-1.5-10.01,7.71-30.92,66.15-34.5,83-.33,7.17-.67,14.33-1,21.5-1.69,5.71-8.08,9.76-11.5,14-8.33,10.33-20.65,21.8-25.5,35-.83.67-1.67,1.33-2.5,2-5.73-21.99,15.35-40.05,20.5-56,8.43-26.09-2.76-50.38-10-70.5-1.58-.99-1.71-1.35-4.5-1.5-18.44,13.91-22.76,66.05-17,98.5,2.02,11.41,9.35,26.43,4,39.5-1.03,2.52-4.61,2.76-6,5.5-1.65,4.33,1.97,8.43,1.5,13-1.5,6.17-3,12.33-4.5,18.5-2.79,13.2-2.35,24.89-5.5,35.5-1.58,5.31-6.7,15.23-5,20v1h2.5c9.95-14.09,8.41-31.58,12.5-52.5,2.5-11.17,5-22.33,7.5-33.5,1.82-1.28,21.55-8.51,23.5-9,10.67-.17,21.33-.33,32-.5,21.39-4.61,47.22-22.28,45.5-47-1-.67-2-1.33-3-2-7.37.58-11.58,4.83-17.5,7-17.15,6.29-36.31,9.78-49,20.5-6.53,5.51-9.66,17.25-17,21.5-3.67.83-7.33,1.67-11,2.5.65-5.42,8.61-12.03,12-17,10.58-15.49,20.8-31.18,34-44,2.83-2.17,5.67-4.33,8.5-6.5,5.05-6.35,8.58-17.68,15.5-22,6.83-1.67,13.67-3.33,20.5-5,7.17-3.83,14.33-7.67,21.5-11.5,8.16.96,10.78,8.38,19,10,17.55,3.46,28.65-7.78,40.5-11.5,8-1.33,16-2.67,24-4,.5-.67,1-1.33,1.5-2-.17-.83-.33-1.67-.5-2.5-10.1-6.2-31.46-15.26-44.5-17-16.15-2.16-33.65,16.47-42.5,23-8.59,6.34-17.1,9.25-29,12.5-.33-.33-.67-.67-1-1,7.58-7.82,19.38-10.12,28.5-16.5,6-6.33,12-12.67,18-19,17.06-13.55,35.09-23.45,62-27.5,16.45-2.47,28.59,7.63,41,11,14.71,3.99,54.89-.02,66.5-3,.33-.67.67-1.33,1-2,.91-5.5-10.09-8.75-14.5-11ZM20.84,209c-5.33-30.37-.64-65.26,12-84,5.32,2.78,6.38,14.91,8.5,21,10.14,29.16-.68,48.32-13,67.5-1.67,3.5-3.33,7-5,10.5-2.76-3.65-1.52-9.4-2.5-15ZM117.84,210h.5c1.16,5.07-2.68,9.31-4.5,13-11.7,23.75-32.67,25.3-66,26.5,3.65-25.27,54.7-24.41,70-39.5ZM73.84,188.5c-.67.33-1.33.67-2,1,.11-37.15,18.69-60.78,28.5-89,4.11,3.86,2.4,21.37,1,28-3.94,18.67-13.81,52.38-27.5,60ZM175.84,128.5c14.81,3.01,24.06,9.25,37.5,12.5-6.67,1.33-13.33,2.67-20,4-10.32,3.37-20.45,14.11-36.5,10.5-4.67-3-9.33-6-14-9,2.74-8.42,24.15-14.09,33-18ZM162.84,104.5c1.48-11.51,8.92-19.45,13-29,7.58-17.76,12.04-37.63,23-52,5.05-6.62,12.07-10.72,18.5-16h1c-5,27.47-18.47,54.84-33,74-7.17,7.83-14.33,15.67-21.5,23.5-.33-.17-.67-.33-1-.5ZM249.84,99c-.33-.5-.67-1-1-1.5,9.06-5.68,15.29-6.12,26.5-10.5,16.66.36,25.94,7.35,38,10.5.33.5.67,1,1,1.5-10.97,6-53.05,3.56-64.5,0Z" fill="%2377456f" fill-rule="evenodd"/></svg>'); */
/*   background-repeat: no-repeat; */
/*   background-size: contain; */
/*   opacity: 0.15; */
/*   z-index: -1; */
/*   pointer-events: none; */
/* } */

/* Footer Tree Branch */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 3.5rem;
  width: 322.89px;
  height: 349.5px;
  background-image: url('data:image/svg+xml,<svg data-name="branch" xmlns="http://www.w3.org/2000/svg" width="322.89" height="349.5" viewBox="0 0 322.89 349.5"><path d="M308.34,90c-18.97-9.67-50.16-10.17-64,5-5.67-1.5-11.33-3-17-4.5-22.57-3.99-38.06,5.59-52.5,11.5h-2v-.5c8.67-11.33,19.5-20.05,27-33,11.23-19.39,16.37-43.91,27-64.5-.17-1.17-.33-2.33-.5-3.5-1.67-.17-3.33-.33-5-.5-8.24,5.19-16.99,9.18-23,16.5-14.38,17.49-18.98,41.06-29.5,63-2.83,5-5.67,10-8.5,15-2.09,4.8-.91,13.49-3.5,18.5-2.83,2.17-5.67,4.33-8.5,6.5-7.79,6.24-12.6,15.82-21.5,21-10.36,6.03-22.99,7.76-27.5,19.5-.33.17-.67.33-1,.5h-.5c3.25-20.4,14.14-43.25,7-68.5-1-.5-2-1-3-1.5-10.01,7.71-30.92,66.15-34.5,83-.33,7.17-.67,14.33-1,21.5-1.69,5.71-8.08,9.76-11.5,14-8.33,10.33-20.65,21.8-25.5,35-.83.67-1.67,1.33-2.5,2-5.73-21.99,15.35-40.05,20.5-56,8.43-26.09-2.76-50.38-10-70.5-1.58-.99-1.71-1.35-4.5-1.5-18.44,13.91-22.76,66.05-17,98.5,2.02,11.41,9.35,26.43,4,39.5-1.03,2.52-4.61,2.76-6,5.5-1.65,4.33,1.97,8.43,1.5,13-1.5,6.17-3,12.33-4.5,18.5-2.79,13.2-2.35,24.89-5.5,35.5-1.58,5.31-6.7,15.23-5,20v1h2.5c9.95-14.09,8.41-31.58,12.5-52.5,2.5-11.17,5-22.33,7.5-33.5,1.82-1.28,21.55-8.51,23.5-9,10.67-.17,21.33-.33,32-.5,21.39-4.61,47.22-22.28,45.5-47-1-.67-2-1.33-3-2-7.37.58-11.58,4.83-17.5,7-17.15,6.29-36.31,9.78-49,20.5-6.53,5.51-9.66,17.25-17,21.5-3.67.83-7.33,1.67-11,2.5.65-5.42,8.61-12.03,12-17,10.58-15.49,20.8-31.18,34-44,2.83-2.17,5.67-4.33,8.5-6.5,5.05-6.35,8.58-17.68,15.5-22,6.83-1.67,13.67-3.33,20.5-5,7.17-3.83,14.33-7.67,21.5-11.5,8.16.96,10.78,8.38,19,10,17.55,3.46,28.65-7.78,40.5-11.5,8-1.33,16-2.67,24-4,.5-.67,1-1.33,1.5-2-.17-.83-.33-1.67-.5-2.5-10.1-6.2-31.46-15.26-44.5-17-16.15-2.16-33.65,16.47-42.5,23-8.59,6.34-17.1,9.25-29,12.5-.33-.33-.67-.67-1-1,7.58-7.82,19.38-10.12,28.5-16.5,6-6.33,12-12.67,18-19,17.06-13.55,35.09-23.45,62-27.5,16.45-2.47,28.59,7.63,41,11,14.71,3.99,54.89-.02,66.5-3,.33-.67.67-1.33,1-2,.91-5.5-10.09-8.75-14.5-11ZM20.84,209c-5.33-30.37-.64-65.26,12-84,5.32,2.78,6.38,14.91,8.5,21,10.14,29.16-.68,48.32-13,67.5-1.67,3.5-3.33,7-5,10.5-2.76-3.65-1.52-9.4-2.5-15ZM117.84,210h.5c1.16,5.07-2.68,9.31-4.5,13-11.7,23.75-32.67,25.3-66,26.5,3.65-25.27,54.7-24.41,70-39.5ZM73.84,188.5c-.67.33-1.33.67-2,1,.11-37.15,18.69-60.78,28.5-89,4.11,3.86,2.4,21.37,1,28-3.94,18.67-13.81,52.38-27.5,60ZM175.84,128.5c14.81,3.01,24.06,9.25,37.5,12.5-6.67,1.33-13.33,2.67-20,4-10.32,3.37-20.45,14.11-36.5,10.5-4.67-3-9.33-6-14-9,2.74-8.42,24.15-14.09,33-18ZM162.84,104.5c1.48-11.51,8.92-19.45,13-29,7.58-17.76,12.04-37.63,23-52,5.05-6.62,12.07-10.72,18.5-16h1c-5,27.47-18.47,54.84-33,74-7.17,7.83-14.33,15.67-21.5,23.5-.33-.17-.67-.33-1-.5ZM249.84,99c-.33-.5-.67-1-1-1.5,9.06-5.68,15.29-6.12,26.5-10.5,16.66.36,25.94,7.35,38,10.5.33.5.67,1,1,1.5-10.97,6-53.05,3.56-64.5,0Z" fill="%23ffffff" fill-rule="evenodd"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  transform: scaleX(-1) rotate(-2deg);
}

/* Service Hero Layout */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.service-image img {
  width: 100%;
  height: auto;
  /* border-radius: 12px; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
  .service-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-image {
    order: -1;
  }
}

.nav-menu a.active {
  text-decoration: none;
  z-index: 0;
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
}

.nav-menu a.active:before {
  content: "";
  -webkit-mask: url('data:image/svg+xml,%3Csvg width="219" height="13" fill="none" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.88654 3.19229C69.461 -0.499368 163.059 -0.77042 217.198 6.83211C217.73 6.90678 218.107 7.3881 218.054 7.92239C218 8.45667 217.534 8.85318 216.998 8.82055C177.928 6.44186 141.6 5.62277 110.857 5.56464C120.155 5.82788 128.816 6.23158 136.081 6.82572C136.632 6.87074 137.042 7.35346 136.997 7.9039C136.952 8.45435 136.469 8.86408 135.918 8.81907C116.218 7.20802 86.1346 7.00161 60.9452 7.19981C48.3571 7.29886 37.0023 7.49881 28.7946 7.67401C24.6908 7.7616 21.374 7.84301 19.0834 7.9025C17.9381 7.93225 17.0493 7.95652 16.447 7.97335C16.1459 7.98176 15.9164 7.98832 15.7622 7.99277L15.5304 7.99953C15.5298 7.99954 15.5295 7.99955 15.4998 6.99999C15.4329 6.00223 15.4333 6.0022 15.4341 6.00215L15.6956 5.98506C15.8692 5.97386 16.1282 5.95738 16.4705 5.93619C17.1551 5.8938 18.173 5.83257 19.5079 5.7571C22.1777 5.60616 26.1154 5.39823 31.1902 5.1701C41.3397 4.71384 56.0382 4.17673 74.2394 3.85295C100.872 3.37918 135.008 3.36213 173.368 4.72392C120.638 1.54841 53.7225 2.36342 1.99564 5.18931C1.44418 5.21944 0.972706 4.79681 0.942579 4.24535C0.912452 3.69389 1.33508 3.22241 1.88654 3.19229ZM15.4998 6.99999L15.4329 6.00223C14.8891 6.03869 14.4746 6.50391 14.501 7.0483C14.5273 7.5927 14.9856 8.01572 15.5304 7.99953L15.4998 6.99999Z" fill="%23000"/%3E%3C/svg%3E')
    center bottom no-repeat;
  mask: url('data:image/svg+xml,%3Csvg width="219" height="13" fill="none" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.88654 3.19229C69.461 -0.499368 163.059 -0.77042 217.198 6.83211C217.73 6.90678 218.107 7.3881 218.054 7.92239C218 8.45667 217.534 8.85318 216.998 8.82055C177.928 6.44186 141.6 5.62277 110.857 5.56464C120.155 5.82788 128.816 6.23158 136.081 6.82572C136.632 6.87074 137.042 7.35346 136.997 7.9039C136.952 8.45435 136.469 8.86408 135.918 8.81907C116.218 7.20802 86.1346 7.00161 60.9452 7.19981C48.3571 7.29886 37.0023 7.49881 28.7946 7.67401C24.6908 7.7616 21.374 7.84301 19.0834 7.9025C17.9381 7.93225 17.0493 7.95652 16.447 7.97335C16.1459 7.98176 15.9164 7.98832 15.7622 7.99277L15.5304 7.99953C15.5298 7.99954 15.5295 7.99955 15.4998 6.99999C15.4329 6.00223 15.4333 6.0022 15.4341 6.00215L15.6956 5.98506C15.8692 5.97386 16.1282 5.95738 16.4705 5.93619C17.1551 5.8938 18.173 5.83257 19.5079 5.7571C22.1777 5.60616 26.1154 5.39823 31.1902 5.1701C41.3397 4.71384 56.0382 4.17673 74.2394 3.85295C100.872 3.37918 135.008 3.36213 173.368 4.72392C120.638 1.54841 53.7225 2.36342 1.99564 5.18931C1.44418 5.21944 0.972706 4.79681 0.942579 4.24535C0.912452 3.69389 1.33508 3.22241 1.88654 3.19229ZM15.4998 6.99999L15.4329 6.00223C14.8891 6.03869 14.4746 6.50391 14.501 7.0483C14.5273 7.5927 14.9856 8.01572 15.5304 7.99953L15.4998 6.99999Z" fill="%23000"/%3E%3C/svg%3E')
    center bottom no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  height: 11px;
  position: absolute;
  right: -4px;
  bottom: -7px;
  left: -4px;
  z-index: -1;
  margin: 0 auto;
  max-width: 300px;
  background-color: var(--secondary-color);
}

.nav-menu a.active:nth-child(2n):before {
  transform: scaleX(-1);
}

.nav-menu a.active {
  color: var(--secondary-color);
}

.icon-placeholder {
  width: 150px;
  height: 150px;
  position: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.15;
  z-index: -1;
}

.icon-placeholder:nth-child(1) {
  top: 20vh;
  left: 20px;
}

.icon-placeholder:nth-child(2) {
  top: 40vh;
  right: 20px;
}

.icon-placeholder:nth-child(3) {
  top: 60vh;
  left: 10px;
}

.icon-placeholder:nth-child(4) {
  top: 80vh;
  right: 10px;
}

.icon-placeholder:nth-child(5) {
  top: 10vh;
  right: 30px;
  width: 100px;
  height: 100px;
  opacity: 0.1;
}

.icon-placeholder:nth-child(6) {
  top: 70vh;
  left: 5px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
}

.icon-placeholder:nth-child(7) {
  top: 30vh;
  left: 35px;
  width: 80px;
  height: 80px;
  opacity: 0.08;
}

.icon-placeholder:nth-child(8) {
  top: 50vh;
  right: 15px;
  width: 110px;
  height: 110px;
  opacity: 0.1;
}

/* Responsive behavior */
@media (max-width: 1400px) {
  .icon-placeholder {
    opacity: 0.1;
  }

  .icon-placeholder:nth-child(1),
  .icon-placeholder:nth-child(3),
  .icon-placeholder:nth-child(6),
  .icon-placeholder:nth-child(7) {
    left: 15px;
  }

  .icon-placeholder:nth-child(2),
  .icon-placeholder:nth-child(4),
  .icon-placeholder:nth-child(5),
  .icon-placeholder:nth-child(8) {
    right: 15px;
  }
}

@media (max-width: 1200px) {
  .icon-placeholder {
    width: 80px;
    height: 80px;
    opacity: 0.08;
  }

  .icon-placeholder:nth-child(1),
  .icon-placeholder:nth-child(3),
  .icon-placeholder:nth-child(6),
  .icon-placeholder:nth-child(7) {
    left: 10px;
  }

  .icon-placeholder:nth-child(2),
  .icon-placeholder:nth-child(4),
  .icon-placeholder:nth-child(5),
  .icon-placeholder:nth-child(8) {
    right: 10px;
  }

  .icon-placeholder:nth-child(5),
  .icon-placeholder:nth-child(7) {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .icon-placeholder {
    display: none;
  }
}

.page-wrapper {
  background-image: var(--random-bg);
  background-size: contain;
  /* background-attachment: fixed; */
  background-position: center;
}

/* Mobile background size override */
@media (max-width: 768px) {
  .page-wrapper {
    background-size: 230%;
  }

  /* Ensure all elements respect viewport */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix any potential grid overflow */
  .services-section .container {
    padding: 0 1rem;
    max-width: 100vw;
  }

  /* Make sure all cards stack properly */
  .cta-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* .squiggle { */
/*   filter: url(#squiggle); */
/*   p { */
/*     filter: none; */
/*   } */
/* } */

#wie-ben-ik {
  grid-template-columns: minmax(45ch, 60ch) minmax(200px, max-content);
  img {
    outline: 15px solid white;
  }
}

#wie-zijn-wij {
  margin-top: 5rem;
  grid-template-columns: minmax(150px, max-content) minmax(45ch, 60ch);
  .intro-image img {
    outline: 15px solid white;
    transform: rotate(-5deg);
  }
  .intro-text {
    transform: rotate(1.5deg);
  }
}

/* =================================
   Circular Images Design
   ================================= */
.service-card-circular {
  background: #efe2e9;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.service-card-circular:hover {
  transform: translateY(-6px);
/*   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); */
}

.service-circle-container {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.service-image-circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(119, 69, 111, 0.3);
  box-shadow: 0 8px 25px rgba(119, 69, 111, 0.15);
  transition: all 0.4s ease;
  margin: 0 auto 1.5rem;
}

.service-card-circular:hover .service-image-circle {
  transform: scale(1.03);
  border-color: rgba(119, 69, 111, 0.6);
  box-shadow: 0 12px 35px rgba(119, 69, 111, 0.25);
}

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

.service-tag-circular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--fitfix-color);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.service-tag-circular.online {
  background: var(--online-color);
  color: var(--secondary-color);
}

.service-tag-circular.products {
  background: var(--products-color);
  color: var(--text-light);
}

.service-content-circular h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-content-circular p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-wrap: pretty;
}

.service-btn-circular {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(119, 69, 111, 0.3);
  border: 2px solid var(--primary-color);
}

.service-btn-circular:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(119, 69, 111, 0.4);
}

/* =================================
   Responsive Design for Circular Variant
   ================================= */
@media (max-width: 900px) {
  .service-card-circular {
    min-height: 280px;
  }

  .service-image-circle {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .service-card-circular {
    padding: 1.5rem;
  }

  .service-image-circle {
    width: 100px;
    height: 100px;
  }
}

.cta-footer {
  margin-inline: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 10rem;
  .cta-block {
    background: var(--primary-color);
    width: 100%;
    /* border: 2px solid white; */
  }
  .cta-block:hover {
    color: var(--secondary-color);
  }
}


@media (min-width: 700px) {
  .cta-footer {
    flex-direction: row;

    justify-content: space-between;
    margin-block: 5rem;
    max-width: 1200px;
    margin-inline: auto;
    .cta-block {
      width: calc(33.33% - 1rem) !important;
      place-content: center;
      display: flex;
    }
    .cat-icon svg {
      width: 32px;
      height: 32px;
    }
  }
}

.cta-text,
.cta-hero-text {
  color: var(--secondary-color);
  font-weight: 600;
}
.cta-text:hover {
  color: var(--secondary-color);
}
/* ==========================================================================
   UTILITY CLASSES FOR INLINE STYLE REPLACEMENTS
   ========================================================================== */

/* Layout Utilities */
.footer-address-grid {
  display: grid;
  grid-template-columns: 28px auto;
}

.button-actions {
  margin-top: 2rem;
}

.button-with-margin {
  margin-right: 1rem;
}


@media (max-width: 768px) {
  .subtitle-highlight {
    background-color: var(--background-color);
  }
}


/* Content Styling */
.subtitle-highlight {
/*   background: var(--white-alpha-80); */
  padding: 1rem 0.75rem;
/*   border-radius: 2rem; */
  text-wrap: balance;
  color: var(--secondary-color);
}

.values-section-container {
  background: var(--gradient-primary);
  padding-top: 2rem;
}

.values-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   CTA Hero Section Styles
   ========================================================================== */

.cta-hero-section {
  padding: 4rem 0;
  /* margin-bottom: 4rem; */
}

.cta-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cta-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.cta-hero-content h2 {
  font-size: 2.5rem;
  color: #fff;
  background: transparent;
  /* color: #2c3e50; */
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
}

.cta-hero-content p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cta-hero-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: auto;
  min-width: auto;
}

.cta-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-hero-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cta-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-hero-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  text-wrap: balance;
}

.cta-hero-btn.ebook {
  background: #ffcab1;
  border-color: #ffcab1;
}

.cta-hero-btn.ebook:hover {
  background: #ffb599;
}

.cta-hero-btn.ebook .cta-hero-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(1122%)
    hue-rotate(203deg) brightness(94%) contrast(88%);
}

.cta-hero-btn.instagram {
  background: #ffcab1;
  border-color: #ffcab1;
}

.cta-hero-btn.instagram:hover {
  background: #ffb599;
}

.cta-hero-btn.instagram .cta-hero-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(1122%)
    hue-rotate(203deg) brightness(94%) contrast(88%);
}

.cta-hero-btn.contact {
  background: #ffcab1;
  border-color: #ffcab1;
}

.cta-hero-btn.contact:hover {
  background: #ffb599;
}

.cta-hero-btn.contact .cta-hero-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(1122%)
    hue-rotate(203deg) brightness(94%) contrast(88%);
}

@media (max-width: 768px) {
  .cta-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cta-hero-content h2 {
    font-size: 2rem;
  }

  .cta-hero-content p {
    font-size: 1.1rem;
  }

  .cta-hero-buttons {
    align-items: flex-start;
  }

  .cta-hero-btn {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .cta-hero-section {
    padding: 2rem 0;
  }

  .cta-hero-container {
    padding: 0 1rem;
  }

  .cta-hero-content h2 {
    font-size: 1.8rem;
  }

  .cta-hero-btn {
    padding: 0.875rem 1.5rem;
  }

  .cta-hero-text {
    font-size: 1rem;
  }

  .cta-hero-icon {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   FORCE LIGHT MODE - Override all dark mode preferences
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light !important;
  }

  html, body {
    background-color: var(--background-color) !important;
    color: var(--text-dark) !important;
  }

  * {
    color-scheme: light !important;
  }
}

/* Force light mode on all elements */
html {
  color-scheme: light only !important;
}

/* ==========================================================================
   Page Colors
   ========================================================================== */

.page-over-ons, .page-gratis {
  background-color: var(--over-ons-bg);
  .cta-footer .cta-block {
    background: var(--secondary-color);
    .cta-hero-text {
      color: var(--primary-color);
    }
    .cta-icon svg {
      color: var(--primary-color);
    }
  }
}

.page-ingeschreven {
    article{
        h3 {
            text-align: center;
        }
        p, ul, blockquote {
            max-width: 75ch;
            margin-inline: auto;
        }
        ul {
            padding: 0;
        }
        ul li {
            list-style-type: none;
            margin: 0;
        }
        blockquote {
            border-left: 3px solid #ff6b9d;
            padding-left: 1rem;
            font-style: italic;
        }
    }
    .content-block {
        width: max-content;
        margin-inline: auto;
        margin-block: 2rem;
        border-radius: 1rem;

        transform: rotate(.5deg);
        background: var(--photo-background);
        padding: 2rem;
    }

    /*@media (min-width: 769px) {
        .content-block {
            width: 70%;
        }
    }*/

    .bonus {
        padding: 2rem;
        background-color: var(--gradient-primary);
        border-radius: 1rem;
        box-shadow: var(--photo-shadow);
        backdrop-filter: blur(10px);
        transform: rotate(-1.5deg);
        position: relative;
        z-index: 1;
        width: max-content
    }

}
