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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #16513F;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #16513F;
  color: #ffffff;
  border-color: #16513F;
}

.btn-primary:hover {
  background-color: #0f3d2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 81, 63, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #16513F;
  border-color: #16513F;
}

.btn-secondary:hover {
  background-color: #16513F;
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: #16513F;
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #16513F;
}

/* Highlight Text */
.highlight {
  color: #86A093;
}

.highlight-white {
  color: #ffffff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.brand {
  margin-bottom: 40px;
}

.brand-name {
  font-size: 4rem;
  font-weight: 700;
  color: #86A093;
  margin-bottom: 8px;
}

.brand-subtitle {
  font-size: 1.5rem;
  color: #16513F;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-title {
  font-size: 3.5rem;
  color: #16513F;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 2rem;
  color: #86A093;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.benefit {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  color: #16513F;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit p {
  font-size: 0.9rem;
  color: #666;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: #16513F;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.scroll-indicator a:hover {
  color: #86A093;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #86A093, #16513F);
  border-radius: 24px;
  transform: rotate(3deg);
  z-index: -1;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #16513F;
  margin-bottom: 32px;
}

.about-text {
  margin-bottom: 32px;
}

.about-text p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet {
  width: 12px;
  height: 12px;
  background-color: #16513F;
  border-radius: 50%;
  flex-shrink: 0;
}

.location-highlight {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #dee2e6;
}

.location-highlight h3 {
  color: #16513F;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.location-highlight p {
  color: #666;
  font-size: 0.9rem;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #16513F;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-list {
  margin-bottom: 60px;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.service-reverse {
  direction: rtl;
}

.service-reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #86A093, #16513F);
  border-radius: 24px;
  transform: rotate(-2deg);
  z-index: -1;
  transition: transform 0.3s ease;
}

.service:hover .service-image::before {
  transform: rotate(1deg);
}

.service-content h2 {
  font-size: 2rem;
  color: #16513F;
  margin-bottom: 16px;
}

.service-content p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.7;
}

.sub-services {
  list-style: none;
  margin-bottom: 32px;
}

.sub-services li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #666;
}

.sub-services li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #16513F;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.services-cta {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.services-cta h3 {
  font-size: 1.8rem;
  color: #16513F;
  margin-bottom: 16px;
}

.services-cta p {
  color: #666;
  margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial blockquote {
  color: #666;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.treatment {
  display: inline-block;
  background-color: #86A093;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #16513F, #86A093);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  color: #16513F;
  margin-bottom: 4px;
}

.author-location {
  font-size: 0.9rem;
  color: #666;
}

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

.testimonials-cta p {
  color: #666;
  margin-bottom: 24px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16513F, #86A093);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 48px;
  opacity: 0.9;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.cta-benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
}

.emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-benefit h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.cta-benefit p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.trust-item span:first-child {
  font-size: 1.2rem;
}

/* Footer */


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

.footer-brand h3 {
  color: #86A093;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.footer-brand p {
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
}



.social-icons span {
  font-size: 1.5rem;
}

.footer-services h4,
.footer-info h4 {
  color: #86A093;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-services ul,
.footer-info ul {
  list-style: none;
}

.footer-services li,
.footer-info li {
  margin-bottom: 8px;
}

.footer-services a,
.footer-info a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.footer-services a:hover,
.footer-info a:hover {
  color: #86A093;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 32px 0;
}



.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .brand-subtitle {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

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

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

  .service {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-reverse {
    direction: ltr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-content h2 {
    font-size: 1.5rem;
  }

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

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

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

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

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

  

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .brand-name {
    font-size: 2rem;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about,
  .services,
  .testimonials,
  .cta-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .services-cta {
    padding: 32px 20px;
  }
}

/* Performance Optimizations */
img {
  loading: lazy;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #86A093;
  outline-offset: 2px;
}

/* Smooth scrolling polyfill for older browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}





.footer-column h4 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-column a:hover {
  text-decoration: underline;
  color: #86A093;
}

.footer-contact p {
  margin: 6px 0;
  line-height: 1.6;
}





.social-icons a:hover {
  background-color: #86A093;
  color: #fff;
}

.footer hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 20px auto;
  max-width: 1200px;
}



.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #86A093;
  text-decoration: underline;
}

.footer {
  background-color: #16513F;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  /* removed fixed height to let footer grow on mobile */
  box-sizing: border-box;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin: 0 auto 24px auto;
  text-align: left;
  max-width: 1200px;
}

.footer-column h4 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-column a:hover {
  text-decoration: underline;
  color: #86A093;
}

.footer-contact p {
  margin: 6px 0;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  display: inline-block;
  background-color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  color: #16513F;
  font-size: 1.25rem;
  text-align: center;
  line-height: 34px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #86A093;
  color: #fff;
}

.footer hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 20px auto;
  max-width: 1200px;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #86A093;
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Mobile: stack bottom legal links --- */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* --- Mobile: stack treatment title above description --- */
@media (max-width: 640px) {
  .sub-services li { 
    display: block;
    color: #000000; /* base text = zwart */
  }
  .sub-services li::before { display: none; } /* hide bullet dot on mobile */
  .sub-services li .title {
    display: block;
    color: #16513F; /* groen voor titel */
    margin-bottom: 2px;
  }
  .sub-services li .desc {
    display: block;
    color: #000000;
    margin-top: 4px;
  }
}
