/* #084187
======================================
CONSOLIDATED CSS
For EasyWayZoekhulp
======================================
*/

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #33a1c9;
  --primary-dark: #1e40af;
  --property: #2c5e1a;
  --accent-color: #f9a826;
  --green-bg: #e6ffe6;
  --yellow-bg: #fff8e6;
  --blue-bg: #f0f7ff;
  --sand-bg: #FFF1D5;
  --text-color: #111111;
  --text-color-dark: black;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #e1e7ec;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
}

/* ===== GENERAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
  font-size: 18px;
}

.menucontainer {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

/* Styling for all links on the website */
a {
  text-decoration: underline !important;
  /* Force underline on all links */
  text-underline-offset: 2px;
  /* Add some space between text and underline */
}

/* Keep underlines on hover state */
a:hover {
  text-decoration: underline !important;
}

/* You can customize the underline color if needed */
/* a:not(.toc-link):not(.view-details):not(.book-now):not(.search-button):not(.cta-button):not(.ratings-link):not(.deal-button) {
  text-decoration-color: var(--primary-color) !important;
  /* Uses your theme's primary color */
}

*/ .inline {
  display: inline-block;
}

/* Personal Story styling */
.personal-story {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;



}

/* Twee kolommen layout */
.hero-two-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Afbeeldingskolom */
.hero-image-col {
  flex: 1;
  min-width: 300px;
}

.hero-image2 {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Tekstkolom */
.hero-content-col {
  flex: 1;
  min-width: 300px;
}

/* Responsief: stapelt op mobiel */
@media (max-width: 768px) {
  .hero-two-columns {
    flex-direction: column;
  }
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.bgwit {
  padding: 5px;
  background-color: white;
}

.bgred {
  padding: 5px;
  /* background-color: rgb(232, 90, 42) !important; */
}

.bgzwart {
  padding: 5px;
  background-color: black;
}

.bgred2 {
  padding: 5px;
  background-color: rgb(232, 90, 42) !important;
  font-size: 27px !important;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;

}

.pointer {
  cursor: pointer
}

/* Specific exceptions where you might want to keep the existing styling */
.nav-link,
.logo,
.primary-button,
.footer-links2,
.destination-link,
.view-details,
.book-now,
.search-button,
.cta-button,
.deal-button,
.jump-to-search {
  /* These elements already have distinctive styling, so we're allowing them to keep their current hover effects */
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-position: inside;
  margin-bottom: 20px;
}

blockquote {
  font-style: italic;
  color: black;
  border-left: 4px solid #ccc;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background-color: white;
  position: relative;
}

blockquote::before {
  content: "“";
  font-size: 3em;
  position: absolute;
  left: 10px;
  top: -10px;
  color: #ccc;
  line-height: 1;
  font-family: serif;
}

blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-style: normal;
  color: black;
  text-align: right;
}

.containermap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

@media (max-width: 1024px) {
  .containermap {

    width: 100%;
  }
}

.noshow {
  display: none;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  /* margin-top: 20px; */

}

h2 {
  font-size: 27px !important;
  color: var(--primary-dark) !important;
  /* margin-top: 20px; */
  margin-bottom: 20px;
}

.h2header {
  font-size: 27px;
  color: white !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

h3 {
  font-size: 19px !important;
  color: var(--primary-dark);
  margin-top: 20px;
  margin-bottom: 20px;
}

.author-bio h3,
.author-bio h4 {
  font-size: 25px !important;
  color: var(--primary-dark);
  ;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tip {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.tip h3 {
  background-color: white;

  margin-top: 0;
}

h4 {
  font-size: 19px !important;
  color: var(--primary-dark) !important;
  /* margin-top: 20px; */
  margin-bottom: 20px;
}

h5 {
  font-size: 19px !important;
  color: var(--primary-dark) !important;
  /* margin-top: 20px; */
  margin-bottom: 20px;
}

h6 {
  font-size: 19px !important;
  color: var(--primary-dark) !important;
  /* margin-top: 20px; */
  margin-bottom: 20px;
}

.wit {
  color: white !important;
}


.zwart {
  font-weight: 600;
  color: black !important;
}

.zwart2 {
  font-weight: 700;
  color: black !important;
}

.w3-centern,
.w3-center,
.text-center {
  text-align: center;
}

/* Tips Section Styles */
.info-section {
  padding: 40px 0;
  background-color: var(--yellow-bg);
  color: black;
}

/* Tips Section Styles */
.tips-section {
  padding: 40px 0;
  background-color: var(--green-bg);
  color: black;
  overflow: visible;
  position: relative;
  padding-bottom: 6rem;
}

.tips2-section {
  padding: 40px 0;
  background-color: var(--blue-bg);
}

.property-section {
  padding: 20px 0;
  background-color: var(--green-bg);
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.section-stitle {
  max-width: 800px;
  color: #333;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb {
  /* padding: 0.75rem 1rem; */
  background-color: var(--primary-color);
  color: white;
  font-size: 0.8rem;
  text-align: center;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: white;
}

.breadcrumb li+li::before {
  content: "/";
  display: inline-block;
  padding: 0 0.5rem;
  color: white
}

.breadcrumb a {
  color: #33a1c9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: white;
  font-weight: 500;
}

/* ===== HERO SLIDESHOW ===== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1200px;

  overflow: hidden;
  padding: 0;
}

.hero-slideshow-section {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.slideshow-container,
.slideshow-container2 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: visible;
}

.slideshow-container2 {
  max-width: 400px;
}

.slide {
  display: none;
  width: 100%;
  position: relative;
}

.slide.fade {
  position: relative;
  z-index: 5;
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

.slide-image {
  position: relative;
  height: 75vh;
  max-height: 600px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slide-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  color: white;
  z-index: 3;
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Indicator dots */
.dots-container {
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 10;
  padding: 15px 0;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

/* ===== SEARCH BUTTON ===== */
.search-button {
  background-color: #225b32;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  align-items: center;
  gap: 10px;
}

.search-button:hover {
  background-color: #1a4626;
}

.search-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 91, 50, 0.2);
}

/* ===== TABLE OF CONTENTS ===== */
.toc-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  margin: 20px auto;
  max-width: 90%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toc-header {
  margin-bottom: 8px;
  text-align: center;
}

.toc-title {
  color: #2d3748;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.toc-item {
  margin: 5px;
  flex-grow: 1;
  text-align: center;
}

.toc-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #33a1c9;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  height: 100%;
  border: 1px solid transparent;
}

.toc-link:hover {
  background-color: #e6f7ff;
  border-color: #33a1c9;
  transform: translateY(-2px);
}

.toc-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.toc-text {
  font-size: 15px;
  font-weight: 500;
}

/* ===== SECTION TRANSITIONS ===== */
.section-transition {
  padding: 40px 0;
  margin: 20px 0;
  background-color: white;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* .section-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #33a1c9;
}
 */
.transition-content {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 30px;
}

.transition-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(51, 161, 201, 0.1);
  border-radius: 50%;
}

.transition-icon img {
  width: 30px;
  height: 30px;
}

.transition-text {
  flex-grow: 1;
}

.transition-text h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
}

.transition-text p {
  /* margin: 0; */
  font-size: 16px;
  line-height: 1.6;
}

/* Different styles per transition type */
.section-transition.accent {
  background-color: var(--green-bg);
}

.section-transition.accent::before {
  background-color: #33a1c9;
}

.section-transition.urgent {
  background-color: var(--yellow-bg);
}

.section-transition.urgent::before {
  background-color: #ffa500;
}

.section-transition.urgent .transition-icon {
  background-color: rgba(255, 165, 0, 0.1);
}

.section-transition.informative {
  background-color: var(--blue-bg);
}

.section-transition.informative::before {
  background-color: #4285f4;
}

.section-transition.informative .transition-icon {
  background-color: rgba(66, 133, 244, 0.1);
}

.section-transition.idee {
  background-color: var(--light-bg);
}

.gebruikers-section {
  background-color: white;
  padding: 40px 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* ===== LASTMINUTE & DEALS SECTION ===== */
.lastminute-section {
  background-color: var(--yellow-bg);
  padding: 40px 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.lastminute-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #2c3e50;
}

.lastminute-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.lastminute-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.tips-section2 {
  background-color: var(--blue-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-section {
  background-color: var(--blue-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.form-section h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.5em;
}

/* Deal Card Styling */
.deal-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.deal-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: #ff6b6b;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 30px;
  transform: rotate(45deg);
  transform-origin: right top;
  z-index: 2;
  letter-spacing: 1px;
}

.deal-badge-seasonal {
  background-color: #3498db;
}

.deal-image {
  height: 180px;
  overflow: hidden;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.05);
}

.deal-content {
  padding: 20px;
}

.deal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  line-height: 1.3;
}

.deal-details {
  margin-bottom: 15px;
  font-size: 14px;
}

.deal-details p {
  margin: 5px 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.deal-icon {
  font-style: normal;
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 15px;
}

.deal-price {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
  flex-wrap: wrap;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-right: 8px;
}

.price-new {
  font-size: 22px;
  font-weight: 700;
  color: #ff6b6b;
  margin-right: 8px;
}

.price-period {
  font-size: 18px;
  color: #777;
}

.deal-button {
  display: block;
  cursor: pointer;
  width: 100%;
  background-color: #f8b500;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.deal-button:hover {
  background-color: #e6a800;
}

/* Seasonal deal styling */
.deal-card.seasonal {
  border: 2px solid #3498db;
}

/* CTA Section */
.lastminute-cta {
  text-align: center;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.lastminute-cta p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: #2c3e50;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1a252f;
}


/* ===== PROPERTY CARDS ===== */
/* Properties Container */
.properties-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 15px;
}

.property-heading {
  text-align: center;
  font-size: 32px;
  margin: 40px 0 10px;
  color: #1e3a8a;
}

/* Property Card Styles */
.property-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Property Summary Section */
.property-summary {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Property Image */
.property-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* Use aspect ratio instead of fixed height */
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: contain
}

@media (min-width: 769px) {
  .property-summary {
    flex-direction: row;
  }

  .property-image-container {
    width: 60%;
    /* Changed from 40% to 60% */
    height: auto;
  }

  .property-quick-facts {
    width: 40%;
    /* Changed from 60% to 40% */
  }
}

.property-summary:hover .property-image {
  transform: scale(1.05);
}

/* Rating Badge */
.rating-badge {

  padding: 8px 15px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  border: 1px solid black;
  display: block;
  width: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-badge.absolute {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
  padding: 6px 14px;
  font-size: 15px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Property Quick Facts */
.property-quick-facts {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Property Title */
.property-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Property Key Details */
.key-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #4b5563;
}

.key-details .location {
  font-weight: 500;
  color: #374151;
}

/* Feature Tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.view-details {
  background-color: var(--accent-color) !important;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.view-details:hover {
  background-color: var(--primary-dark);
}

.view-details .icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.property-card.expanded .view-details .icon {
  transform: rotate(180deg);
}

.book-now {
  display: inline-block;

  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  flex: 1;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.book-now:hover {
  background-color: #1e40af;
}

/* Property Details Section */
.property-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  background-color: #f9f9f9;
}

.property-card.expanded .property-details {
  max-height: 5000px;
  /* High enough to accommodate all content */
}

.details-content {
  padding: 30px 20px;
  border-top: 1px solid #e0e0e0;
}

/* Tabs Navigation */
.detail-tabs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 25px;
}

.detail-tabs::-webkit-scrollbar {
  height: 4px;
}

.detail-tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.detail-tabs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.tab {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.tab:hover {
  color: white;
}

.tab.active {
  color: white;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #1e3a8a;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Content Highlights */
.content-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.highlight-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.highlight-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.highlight-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.highlight-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.highlight-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Content Main */
.content-section {
  margin-bottom: 2.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-dark);
}

.content-section p {
  line-height: 1.6;
  color: var(--text-medium);
}

/* Unique Features */
.unique-features {
  margin-top: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  position: relative;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  /* padding: 0.5rem; */
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-medium);
  margin: 0;
}

/* Experience Steps */
.experience-steps {
  margin-top: 1.5rem;
}

.experience-step {
  position: relative;
  padding: 1.5rem;
  padding-left: 4rem;
  margin-bottom: 1.5rem;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
}

.step-number {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.experience-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.experience-step p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-medium);
  margin: 0;
}

/* ===== FACILITIES TAB ===== */
.features-section {
  margin-bottom: 30px;
}

.property-highlights {
  margin-top: 2rem;
}

.property-highlights h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-category {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.highlight-category h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-dark);
}

/* ===== LOCATION TAB ===== */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  flex: 2;
  height: 300px;
  background-color: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  flex: 1;
}

.location-details h4 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

.location-details p {
  margin-bottom: 15px;
}

.poi-list {
  list-style: none;
}

.poi-list li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.poi-list .poi-icon {
  margin-right: 8px;
}

/* ===== PRICING TAB ===== */
.pricing-container h3 {
  margin-bottom: 15px;
  color: #1e3a8a;
}

.verification-info {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  border-left: 4px solid #33a1c9;
}

.verification-info span {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.verification-icon {
  color: #2ecc71;
  font-size: 18px;
  margin-right: 8px;
  font-weight: bold;
}

.update-schedule {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e0e6ed;
  font-size: 14px;
  color: #555;
}

.info-icon {
  color: #3498db;
  margin-right: 8px;
  font-size: 16px;
}

.price-fluctuation-notice {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.warning-icon {
  color: #f39c12;
  margin-right: 8px;
  font-size: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.pricing-table th {
  background-color: #1e3a8a;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 500;
}

.pricing-table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

.pricing-table tbody tr:hover {
  background-color: #f9fafb;
}

.price-amount {
  font-weight: 700;
  color: #1e3a8a;
}

.pricing-notes {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.pricing-notes h4 {
  margin-bottom: 15px;
  color: #1e3a8a;
  font-size: 18px;
}

.pricing-notes ul {
  padding-left: 20px;
}

.pricing-notes li {
  margin-bottom: 8px;
  color: #4b5563;
}

/* ===== REVIEWS TAB ===== */
.review-section {
  margin-bottom: 30px;
}

.review-methodology {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.methodology-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.methodology-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.methodology-badge {
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-image {
  /*   width: 50px;
  height: 50px;
 
 */
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 10px;
  /* object-fit: cover; */
}

.author-bio {
  margin: 0;
  text-align: center;
}

.author-info h4 {
  margin-bottom: 5px;
  color: #1e3a8a;
}

.ratings-link1 {
  display: inline-flex;
  align-items: center;
  margin: 10px auto;
  color: black;

  padding-bottom: 2px;
}

.ratings-link img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.review-date {
  font-size: 14px;
  color: #666;
}

.review-breakdown {
  margin-bottom: 2.5rem;
}

.score-summary {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.score-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.score-card.primary {
  background-color: var(--primary-dark);
  color: white;
}

.score-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.score-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.score-categories {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.score-category {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.score-category.outstanding {
  border-left: 4px solid var(--success-color);
}

.score-category.considerations {
  border-left: 4px solid var(--warning-color);
}

.category-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.score-category.outstanding .category-label {
  color: var(--success-color);
}

.score-category.considerations .category-label {
  color: var(--warning-color);
}

.category-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  background-color: #e6fffa;
  color: #0d9488;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.consideration-tag {
  background-color: #fff7ed;
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.detailed-scores {
  margin-top: 2rem;
}

.detailed-scores h6 {
  margin-top: 0;
  margin-bottom: 0;

}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.score-detail {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.score-header h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.score-value {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.score-value.outstanding {
  background-color: #e6fffa;
  color: #0d9488;
}

.score-value.good {
  background-color: #ecfdf5;
  color: #10b981;
}

.score-value.average {
  background-color: #fff7ed;
  color: #f59e0b;
}

.review-container {
  margin-top: 30px;
  background-color: white;
}

.review-container h4 {
  margin-bottom: 15px;
  color: #1e3a8a;
}

.section-content {
  color: #4b5563;
  line-height: 1.6;
}

.section-content h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: #1e3a8a;
  font-size: 16px;
}

.section-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.section-content li {
  margin-bottom: 5px;
}

.review-quotes {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.review-quote {
  margin-bottom: 15px !important;
  margin-top: 15px !important;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e7eb;
}

.review-quote:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.quote-text {
  font-style: italic;
  margin-bottom: 10px;
  color: #4b5563;
}

.quote-author {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.author-name {
  font-weight: 600;
  color: #1e3a8a;
}

.quote-date {
  color: #6b7280;
}

/* ===== GALLERY TAB ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== MOBILE ACCORDION ===== */
.mobile-accordion {
  display: none;
}

.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: white;
}

.accordion-header {
  background-color: #f9fafb;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #1e3a8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f3f4f6;
}

.accordion-icon {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 15px;
  border-top: 1px solid #e5e7eb;
}


/* ===== JUMP TO SEARCH BUTTON ===== */
.jump-to-search {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #1e3a8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 900;
  transition: all 0.3s ease;
  text-decoration: none;
}

.jump-to-search:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.jump-to-search:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.jump-to-search.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.jump-to-search svg {
  stroke: white;
}

.affiliate-disclosure {
  padding-top: 10px;
  padding-bottom: 10px;

}

/* ===== RESPONSIVE STYLING ===== */
@media (min-width: 1024px) {
  .property-summary {
    flex-direction: row;
    min-height: 280px;
  }



  .location-info {
    flex-direction: row;
  }
}

@media (min-width: 480px) {
  .key-details {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .key-details>span {
    margin-right: 15px;
  }
}

@media (max-width: 992px) {

  .property-card,
  .section-stitle {
    width: 750px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .property-card,
  .section-stitle {
    width: 650px;
  }

  .section-title {
    font-size: 24px;
  }

  .content-highlights {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .score-summary {
    flex-direction: column;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .transition-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .transition-icon {
    margin: 0 auto;
  }

  .lastminute-grid {
    grid-template-columns: 1fr;
  }

  .lastminute-section {
    padding: 40px 20px;
  }

  .property-card .detail-tabs {
    display: none !important;
  }

  .mobile-accordion {
    display: block;
    margin-bottom: 20px;
  }

  .tab-content {
    display: none !important;
  }

  .prev,
  .next {
    padding: 12px;
    font-size: 18px;
    width: 32px;
    height: 32px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .slide-image {
    min-height: 350px;
  }

  .jump-to-search {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }

  .verification-info {
    padding: 12px;
    font-size: 14px;
  }

  .verification-info span {
    font-size: 14px;
  }

  .update-schedule,
  .price-fluctuation-notice {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .toc-title {
    font-size: 16px;
  }

  .toc-item {
    flex-basis: 100%;
  }

  .prev,
  .next {
    padding: 8px;
    font-size: 14px;
  }

  .slide-image {
    min-height: 300px;
  }

  .imgscroll {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 500px) {

  .property-card,
  .section-stitle {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .jump-to-search {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }

  .jump-to-search svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 769px) {
  .mobile-accordion {
    display: none;
  }
}

/* Fix voor de cursor op property cards
 * Dit zorgt ervoor dat de cursor alleen als pointer (handje) wordt weergegeven
 * op daadwerkelijk klikbare elementen, zoals links en knoppen.
 */

/* Reset cursor voor de hele property card naar standaard */
.property-card {
  cursor: default !important;
}

/* Reset cursor voor niet-klikbare container elementen binnen de card */
.property-summary,
.property-image-container,
.property-quick-facts,
.property-details,
.key-details,
.feature-tags,
.details-content,
.pricing-container,
.review-section,
.gallery-container,
.tab-content,
.review-container,
.review-methodology,
.property-content,
.location-info,
.pricing-table,
.experience-steps,
.feature-grid,
.content-highlights {
  cursor: default !important;
}

/* Behoud pointer cursor alleen voor klikbare elementen */
.property-card a,
.property-card button,
.view-details,
.book-now,
.tab,
.accordion-header,
.gallery-item,
.property-image-container img[onclick],
.slide-controls,
.dots-container .dot,
.deal-card .book-now {
  cursor: pointer !important;
}

/* Zorg dat tekst elementen de text-selection cursor behouden */
.property-card p,
.property-card .property-title,
.property-card h2,
.property-card h3,
.property-card h4,
.property-card h5,
.property-card li,
.property-card .review-quote {
  cursor: text !important;
}

/* Voor elementen die als link fungeren maar semantisch geen links zijn */
.property-card .feature-tag[onclick],
.property-card .deal-price[onclick],
.property-card .feature[onclick] {
  cursor: pointer !important;
}

/* Zorg dat de hover effect en events nog steeds werken op klikbare elementen */
.view-details:hover,
.book-now:hover,
.tab:hover,
.accordion-header:hover {
  cursor: pointer !important;
}

/* Update scroll-container2 to properly enable horizontal scrolling */
div.scroll-container2 {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px;
  gap: 10px;
  /* Adds spacing between images */
  width: 100%;
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: #33a1c9 #f0f0f0;
  /* For Firefox */
}

div.scroll-container2::-webkit-scrollbar {
  height: 8px;
  /* Height of horizontal scrollbar */
}

div.scroll-container2::-webkit-scrollbar-thumb {
  background-color: #33a1c9;
  /* Scrollbar color */
  border-radius: 4px;
}

div.scroll-container2::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  /* Scrollbar track color */
}

div.scroll-container2 img {
  flex: 0 0 auto;
  /* Prevents the images from shrinking */
  padding: 5px;
}

.imgscroll {
  width: 33%;
  height: auto;
}

@media (max-width: 768px) {
  .imgscroll {
    width: 50%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .imgscroll {
    width: 100%;
    height: auto;
  }
}

.w3-margin-top {
  margin-top: 16px
}

.w3-margin-bottom {
  margin-bottom: 16px
}

.w3-margin {
  margin: 16px
}


/* search  */
.noshow {
  display: none
}

.w3-button-orange {
  display: inline-block;
  margin: 4px;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: auto;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  background-color: #f9a826;
  ;
  color: black;
  cursor: pointer
}

.search-section * {
  box-sizing: border-box;
}

.search-section {
  color: #333;

  background-color: var(--blue-bg);
  padding: 40px 0;
}

.search-section2 {
  color: #333;

  padding: 40px 0;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-container img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background-color: white;
  padding: 15px;
}

.logo-container img:hover {
  opacity: 1;
}

.link-section {
  color: black;
  background-color: var(--light-bg);
  padding: 40px 0;
}

.compleet-section {
  color: black;
  background-color: var(--blue-bg);
  padding: 40px 0;
}

.resources-section {
  padding: 40px 0;
  background-color: var(--light-bg);
}

.uitleg-section {
  color: black;
  background-color: var(--sand-bg);
  padding: 40px 0;
}

.thema-section {
  color: black;
  background-color: var(--light-bg);
  padding: 40px 0;
}

.community-section {
  color: black;
  background-color: var(--yellow-bg);
  padding: 40px 0;
}

section {
  padding: 40px 0;
}


.helpen-section {
  color: black;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  background-color: var(--sand-bg);
  /* padding: 30px 0; */
}


.search-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

/* Transparency Banner */
.transparency-banner {
  background-color: #f8f9fa;
  border-left: 4px solid #33a1c9;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.transparency-banner p {
  line-height: 1.6;
  font-size: 15px;
}

.transparency-banner a {
  color: #33a1c9;
  text-decoration: none;
  font-weight: 500;
}

.transparency-banner a:hover {
  text-decoration: underline;
}

.transparency-banner strong {
  color: #225b32;
}

/* Main Search Box */

.search-box {
  flex: 1;
  min-width: 200px;
  /* padding: 12px 15px; */
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 16px;
}


@media (max-width: 768px) {
  .search-box {
    margin: 10px;
  }
}

.search-form {
  padding: 20px;
}

/* Search Form Grid */
.search-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.search-group {
  display: flex;
  flex-direction: column;
}

.search-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

/* Form Controls */
.select-wrapper,
.date-wrapper {
  position: relative;
  width: 100%;
}

.search-select,
.search-date {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 3px solid var(--primary-color);
  background-color: white;
  font-size: 20px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.search-select2,
.search-date2 {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 3px solid var(--primary-color);
  background-color: var(--primary-color) !important;
  font-size: 20px;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-select3 {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 3px solid var(--primary-color);
  background-color: #ff6b35;
  font-size: 20px;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-maxp {
  padding: 12px;
  border-radius: 4px;
  border: 3px solid var(--primary-color);
  background-color: #0851aa !important;
  font-size: 20px;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrapper::after {
  content: '▼';
  font-size: 12px;
  color: white;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-select:focus,
.search-date:focus {
  outline: none;
  border-color: #225b32;
  box-shadow: 0 0 0 2px rgba(34, 91, 50, 0.2);
}

.search-date {
  padding-right: 30px;
}

/* Popular Filters */
.popular-filters {
  margin-bottom: 20px;
}

.filters-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Checkbox and Radio Styles */
.checkbox-wrapper,
.radio-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  min-height: 25px;
  color: white;
}

.checkbox-wrapper input,
.radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-wrapper2,
.radio-wrapper2 {
  align-items: center;
  position: relative;
  padding-left: 35px;
  padding-right: 5px;
  cursor: pointer;
  min-height: 25px;
  color: white;
}

.checkbox-wrapper2 input,
.radio-wrapper2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.radio-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.checkbox-wrapper:hover input~.checkmark,
.radio-wrapper:hover input~.radio-mark {
  background-color: #f0f0f0;
}

.checkbox-wrapper:hover input~.checkmark,
.radio-wrapper2:hover input~.radio-mark {
  background-color: #f0f0f0;
}

.checkbox-wrapper input:checked~.checkmark,
.radio-wrapper input:checked~.radio-mark {
  background-color: #225b32;
  border-color: #225b32;
}

.checkbox-wrapper input:checked~.checkmark,
.radio-wrapper2 input:checked~.radio-mark {
  background-color: #225b32;
  border-color: #225b32;
}

.checkmark:after,
.radio-mark:after,
.radio-mark2:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-wrapper input:checked~.checkmark:after,
.radio-wrapper input:checked~.radio-mark:after {
  display: block;
}

.checkbox-wrapper input:checked~.checkmark:after,
.radio-wrapper2 input:checked~.radio-mark:after {
  display: block;
}

.checkbox-wrapper .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-wrapper .radio-mark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.radio-wrapper2 .radio-mark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  padding: 10px
}

/* More Filters Toggle */
.more-filters-toggle {
  text-align: center;
  margin: 20px 0;
}

.toggle-button {
  background-color: white;
  color: #33a1c9;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.toggle-button:hover {
  background-color: #f0f0f0;
}

.toggle-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 91, 50, 0.2);
}

/* Expanded Filters */
.expanded-filters {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
}

.expanded-filters.active {
  display: block;
}

.filters-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
}

.filter-column h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group2 {
  margin: 25px;
}

/* Search Button */
.search-button-container {
  text-align: center;
  margin: 20px 0;
}

.search-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search-button3 {
  background-color: #ff6b35;
  color: white;
  border: 2px solid white !important;
  border-radius: 4px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search-button3:hover {
  background-color: #1e40af;
}

.search-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 91, 50, 0.2);
}

/* Results Area */
.search-results {
  margin-top: 30px;
  /* background-color: white; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.results-container {
  padding: 20px;
}

.loader-container {
  text-align: center;
  padding: 40px 0;
  display: none;
}

.loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(51, 161, 201, 0.2);
  border-radius: 50%;
  border-top-color: #33a1c9;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.results-content {
  min-height: 200px;
  padding: 40px 0;
}

/* Inspiration Section */
.inspiration-section {
  background-color: var(--light-bg) !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* display: none; */
}

.inspiration-container {
  background-color: var(--light-bg) !important;

  /* padding: 20px; */
}

.inspiration-title {
  /* color: #f08c00; */
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.inspiration-text {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.inspiration-sort {
  text-align: center;
  margin-bottom: 20px;
}

.sort-select {
  padding: 10px;
  width: 200px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 16px;
  margin-left: 10px;
}

.inspiration-results {
  min-height: 200px;
  padding: 20px;
  background-color: var(--light-bg) !important;
  border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .search-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .search-title {
    font-size: 24px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .filters-container {
    flex-direction: column;
    gap: 10px;
  }

  .filters-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .search-title {
    font-size: 22px;
  }

  .search-button {
    width: 100%;
    justify-content: center;
  }
}

/* Utility Classes */
.hidden {
  /* display: none !important; */
}


/* Stijling voor de rating methodologie container */
.rating-methodology {
  display: flex;
  background-color: var(--primary-dark);
  color: white;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

/* Stijling voor de info tooltip */
.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px dotted #cbd5e0;
  padding-bottom: 2px;
  margin-top: 5px;
}

.info-tooltip:hover {
  border-bottom-color: #2b6cb0;
}

/* Tooltip weergave bij hover */
.info-tooltip[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 10px;
  border-radius: 4px;
  background-color: #1a202c;
  color: white;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  z-index: 100;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Driehoekje onder de tooltip */
.info-tooltip[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #1a202c transparent transparent transparent;
  z-index: 100;
}

/* Mobiele stijling voor kleinere schermen */
@media (max-width: 640px) {
  .info-tooltip[data-tooltip]:hover::after {
    width: 220px;
    font-size: 0.7rem;
  }
}

.w3-btn,
.w3-button {
  display: inline-block;
  margin: 4px;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: auto;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(232, 90, 42) !important;
  color: white;
  cursor: pointer
}



/* galery modal voor property foto */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* VERBETERDE Close Button voor maximale zichtbaarheid */
.close-button {
  position: fixed;
  /* Gewijzigd van absolute naar fixed voor betere plaatsing */
  top: 20px;
  /* Gewijzigd van -40px naar 20px zodat het altijd zichtbaar is */
  right: 20px;
  /* Gewijzigd van 0 naar 20px voor betere plaatsing */
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2500;
  /* Verhoogd van 2010 naar 2500 om zeker boven alles te liggen */
  transition: all 0.2s;
  background-color: rgba(220, 0, 0, 0.8);
  /* Felrood voor betere zichtbaarheid */
  width: 50px;
  /* Vergroot van 40px naar 50px */
  height: 50px;
  /* Vergroot van 40px naar 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid white;
  /* Witte rand toegevoegd voor extra contrast */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 0;
  /* Voorkomt vreemde padding in sommige browsers */
  line-height: 1;
  /* Voor betere centrering van het X symbool */
}

.close-button:hover {
  color: #fff;
  background-color: rgba(255, 0, 0, 1);
  /* Helderder rood bij hover */
  transform: scale(1.1);
  opacity: 1;
}

/* Slides Container */
.slides-container {
  position: relative;
  height: 65vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.slide.active {
  display: flex;
  animation: fadeIn 0.5s;
}

.slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
}

/* Next & Previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2010;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Caption Container */
.caption-container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 16px;
  color: white;
  text-align: center;
  font-weight: 500;
  border-radius: 0 0 6px 6px;
}

.zoekinfo {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.zoekinfo h4 {
  margin-bottom: 1rem;
  color: #2e4b2e;
}

.zoekinfo ul {
  padding-left: 1.2rem;
  color: #444;
}

#caption {
  margin: 0;
  font-size: 16px;
}

/* Thumbnails */
.thumbnails-container {
  display: flex;
  overflow-x: auto;
  margin-top: 15px;
  gap: 10px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.thumbnails-container::-webkit-scrollbar {
  height: 8px;
}

.thumbnails-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.thumbnail {
  width: 100px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumbnail:hover {
  opacity: 1;
}

.thumbnail.active {
  opacity: 1;
  border-color: #2a6dff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0.4
  }

  to {
    opacity: 1
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .close-button {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .checkbox-wrapper2,
  .radio-wrapper2 {
    display: block;
    margin-bottom: 16px;
  }

  .prev,
  .next {
    padding: 12px;
    font-size: 18px;
    height: 40px;
    width: 40px;
  }

  .thumbnail {
    width: 80px;
    height: 60px;
  }

  .caption-container {
    padding: 8px;
  }

  #caption {
    font-size: 14px;
  }
}

/* Enhanced Search Section Styles */
.enhanced-search-section {
  /* padding: 40px 0px; */
  border-radius: 12px;
  /* margin: 30px auto; */
  /* max-width: 1200px; */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.enhanced-search-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/search-pattern.svg');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.search-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: rgb(17, 85, 159) !important;

}

.search-container1 {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

}

.search-container2 {
  position: relative;
  max-width: 1100px;
  z-index: 1;
  /* background-color: rgb(17, 85, 159) !important; */
}

.search-container4 {
  position: relative;
  max-width: 1100px;
  z-index: 1;
  background-color: rgb(17, 85, 159) !important;
}

.transparant-blok {
  /* background-color: rgba(255, 255, 255, 0.8); */
  background-color: rgba(173, 216, 230, 0.5);
  /* Lichtblauw met 50% transparantie */
  padding: 0.5rem;
  margin-top: 16px;
  border-radius: 1rem;
  /* max-width: 700px; */
  /* margin: 2rem auto; */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.transparant-blok2 {
  /* background-color: rgba(255, 255, 255, 0.8); */
  background-color: rgba(173, 216, 230, 0.9);
  /* Lichtblauw met 50% transparantie */
  padding: 0.5rem;
  margin-top: 16px;
  border-radius: 1rem;
  /* max-width: 700px; */
  /* margin: 2rem auto; */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.transparant-blok h3 {
  margin-top: 0px;

  margin-bottom: 0px;
  color: #2e4b2e;
}

.transparant-blok p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}


.search-header {
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  border-radius: 8px;
  color: white;
  /* margin: 20px; */
  padding:16px;
  /* margin-bottom: 30px; */
}

.search-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  /* margin-top: 20px; */

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* .search-header p {
  font-size: 16px;
  
}
 */
.search-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  color: black;
}

.search-form-wrapper {
  /* background-color: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(10px); */
  /* padding: 25px; */
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  /* border: 1px solid white; */
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .search-form-wrapper {

    padding: 0px;

  }
}

.search-form-wrapper:hover {
  transform: translateY(-5px);
}

/* Make your existing search form more prominent with these overrides */
.search-form-wrapper input,
.search-form-wrapper select,
.search-form-wrapper button {
  font-size: 1.1rem !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  /* border: 2px solid rgba(255, 255, 255, 0.2) !important; */
  /* background-color: rgba(255, 255, 255, 0.9) !important; */
  transition: all 0.3s ease !important;
}

.search-form-wrapper input:focus,
.search-form-wrapper select:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3) !important;
}

.search-form-wrapper button {
  background-color: #ff6b35 !important;
  color: white !important;
  font-weight: 600 !important;
  /* border: none !important; */
  cursor: pointer !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.search-form-wrapper button:hover {
  background-color: #e85a2a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Search highlights */
.search-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-icon {
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: black;
}

/* Popular searches */
.popular-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.popular-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-tag {
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.popular-tag:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Search callout banner */
.search-callout {
  background-color: white;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.callout-container {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.callout-icon {
  font-size: 2.5rem;
  background-color: #1e3a8a;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.callout-content {
  flex-grow: 1;
}

.callout-content h3 {
  font-size: 1.3rem;
  margin: 0 0 5px 0;
  color: #1e3a8a;
}

.callout-content p {
  margin: 0;
  color: black;
}

.callout-button {
  background-color: #ff6b35;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.callout-button:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.submit-btn {
  background-color: rgb(232, 90, 42);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-header h2 {
    font-size: 1.8rem;
  }

  .search-subtitle {
    font-size: 1rem;
  }

  .search-highlights {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .callout-container {
    flex-direction: column;
    text-align: center;
  }

  .callout-icon {
    margin-bottom: 15px;
  }

  .callout-button {
    margin-top: 15px;
  }
}

.testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Verified testimonial card styling */
.testimonial-card.verified {
  border-left: 4px solid #3498db;
}

.testimonial-card.verified::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #3498db transparent transparent;
  z-index: 1;
}

/* Verification badge styling */
.verification-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #3498db;
  color: #fff;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 12px;
}

/* Testimonial content styling */
.testimonial-rating {
  color: #f39c12;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

/* Author section styling */
.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #3498db;
}

.testimonial-author h4 {
  margin: 0 0 5px;
  color: #333;
  font-size: 16px;
}

.testimonial-author p {
  margin: 0 0 5px;
  color: #777;
  font-size: 14px;
}

.verification-link {
  font-size: 13px;
  color: #3498db;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px dotted #3498db;
  transition: all 0.2s ease;
}

.verification-link:hover {
  color: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-card.verified::before {
    border-width: 0 40px 40px 0;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-photo {
    margin-bottom: 10px;
  }
}


/* Basisstijl voor de tabel */

.table-container {
  overflow-x: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  color: black;
  background-color: white;

}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.comparison-table th {
  background-color: white;
  font-weight: bold;
}

.comparison-table tr:nth-child(even) {
  background-color: #f0f7ff;
  !important;
}

.comparison-table tr:hover {
  background-color: #f1f1f1;
}

/* Responsieve aanpassingen */
@media screen and (max-width: 768px) {
  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 0px;
    background-color: #fff;
  }

  .comparison-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 5px;
    width: 50%;
    padding-left: 5px;
    font-weight: bold;
    text-align: left;
  }
}




/* Basis styling voor auteur sectie */
.author-profile-section {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 0 0.5rem;
  margin: 1rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.author-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styling */
.author-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.author-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #3498db;
  border-radius: 2px;
}

/* Intro section met foto en korte bio */
.author-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.author-image {
  flex: 0 0 100px;
}

.author-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*  .author-bio {
      flex: 1;
      min-width: 300px;
    } */


.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.author-credentials span {
  background-color: #e8f4fd;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #2980b9;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.author-credentials span i {
  color: #3498db;
}


.aanbieder-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.aanbieder-cta2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.aanbieder-cta:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cta-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cta-action {
  font-weight: 700;
  font-size: 1.1rem;
}



/* Create a semi-transparent overlay for better text readability */
.toc-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  /* white with 85% opacity */
  z-index: 1;
}

/* Ensure content appears above the overlay */
.toc-container .toc-header,
.toc-container .toc-list {
  position: relative;
  z-index: 2;
}

/* Enhance the header for better visibility */
.toc-container .toc-header {
  /* background-color: rgba(42, 109, 255, 0.8); Match your site's accent color */
  padding: 12px 15px;
  border-radius: 10px 10px 0 0;

}

.toc-container .toc-title {
  color: white;
  margin: 0;
  font-weight: 900;

}

/* Style the TOC list items */
.toc-container .toc-list {
  padding: 15px 20px;
}

.toc-container .toc-item {
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.toc-container .toc-item:hover {
  transform: translateX(5px);
}

.toc-text {
  font-size: 18px;
  font-weight: 900;
}

.toc-container .toc-link {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s ease;
}

.toc-container .toc-link:hover {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toc-container .toc-icon {
  font-size: 1.3em;
  margin-right: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {

  /* .toc-container {
    margin: 20px 10px;
  }
   */
  .toc-container .toc-list {
    padding: 10px 15px;
  }
}



/* Sticky Navigation Styles */
.sticky-nav-container {
  position: relative;
  z-index: 6000;
  /* margin-bottom: 2rem; */
  /* Remove any properties that might interfere with stickiness */
  overflow: visible;
  font-size: 14px;
}

.sticky-nav {
  /* background-color: var(--primary-color); */
  /* border-radius: 8px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* padding: 0.5rem; */
  /* These are the critical changes for stickiness */
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  top: 0;
  /* This value should be set to where you want it to stick */
  /* max-width: 1200px; */
  /*   margin-left: 10px;
  margin-right: 10px;
 */
  transition: all 0.3s ease;
  z-index: 1001;
  /* Ensure it's above other content */
}

.sticky-nav.is-sticky {
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-title {
  font-weight: 600;
  color: var(--primary-dark);
  /* margin-bottom: 1rem; */
  /* padding-bottom: 0.5rem; */
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  /* font-size: 0.8rem; */
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  /* background-color: #f5f9ff; */
  /* color: white; */
}


/*   /* Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  padding-right: 2rem;
  position: relative;
}

.dropdown-toggle .fa-chevron-down {
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}

*/
/*  .nav-dropdown:hover .fa-chevron-down,
    .nav-dropdown.active .fa-chevron-down {
      transform: rotate(180deg);
    } */

/*  .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      min-width: 200px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 100;
      padding: 0.5rem;
      list-style: none;
      margin-top: 0.5rem;
    } */

/*     .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
 */
.sub-link {
  padding: 0.5rem 1rem;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  display: block;
  transition: all 0.2s ease;
}

.sub-link:hover {
  background-color: #f5f9ff;
  color: #3498db;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background-color: white;
  border: none;
  color: black;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.toggle-icon,
.toggle-icon::before,
.toggle-icon::after {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}

.toggle-icon {
  top: 14px;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  left: 0;
}

.toggle-icon::before {
  top: -8px;
}

.toggle-icon::after {
  top: 8px;
}

.nav-toggle.active .toggle-icon {
  background-color: transparent;
}

.nav-toggle.active .toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Floating button for mobile */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-nav-button:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    flex-direction: column;
  }

  .nav-link {
    padding: 0.6rem 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1.5rem;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .sticky-nav {
    max-height: 60px;
    overflow: hidden;
    padding: 0.75rem 1rem;
  }

  .sticky-nav.expanded {
    max-height: 500px;
    overflow-y: auto;
  }

  .nav-title {
    margin-bottom: 0.5rem;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

/* Adding section IDs to providers */
section[id] {
  scroll-margin-top: 80px;
  /* Ensures content isn't hidden under the sticky header */
}


.page-navigation {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-item {
  flex: 0 0 auto;
  margin-right: 20px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1e3a8a;
}

@media (max-width: 768px) {
  .nav-list {
    gap: 15px;
  }

  .nav-item {
    margin-right: 0;
  }

  .nav-link {
    font-size: 14px;
  }
}

/* Hero Static Section Styles */
.hero-static-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 40px 0px; */
  overflow: visible;
  position: relative;
  padding-bottom: 3rem;
}

/* basis styling voor de zoek nu knop */
.search-button2 {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff9e6b);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  bottom: -2.2rem;
  /* hangt net in de volgende sectie */
  transform: translateX(-50%);
  z-index: 10;

  /* speels effect */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15),
    0 4px 0 rgba(255, 255, 255, 0.2) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

* Hover/focus animatie */ .search-button2:hover,
.search-button2:focus {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2),
    0 4px 0 rgba(255, 255, 255, 0.25) inset;
  outline: none;
}

/* Kleine schermen: iets minder groot */
@media (max-width: 640px) {
  .hero-static-section {
    padding-bottom: 4rem;
  }

  .search-button2 {
    font-size: 1rem;
    padding: 0.8rem 1.4rem;
    bottom: -1.6rem;
  }
}

.hero-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Zwarte overlay met 40% transparantie */
  z-index: 1;
}

.hero-main2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Zwarte overlay met 70% transparantie */
  z-index: 1;
}


.hero-image2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0, 7);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

/* Joop's inspiratieblok */
.joop-tip-blok {
  background-color: white;
  border-left: 5px solid #4CAF50;
  padding: 1.5em;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 8px;
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  flex-wrap: wrap;
}

.joop-tip-blok img.profile-image {
  max-width: 140px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.joop-tip-blok .author-bio {
  flex: 1 1 300px;
}

.joop-tip-blok h2 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  color: #2e5d3b;
}

.joop-tip-blok p {
  line-height: 1.6;
  margin-bottom: 0.8em;
  color: #333;
}

.joop-tip-blok a {
  color: #2e5d3b;
  text-decoration: underline;
}

.joop-tip-blok small {
  display: block;
  margin-top: 0.5em;
  color: #666;
}



.primary-button {
  display: inline-block;
  background: #1e3a8a;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background: #2c4ba0;
  transform: translateY(-2px);
}


.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-bottom: 3rem;
}

.destinations-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
  gap: 20px;
  margin-bottom: 3rem;
}

.destination-card {
  position: relative;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
}

.destination-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
}

.destination-filter {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: white;

}

.special-card .destination-desc {
  display: block;
}

.destination-link {
  display: inline-block;
  color: white;
  background: rgba(30, 58, 138, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.destination-link:hover {
  background: rgba(30, 58, 138, 1);
}

.destination-link.highlight {
  background: rgba(220, 38, 38, 0.8);
}

.destination-link.highlight:hover {
  background: rgba(220, 38, 38, 1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-main {
    height: 350px;
  }

  .hero-content {
    width: 100%;
    padding: 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .destinations-grid,
  .destinations-grid2 {
    grid-template-columns: 1fr 1fr;
  }

  .special-card {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .hero-main {
    /* height: 300px; */
  }

  .page-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .destinations-grid,
  .destinations-grid2 {
    grid-template-columns: 1fr;
  }

  .special-card {
    grid-column: auto;
  }

  .destination-card {
    height: 150px;
  }
}

/* Verbeteringen voor de helderheid van hero afbeeldingen */

/* Verhoog de helderheid van de achtergrondafbeeldingen in de hero section */
.slide-image {
  /* Verwijder eventuele donkere overlays of pas ze aan */
  background-color: transparent !important;

  /* Verhoog de helderheid en contrast van de afbeeldingen */
  filter: brightness(1.3) contrast(1.1) !important;

  /* Zorg dat de achtergrondafbeelding goed zichtbaar is */
  background-size: cover !important;
  background-position: center !important;

  /* Verminder eventuele donkere overlay die over de afbeeldingen ligt */
  position: relative;
}

/* Als er een overlay is die de afbeeldingen donkerder maakt, pas die aan */
.slide-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  z-index: 1;
  pointer-events: none;
}

/* Zorg ervoor dat de tekst nog steeds goed leesbaar is */
.slide-content {
  position: relative;
  z-index: 2;
  /* Voeg een subtiele tekstschaduw toe voor betere leesbaarheid */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Voor specifieke afbeeldingen die extra donker zijn, nog meer brightness toepassen */
.slide:nth-child(3) .slide-image {
  filter: brightness(1.4) contrast(1.15) !important;
}

/* Zorg dat knoppen goed zichtbaar blijven */
.search-button {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Verminder opacity van eventuele overlay elementen */
.slideshow-container .slide::after,
.slideshow-container::after,
.slideshow-container .slide-image::after {
  opacity: 0.3 !important;
}

/* site wide navigation */

/* Add to existing styles */

/* Updated top header styles */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: black;
  color: white;
}


.top-header-col.center {
  text-align: center;
}

.top-header-col.right {
  text-align: right;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Menu icon styles */
.menu-icon {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.3s;
}

.menu-icon:hover {
  color: #f08c00;
}

/* Hide the original site-nav-accordion */
.site-nav-accordion {
  display: none;
}

/* Slide-out navigation panel */
.slide-nav {
  position: fixed;
  top: 0;
  left: -300px;
  /* Start off-screen */
  width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 10002;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.slide-nav.active {
  left: 0;
}

.slide-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.close-nav {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.slide-nav-content {
  padding: 10px 0;
}

/* Navigation sections */
.nav-section {
  border-bottom: 1px solid #eee;
}

.nav-section:last-child {
  border-bottom: none;
}

.nav-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
}

.nav-section-title i {
  transition: transform 0.3s;
}

.nav-section.active .nav-section-title i {
  transform: rotate(180deg);
}

.nav-section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.nav-section.active .nav-section-content {
  max-height: 500px;
}

.nav-links {
  list-style: none;
  padding-right: 20px;
}

.nav-links li {
  padding: 5px 0;
}

.nav-links a {
  text-decoration: none;
  /* color: white; */
  /* font-size: 14px; */
  display: block;
  padding: 5px 20px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #f08c00;
}

.category-header {
  font-weight: 600;
  color: #3498db;
  padding: 10px 0 5px;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

/* Overlay styles */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-nav {
    width: 85%;
    max-width: 300px;
  }

  .header-left {
    gap: 10px;
  }
}

/* Header Styles */
.main-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: black;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: #f08c00;
}

.header-tagline {
  display: block;
  font-weight: bold;
}

.top-nav {
  display: flex;
  gap: 20px;
}

.top-nav a {
  color: white;
  background-color: red;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
}

.top-nav a:hover {
  background-color: #225b32;
}

@media (max-width: 768px) {
  /*  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  } */

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  /*  .header-tagline {
    display: none;
  }
 */
}

@media (max-width: 576px) {


  .top-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    font-size: 18px;
  }
}

/* Helper class to hide on mobile */
.noiphone {
  display: block;
}

@media (max-width: 760px) {
  .noiphone {
    display: none !important;
  }

  .noiphone2 {
    display: none !important;
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* VERBETERDE Close Button voor maximale zichtbaarheid */
.close-button {
  position: fixed;
  /* Gewijzigd van absolute naar fixed voor betere plaatsing */
  top: 20px;
  /* Gewijzigd van -40px naar 20px zodat het altijd zichtbaar is */
  right: 20px;
  /* Gewijzigd van 0 naar 20px voor betere plaatsing */
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2500;
  /* Verhoogd van 2010 naar 2500 om zeker boven alles te liggen */
  transition: all 0.2s;
  background-color: rgba(220, 0, 0, 0.8);
  /* Felrood voor betere zichtbaarheid */
  width: 50px;
  /* Vergroot van 40px naar 50px */
  height: 50px;
  /* Vergroot van 40px naar 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid white;
  /* Witte rand toegevoegd voor extra contrast */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 0;
  /* Voorkomt vreemde padding in sommige browsers */
  line-height: 1;
  /* Voor betere centrering van het X symbool */
}

.close-button:hover {
  color: #fff;
  background-color: rgba(255, 0, 0, 1);
  /* Helderder rood bij hover */
  transform: scale(1.1);
  opacity: 1;
}

/* Slides Container */
.slides-container {
  position: relative;
  height: 65vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.slide.active {
  display: flex;
  animation: fadeIn 0.5s;
}

.slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
}

/* Next & Previous buttons */
.prev,
.next {
  cursor: pointer;
  position: fixed;
  /* Gewijzigd van absolute naar fixed voor consistente plaatsing */
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  /* Donkerdere achtergrond voor betere zichtbaarheid */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2200;
  /* Verhoogd van 2010 naar 2200 */
  border: 2px solid white;
  /* Witte rand toegevoegd voor contrast */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.prev {
  left: 20px;
  /* Vergroot van 15px naar 20px */
}

.next {
  right: 20px;
  /* Vergroot van 15px naar 20px */
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  /* Schaal vergroot bij hover */
}

/* Caption Container */
.caption-container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 16px;
  color: white;
  text-align: center;
  font-weight: 500;
  border-radius: 0 0 6px 6px;
}

#caption {
  margin: 0;
  font-size: 16px;
}

/* Thumbnails */
.thumbnails-container {
  display: flex;
  overflow-x: auto;
  margin-top: 15px;
  gap: 10px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.thumbnails-container::-webkit-scrollbar {
  height: 8px;
}

.thumbnails-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.thumbnail {
  width: 100px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumbnail:hover {
  opacity: 1;
}

.thumbnail.active {
  opacity: 1;
  border-color: #2a6dff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0.4
  }

  to {
    opacity: 1
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .close-button {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .slides-container {
    height: 50vh;
  }

  .prev,
  .next {
    padding: 12px;
    font-size: 18px;
    height: 40px;
    width: 40px;
  }

  .thumbnail {
    width: 80px;
    height: 60px;
  }

  .caption-container {
    padding: 8px;
  }

  #caption {
    font-size: 14px;
  }
}

/* Fix for gallery modal appearing behind sticky header and close button visibility */

/* Increase z-index for the gallery modal to ensure it's above the sticky header */
.gallery-modal {
  z-index: 10000 !important;
  /* Much higher than header's z-index of 1000 */
}

/* Make sure the gallery modal content is properly positioned */
.gallery-modal-content {
  position: relative;
  z-index: 10001 !important;
}

/* Ensure the close button is visible and properly positioned */
.gallery-modal .close-button {
  position: fixed !important;
  z-index: 10002 !important;
  /* Higher than the modal */
  top: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(220, 0, 0, 0.9) !important;
  /* More opaque red background */
  color: white !important;
  font-size: 35px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 3px solid white !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8) !important;
  cursor: pointer !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
  opacity: 1 !important;
  /* Ensure full opacity */
}

/* Fix for navigation and prev/next buttons */
.gallery-modal .prev,
.gallery-modal .next {
  z-index: 10002 !important;
  position: fixed !important;
}

/* Ensure the gallery modal has proper display when shown */
.gallery-modal.show {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Specifieke fixes voor conflicten met bestaande code */
.sticky-nav .provider-dropdown .nav-link i {
  color: #3498db;
  margin-right: 0.3rem;
}

/* Zorg ervoor dat de dropdown niet conflicteert met andere elementen */
.provider-dropdown-menu {
  isolation: isolate;
}

/* Voor zeer kleine schermen */
@media (max-width: 480px) {
  .provider-dropdown-menu {
    font-size: 0.8rem;
  }

  .provider-dropdown-toggle {
    padding: 0.6rem 0.8rem;
  }

  .external-icon {
    font-size: 0.7rem;
  }
}

/* Dark mode support (optioneel) */
@media (prefers-color-scheme: dark) {
  .provider-dropdown-menu {
    background: #2d3748;
    border-color: #4a5568;
  }

  .provider-dropdown-menu .nav-link {
    color: #e2e8f0;
  }

  .provider-dropdown-menu .nav-link:hover {
    background-color: #4a5568;
    color: #90cdf4;
  }
}



/* ===== VOLLEDIG RESPONSIVE HERO SECTION ===== */



.hero-main {
  position: relative;
  display: flex;
  align-items: center;
  /* Center content vertically */
  height: auto;
  /* Auto height voor flexibiliteit */
  margin-bottom: 2rem;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Fallback background */
}

.hero-main2 {
  position: relative;
  display: flex;
  align-items: center;
  /* Center content vertically */
  height: auto;
  /* Auto height voor flexibiliteit */
  margin-bottom: 2rem;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
  /* Helderder en levendiger */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* padding: 4rem 2rem; */
  /* Meer padding voor desktop */
  color: #fff;
  /* text-align: center; */
  min-height: auto;
  /* Laat hoogte bepalen door content */
}

/* Author intro container */
.author-intro {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Author bio styling - volledig responsive */
.author-bio {
  /* background-color: var(--green-bg); */
  border-radius: 8px;
  /* Kleinere border-radius */
  padding: 1.5rem;
  /* Minder padding voor compactere look */
  margin: 1.5rem auto;
  max-width: 800px;
  width: 100%;
  /* backdrop-filter: blur(3px); Minder blur voor natuurlijker effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  /* Sterker contrast met helderdere foto */
  line-height: 1.7;
}

.author-bio p {
  margin: 0 0 1rem 0;
  /* Minder margin */
  color: black;
  text-align: center;
  line-height: 1.6;
  /* Compacter line-height */
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); */
  /* Text shadow voor betere leesbaarheid */
}

.author-bio small {
  display: block;
  margin-bottom: 0.8rem;
  /* Minder margin */
  font-size: 1rem;
  line-height: 1.5;
  /* Compacter */
  color: white;
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  /* Text shadow voor betere leesbaarheid */
}

.author-bio small:last-of-type {
  margin-bottom: 1.5rem;
}

/* Author date styling */
.author-date {
  margin: 1rem 0;
  /* Compactere margins */
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  /* Text shadow voor betere leesbaarheid */
}

.author-date a.wit {
  color: #87ceeb;
  /* Lichtblauwe kleur voor links */
  text-decoration: underline;
  font-weight: 600;
}

.author-date a.wit:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Primary button styling */
.primary-button {
  display: inline-block;
  margin-top: 1.2rem;
  /* Minder margin */
  background: linear-gradient(135deg, #ff5a5f 0%, #e04b4f 100%);
  color: white;
  padding: 0.8rem 1.6rem;
  /* Compactere padding */
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  /* Kleinere border-radius */
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 90, 95, 0.3);
  /* Minder dramatische shadow */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  /* Text shadow */
}

.primary-button:hover {
  background: linear-gradient(135deg, #e04b4f 0%, #d43d42 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

/* Hero section heading */
.hero-section h1 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Vanaf 1100px en kleiner - eerste aanpassing */
@media (max-width: 1100px) {
  .hero-content {
    /* padding: 3.5rem 1.8rem; */
  }

  .author-bio {
    padding: 1.4rem;
    /* Minder padding */
    max-width: 750px;
  }

  .author-bio p {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    /* Compacter */
  }

  .author-bio small {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    /* Compacter */
  }
}

/* Large tablets en kleine desktops */
@media (max-width: 1024px) {
  .hero-content {
    /* padding: 3rem 1.5rem; */
  }

  .author-bio {
    padding: 1.3rem;
    /* Minder padding */
    max-width: 700px;
  }

  .author-bio p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
  }

  .author-bio small {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }
}

/* Medium tablets */
@media (max-width: 900px) {
  .hero-content {
    /* padding: 2.8rem 1.3rem; */
  }

  .author-bio {
    padding: 1.2rem;
    /* Minder padding */
    max-width: 650px;
  }

  .author-bio p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .author-bio small {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
  }

  .hero-section h1 {
    font-size: 2.1rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero-static-section {
    padding: 0 15px;
  }

  .hero-content {
    /* padding: 2.5rem 1rem; */
  }

  .author-bio {
    padding: 1.1rem;
    /* Minder padding */
    margin: 1.2rem auto;
    border-radius: 6px;
    /* Kleinere border-radius */
    max-width: 100%;
  }

  .author-bio p {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
  }

  .author-bio small {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .hero-section h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .primary-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

/* Grote smartphones */
@media (max-width: 576px) {
  .hero-main {
    border-radius: 8px;
  }

  .hero-content {
    /* padding: 2rem 0.8rem; */
  }

  .author-bio {
    padding: 1rem;
    /* Compactere padding */
    margin: 1rem auto;
    border-radius: 6px;
  }

  .author-bio p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }

  .author-bio small {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .hero-section h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .author-date {
    font-size: 0.9rem;
    margin: 1rem 0;
  }

  .primary-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin-top: 1.2rem;
  }
}

/* Kleine smartphones */
@media (max-width: 480px) {
  .hero-static-section {
    padding: 0 10px;
  }

  .hero-content {
    /* padding: 1.8rem 0.6rem; */
  }

  .author-bio {
    padding: 0.9rem;
    /* Nog compacter */
    margin: 0.8rem auto;
  }

  .author-bio p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .author-bio small {
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .hero-section h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .primary-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

/* Extra kleine schermen */
@media (max-width: 360px) {
  .hero-content {
    /* padding: 1.5rem 0.5rem; */
  }

  .author-bio {
    padding: 0.8rem;
    /* Minimale padding */
    margin: 0.6rem auto;
  }

  .author-bio p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .author-bio small {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .hero-section h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .author-date {
    font-size: 0.85rem;
    margin: 0.8rem 0;
  }

  .primary-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
}

/* ===== ACCESSIBILITY VERBETERINGEN ===== */

/* Focus states voor interactieve elementen */
.primary-button:focus {
  outline: 3px solid #87ceeb;
  outline-offset: 2px;
}

.author-date a.wit:focus {
  outline: 2px solid #87ceeb;
  outline-offset: 1px;
  border-radius: 2px;
}

/* Verbeterde contrasten voor toegankelijkheid */
@media (prefers-contrast: high) {
  .hero-image {
    filter: brightness(0.4) contrast(1.2);
  }

  .author-bio {
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffff;
  }

  .author-bio p,
  .author-bio small {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }
}

/* Animaties kunnen worden uitgeschakeld */
@media (prefers-reduced-motion: reduce) {
  .primary-button {
    transition: none;
  }

  .primary-button:hover {
    transform: none;
  }

  .hero-content * {
    animation: none;
  }
}

/* Print styles */
@media print {
  .hero-main {
    background-color: #ffffff;
    color: #000000;
    box-shadow: none;
  }

  .hero-image {
    display: none;
  }

  .author-bio {
    background-color: #f5f5f5;
    color: #000000;
    border: 1px solid #cccccc;
  }

  .primary-button {
    display: none;
  }
}



.tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-wrapper .tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 99;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  /* max-width: 250px; */
}

.tooltip-wrapper:hover .tooltip-text,
.tooltip-wrapper:focus-within .tooltip-text,
.tooltip-wrapper:active .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* of vast aantal kolommen */
  gap: 20px;
  /* ruimte tussen de kolommen */
  justify-items: start;
  /* zorgt dat alles in de kolom links uitlijnt */
}

.filter-column {
  text-align: left;
  /* tekst links uitlijnen */
}

.filter-group {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}



/* Kleurvariabelen (makkelijk aan te passen) */
:root {
  --dark-bg: #111;
  /* Donkerdere achtergrond voor modernere look */
  --text-color: white;
  --heading-color: #fff;
  --accent-color: #33a1c9;
  /* Bestaande accentkleur */
  --hover-color: #4ac1ed;
  /* Lichtere tint voor hover */
  --border-color: rgba(255, 255, 255, 0.08);
}

/* Footer Algemeen */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 30px 0 20px;
  Meer padding boven en onder font-size: 15px;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  /* Iets meer horizontale padding */
}

/* Hoofdsecties */
.footer-main2 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  /* Grotere gaten tussen secties */
  margin-bottom: 60px;
  align-items: flex-start;
  /* Zorgt voor betere verticale uitlijning */
}

.footer-brand {
  flex: 1 1 300px;
  /* Flexibele breedte, min-width 300px */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo {
  /* font-size: 32px; Groter logo */
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.footer-logo {
  max-width: 80px;
  height: auto;
}

.logo span {
  color: var(--accent-color);
  /* Accentkleur voor deel van het logo */
}

.footer-tagline {
  color: var(--text-color);
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
  max-width: 400px;
  /* Beperk breedte voor leesbaarheid */
}

/* Trust Badges */
.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  /* Laten omwikkelen op kleine schermen */
  gap: 15px;
  /* Ruimte tussen de badges */
  margin-top: 20px;
  align-items: center;
  /* Verticale uitlijning van de badges */
}

.trust-badge-link {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Ruimte tussen afbeeldingen in een badge */
  background-color: rgba(255, 255, 255, 0.05);
  /* Subtiele achtergrond */
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.trust-badge-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  /* Subtiel omhoog bij hover */
}

.trust-badge-img {
  max-height: 40px;
  /* Consistente hoogte voor badges */
  width: auto;
}

.trust-badge-img2 {
  max-height: 30px;
  /* Consistente hoogte voor badges */
  width: auto;
}

/* Navigatie sectie */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  /* Ruimte tussen de kolommen */
  flex: 2 1 600px;
  /* Flexibele breedte, min-width 600px */
  justify-content: space-between;
  /* Spreid kolommen over de beschikbare ruimte */
}

.footer-nav-column {
  flex: 1 1 180px;
  /* Min-breedte voor kolommen */
}

.footer-heading {
  color: var(--heading-color);
  font-size: 18px;
  /* Iets grotere titels */
  font-weight: 600;
  margin: 0 0 25px 0;
  /* Meer ruimte onder titel */
  position: relative;
  padding-bottom: 10px;
  /* Ruimte voor de underline */
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  /* Langere underline */
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 1px;
  /* Zachte randen */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  /* Grotere links */
  position: relative;
  display: inline-block;
  /* Zorgt dat de underline goed werkt */
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--hover-color);
  transform: translateX(5px);
  /* Subtiel effect bij hover */
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--hover-color);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  font-style: normal;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  /* Meer ruimte onder adres */
}

.footer-link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: var(--heading-color);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  /* Ruimte boven de knop */
}

.footer-link-button:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

/* Transparantie sectie */
.footer-transparency {
  background-color: rgba(255, 255, 255, 0.05);
  /* Lichte achtergrond */
  padding: 30px;
  border-radius: 12px;
  /* Afgeronde hoeken */
  margin-bottom: 60px;
  /* Ruimte onder deze sectie */
  border: 1px solid var(--border-color);
  /* Subtiele rand */
}

.transparency-title {
  color: var(--heading-color);
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.transparency-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.transparency-text {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.transparency-text strong {
  color: var(--heading-color);
  /* Vetgedrukte tekst extra laten opvallen */
}

/* Social Media */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  /* Meer ruimte tussen iconen */
  margin-bottom: 60px;
  /* Ruimte onder social media */
}

.social-icon {
  width: 48px;
  /* Grotere iconen */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  /* Subtiele achtergrond */
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtiele rand */
}

.social-icon:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-5px) scale(1.05);
  /* Meer prominent hover effect */
}

.social-icon svg {
  width: 24px;
  /* Grotere SVG's */
  height: 24px;
  fill: var(--heading-color);
  /* Kleur van de iconen */
}

/* Juridische en Copyright sectie */
.footer-legal {
  border-top: 1px solid var(--border-color);
  /* Duidelijkere scheidingslijn */
  padding-top: 40px;
  /* Meer ruimte boven */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  /* Ruimte tussen de elementen bij wrap */
}

.footer-bottom a {
  color: var(--text-color);
  /* Links dezelfde kleur als gewone tekst */
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--hover-color);
}

.footer-copyright {
  color: var(--text-color);
  font-size: 15px;
  margin: 0;
}

/* Responsieve aanpassingen */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 50px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav-column {
    flex: 1 1 100%;
    /* Kolommen nemen de volledige breedte in */
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-container {
    padding: 0 15px;
    /* Nog kleinere padding op mobiel */
  }

  .logo {
    font-size: 28px;
  }

  .footer-heading {
    font-size: 17px;
  }

  .footer-links a,
  .footer-contact a,
  .footer-link-button,
  .transparency-text,
  .footer-bottom a,
  .footer-copyright {
    font-size: 14px;
    /* Iets kleinere tekst op mobiel */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-transparency {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .footer-trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badge-link {
    width: 100%;
    /* Badges nemen volledige breedte in */
    justify-content: center;
    /* Centreer inhoud in de badge */
  }
}

/* Responsieve aanpassingen */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 50px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav-column {
    flex: 1 1 100%;
    /* Kolommen nemen de volledige breedte in */
  }
}

@media (max-width: 480px) {
  .footer-trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badge-link {
    width: 100%;
    /* Badges nemen volledige breedte in */
    justify-content: center;
    /* Centreer inhoud in de badge */
  }

  .footer-links a {
    font-size: 13px;
    /* Mogelijk nog kleiner voor zeer kleine schermen */
  }
}

.tooltip-container {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.tooltip-container .tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 8px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-size: 14px;
  pointer-events: none;
}

.tooltip-container .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text,
.tooltip-container:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}

#sauna-btn,
#jacuzzi-btn,
#omheind-btn,
#zwembad-btn,
#haard-btn {
  padding: 10px 16px;
  font-size: 16px;
  border: 2px solid transparent;
  /* standaard onzichtbare rand */
  border-radius: 8px;
  /* background: #2563eb; */
  color: white;
  cursor: pointer;
  transition: border 0.3s;
  margin-bottom: 16px;
}

#sauna-btn.active,
#jacuzzi-btn.active,
#omheind-btn.active,
#zwembad-btn.active,
#haard-btn.active {
  border: 2px solid white !important;
  /* witte rand als checkbox actief */
}

.fancy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: #6b7280;
  /* default neutral */
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, transform 0.05s;
  line-height: 1;
}

.fancy-btn:active {
  transform: translateY(1px);
}

.fancy-btn svg {
  width: 20px;
  height: 20px;
}

/* Kleuren per feature */
.sauna-btn {
  background: #f97316;
}

/* oranje */
.sauna-btn:hover {
  background: #ea580c;
}

.jacuzzi-btn {
  background: #2563eb;
}

/* blauw */
.jacuzzi-btn:hover {
  background: #1d4ed8;
}

.haard-btn {
  background: #ef4444;
}

/* rood */
.haard-btn:hover {
  background: #dc2626;
}

.tuin-btn {
  background: #16a34a;
}

/* groen */
.tuin-btn:hover {
  background: #15803d;
}

.zwembad-btn {
  background: #0ea5e9;
}

/* cyaan */
.zwembad-btn:hover {
  background: #0284c7;
}


/* Destination Grid */

/* ===== FAQ SECTION ===== */
#faqs1 {
  scroll-margin-top: 137px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-category-btn {
  padding: 8px 15px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question-text {
  font-weight: 500;
  padding-right: 40px;
}

.faq-icon {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 2px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 15px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 20px 20px;
}

.faq-contact {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
}

.faq-contact-title {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-contact-text {
  margin-bottom: 20px;
}

.faq-contact-button {
  display: inline-block;
  background-color: rgb(232, 90, 42) !important;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.faq-contact-button:hover {
  background-color: var(--primary-dark);
}

/* ===== RESOURCES SECTION (VELUWE INFO) ===== */

.resources-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-item {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-link {
  display: flex;
  align-items: center;
  color: #33a1c9;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 2px solid #33a1c9;
  padding-bottom: 5px;
  width: fit-content;
}

.resource-link img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.resource-desc {
  font-size: 15px;
  color: #555;
}

/* Overlapping zoekhulp blok */
.search-cta.overlap {
  position: relative;
  top: 2rem;
  /* hoogte van overlap, aanpassen naar wens */
  margin-bottom: -5rem;
  /* zorgt dat de volgende sectie dichterbij komt */
  z-index: 5;
  background: #ff4b6e;
  color: white;
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-cta.overlap h2 {
  margin: 0;
  font-size: 1.4rem;
}

/* Mobiel aanpassing */
@media (max-width: 768px) {
  .search-cta.overlap {
    top: 1rem;
    margin-bottom: -3rem;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
}

/* Algemene sectie styling */
.hero-two-columns {
  padding: 2rem;
}

/* Flexbox container */
.hero-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Kolom afbeelding */
.hero-image-column {
  flex: 1 1 45%;
}

.hero-image-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Kolom tekst */
.hero-text-column {
  flex: 1 1 50%;
}

.hero-text-column h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-text-column .update-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-text-column p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-text-column ul {
  list-style: none;
  padding: 0;
}

.hero-text-column ul li {
  margin-bottom: 0.5rem;
}

.hero-text-column ul li a {
  text-decoration: underline;
}

.hero-text-column ul li a:hover {
  text-decoration: none;
}

/* Call-to-action */
.search-cta {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #ff4b6e;
  text-align: center;
  border-radius: 8px;
}

.search-cta h2 {
  margin: 0;
  font-size: 1.4rem;
}

/* Responsive weergave */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-image-column,
  .hero-text-column {
    flex: 1 1 100%;
  }

  .hero-text-column h1 {
    font-size: 1.6rem;
  }
}