/*
Theme Name: Humanova
Theme URI: https://humanova.nl
Description: Turnkey Kantoorinrichting WordPress Theme
Author: Humanova
Version: 5.0.0
*/

:root {
  --primary: #775440;      /* Bruin */
  --accent: #E2AD85;       /* Knoppen/Goud */
  --dark: #21212b;         /* Blauw/Zwart */
  --gray: #C9C8C5;         /* Grijs */
  --light-gray: #f5f5f5;
}

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

/* ============================================
   ALGEMENE RESET & GLOBALS
   ============================================ */

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  overflow-x: hidden;
  background: white;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
}

/* Prevent horizontal scroll */
#page,
.site,
.site-content,
main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Floating Hamburger Menu Button - Desktop Only */
.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Slide-out Navigation Menu - Desktop */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100%;
  background: var(--dark);
  padding: 120px 40px 40px;
  transition: right 0.4s ease;
  z-index: 99998;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu-header {
  margin-bottom: 60px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 30px;
}

.nav-menu-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu-logo-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.nav-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.nav-menu .nav-cta {
  margin-top: 30px;
  background: var(--accent);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  border: none;
  font-weight: 600;
}

.nav-menu .nav-cta:hover {
  padding-left: 30px;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 173, 133, 0.4);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Bottom Ribbon Menu */
.mobile-ribbon-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(33, 33, 43, 0.98), rgba(33, 33, 43, 0.95));
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 99999;
  padding: 12px 0;
}

.ribbon-menu-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.ribbon-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}

.ribbon-menu-item:hover,
.ribbon-menu-item.active {
  color: var(--accent);
  background: rgba(226, 173, 133, 0.1);
}

.ribbon-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.ribbon-menu-icon svg {
  stroke: currentColor;
  transition: all 0.3s;
}

.ribbon-menu-item:hover .ribbon-menu-icon {
  transform: scale(1.15);
}

.ribbon-menu-item:hover .ribbon-menu-icon svg {
  stroke: var(--accent);
}

.ribbon-menu-item.cta {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
}

.ribbon-menu-item.cta .ribbon-menu-icon svg {
  stroke: var(--dark);
}

.ribbon-menu-item.cta:hover {
  background: #E2AD85;
  transform: translateY(-2px);
}

/* Mobile: Hide hamburger, show ribbon */
@media (max-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .menu-overlay {
    display: none;
  }

  .mobile-ribbon-menu {
    display: block;
  }

  /* Add padding to body so content doesn't hide behind ribbon */
  body {
    padding-bottom: 80px;
  }
}

/* Tablet: Keep hamburger */
@media (min-width: 769px) and (max-width: 1024px) {
  .menu-toggle {
    width: 55px;
    height: 55px;
    top: 20px;
    right: 20px;
  }

  .menu-toggle span {
    width: 22px;
  }

  .nav-menu {
    width: 320px;
    padding: 100px 30px 30px;
  }
}

/* Hero Section - 4 Vlakken Grid */
.hero-section {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 80vh 20vh;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-top-left {
  background: linear-gradient(rgba(119, 84, 64, 0.3), rgba(119, 84, 64, 0.3)),
              url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=1920') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  color: white;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-logo-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.hero-top-left h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.hero-top-left .tagline {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.95;
}

.hero-cta-btn {
  background: var(--accent);
  color: var(--dark);
  padding: 18px 45px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  transition: all 0.3s;
}

.hero-cta-btn:hover {
  background: #f0c19a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(226, 173, 133, 0.4);
}

.hero-bottom-left {
  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 60px;
  color: white;
}

.hero-bottom-left p {
  font-size: 1.7rem;
  line-height: 1.6;
  margin: 0;
}

.hero-top-right {
  background: var(--dark);
  grid-row: 1 / 2;
  max-height: 35vh;
}

.hero-bottom-right {
  background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&q=80&w=1920') center/cover;
  grid-row: 1 / 3;
  margin-top: 35vh;
}

/* Expert Section */
.expert-section {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
              url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
  padding: 120px 60px;
  color: white;
}

.expert-content {
  max-width: 900px;
  text-align: left;
}

.expert-section h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.expert-content {
  max-width: 900px;
  margin: 0 auto;
}

.expert-section h2 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 80px;
  font-weight: 300;
  line-height: 1.1;
}

.expert-section h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 300;
}

.expert-section p {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 8px;
  color: white;
  font-weight: 300;
}

.expert-section p.extra-space {
  margin-top: 50px;
}

.expert-section p strong {
  color: white;
  font-weight: 700;
}

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

/* Section */
.section {
  padding: 120px 0;
}

.section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Statement Section */
.statement-section {
  text-align: center;
  padding: 100px 0;
}

.statement-section h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

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

/* =============================================
   Met wie werk je samen Section
   ============================================= */
.met-wie-section {
  margin: 0;
  padding: 0;
}

.met-wie-header {
  background-color: #775440;
  padding: 60px 0 50px;
}

.met-wie-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.met-wie-content {
  background-color: #21212b;
  padding: 80px 0;
}

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

.met-wie-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.4em;
}

.met-wie-text p:last-child {
  margin-bottom: 0;
}

.met-wie-photo {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 2px;
}

.met-wie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .met-wie-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .met-wie-photo {
    min-height: 300px;
    order: -1;
  }
  .met-wie-header {
    padding: 40px 0 35px;
  }
  .met-wie-content {
    padding: 50px 0;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 60px;
  background: var(--light-gray);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: center;
}

/* Bij 1 testimonial: centreer de kaart */
.testimonials-grid .testimonial-card:only-child {
  grid-column: 1 / -1;
  max-width: 600px;
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 45px 40px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 35px;
  font-style: italic;
}

.testimonial-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 30px;
  border-radius: 2px;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2px;
}

/* Reality Section */
.reality-section {
  background: linear-gradient(rgba(139, 115, 85, 0.92), rgba(139, 115, 85, 0.95)), 
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920') center/cover;
  background-attachment: fixed;
  padding: 120px 0;
  color: white;
}

.reality-section h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}

.reality-section .intro-text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.reality-item {
  display: flex;
  justify-content: center;
}

.reality-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e8e8, #f8f8f8);
  box-shadow: 
    20px 20px 60px rgba(0, 0, 0, 0.5),
    -20px -20px 60px rgba(255, 255, 255, 0.1),
    inset 5px 5px 10px rgba(255, 255, 255, 0.8),
    inset -5px -5px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  transition: transform 0.3s;
}

.reality-circle:hover {
  transform: scale(1.05);
}

.reality-circle::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 50%;
}

.circle-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.reality-circle h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.reality-circle p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  color: #2d2d2d;
  text-align: center;
  font-weight: 400;
}

a.reality-circle-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.reality-circle-link .reality-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(119, 84, 64, 0.2);
}

/* Performance Section */
.performance-section {
  background: var(--light-gray);
  padding: 100px 0;
}

.performance-section h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
}

.performance-subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 60px;
  font-weight: 400;
  text-align: center;
}

.performance-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.performance-left {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.performance-chart {
  width: 100%;
  height: 380px;
  background: white;
  border-radius: 8px;
  padding: 40px 60px 100px 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 40px;
  position: relative;
  border-left: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  flex-shrink: 0;
}

.chart-y-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  white-space: nowrap;
}

.chart-bar {
  flex: 1;
  max-width: 80px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

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

.chart-bar:nth-child(2) { background: linear-gradient(to top, #C9C8C5, #999); }
.chart-bar:nth-child(3) { background: linear-gradient(to top, var(--accent), #f0c19a); }
.chart-bar:nth-child(4) { background: linear-gradient(to top, #999, #666); }
.chart-bar:nth-child(5) { background: linear-gradient(to top, var(--primary), #8d7562); }

.chart-bar-label {
  position: absolute;
  bottom: -45px;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.chart-bar-percentage {
  position: absolute;
  bottom: -25px;
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}

.chart-scenario {
  position: absolute;
  bottom: 10px;
  left: 80px;
  font-size: 0.85rem;
  color: #666;
}

.chart-scenario::before {
  content: '→ ';
  margin-right: 5px;
}

.basis-gegevens {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.basis-gegevens h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.basis-gegevens ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.basis-gegevens li {
  font-size: 0.9rem;
  color: #2d2d2d;
  display: flex;
  align-items: center;
}

.basis-gegevens li::before {
  content: '•';
  margin-right: 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

.performance-right {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.total-win {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
}

.total-win h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.total-win .amount {
  font-size: 2rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 5px;
}

.total-win .subtitle {
  font-size: 0.9rem;
  color: #666;
}

.performance-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.perf-metric {
  text-align: center;
  background: #f5f5f5;
  padding: 20px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

.perf-metric:hover {
  background: #ececec;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.perf-metric h4 {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.perf-metric .value {
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
}

.timeline {
  position: relative;
  padding: 80px 0 50px 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.timeline-track {
  position: relative;
  height: 12px;
  background: #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--primary));
  border-radius: 10px;
  transition: width 1.5s ease-out;
  box-shadow: 0 2px 8px rgba(226, 173, 133, 0.3);
}

.timeline-milestones {
  position: relative;
  height: 0;
}

.milestone {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
}

.milestone.start {
  left: 0;
  transform: translateX(0);
}

.milestone.end {
  left: 100%;
  transform: translateX(-100%);
}

.milestone-badge {
  background: white;
  border: 2px solid #999;
  border-radius: 20px;
  padding: 8px 16px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
}

.milestone:hover .milestone-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.milestone.payback .milestone-badge {
  background: var(--primary);
  border-color: var(--primary);
  padding: 10px 20px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(119, 84, 64, 0.3);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
}

.milestone.payback:hover .milestone-badge {
  box-shadow: 0 6px 16px rgba(119, 84, 64, 0.4);
}

.milestone-number {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.milestone.end .milestone-number {
  font-size: 0.8rem;
}

.milestone.payback .milestone-number {
  color: white;
  font-size: 0.95rem;
}

.milestone-text {
  display: block;
  font-size: 0.65rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.milestone.end .milestone-text {
  font-size: 0.6rem;
}

.milestone.payback .milestone-text {
  color: white;
}

.roi-cta-wrapper {
  text-align: center;
  padding: 50px 40px 0;
}

.roi-cta-button {
  background: var(--dark);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
}

.roi-cta-button:hover {
  background: #2d2d3d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roi-cta-wrapper .calculator-disclaimer {
  color: var(--dark);
  font-size: 0.85rem;
  margin-top: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Verticale layout */
.services-grid.services-vertical {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-content {
  z-index: 2;
  position: relative;
  text-align: center;
}

.service-item h4 {
  color: white;
  font-size: 2rem;
  z-index: 2;
  position: relative;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  z-index: 2;
  position: relative;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  padding: 0;
}


/* ============================================
   FAQ SECTIE
   ============================================ */

.faq-new-section {
  background-color: #8B7355 !important;
  padding: 60px 0 60px 0;
  margin: 0;
  position: relative;
  color: white !important;
  overflow: hidden;
}

.faq-new-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920') center/cover;
  opacity: 0.18;
  z-index: 0;
}

.faq-new-section > * {
  position: relative;
  z-index: 1;
}

.faq-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-title {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin: 0 0 60px 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.faq-items-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-new-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-new-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-text {
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  font-size: 1.8rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-weight: 300;
  min-width: 30px;
  text-align: center;
  line-height: 1;
}

.faq-new-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-answer p {
  margin: 0;
}

/* Reset Gutenberg block styling binnen FAQ sectie */
.faq-new-section .wp-block-details,
.faq-new-section .wp-block-group,
.faq-new-section .wp-block-paragraph,
.faq-new-section .wp-block-columns,
.faq-new-section .wp-block-column,
.faq-new-section div[class*="wp-block-"],
.faq-new-section div[class*="wp-container-"],
.faq-new-section div[class*="has-background"],
.faq-new-section div[class*="has-global-padding"],
.faq-new-section .entry-content,
.faq-new-section figure,
.faq-new-section .is-layout-constrained,
.faq-new-section .is-layout-flow {
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  border-radius: 0 !important;
  max-width: none !important;
}

.faq-new-section .wp-block-details summary {
  display: none !important;
}

.faq-answer p,
.faq-answer .wp-block-details p,
.faq-answer .wp-block-paragraph {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}

.faq-new-item.faq-active .faq-answer {
  max-height: 600px;
  padding: 0 30px 25px;
}

/* ============================================
   HOMEPAGE — Komende Evenementen sectie
   ============================================ */

.home-events-section {
  background: #0a1628;
  padding: 90px 0;
}

.home-events-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.home-events-header {
  text-align: center;
  margin-bottom: 56px;
}

.home-events-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 14px;
}

.home-events-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0 0 14px;
}

.home-events-sub {
  font-size: 16px;
  color: #8899aa;
  margin: 0;
}

/* Kaarten grid */
.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Kaart */
.home-ev-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-ev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Afbeelding bovenaan */
.home-ev-card-img {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
}

.home-ev-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.5) 100%);
}

/* Type badge op afbeelding */
.home-ev-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c8a96e;
  color: #0a1628;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 1;
}

/* Kaart body */
.home-ev-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

/* Datumrij */
.home-ev-date-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-ev-date-badge {
  flex-shrink: 0;
  background: #0a1628;
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  min-width: 48px;
}

.home-ev-day {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #c8a96e;
}

.home-ev-month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2px;
}

.home-ev-when {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.home-ev-dow {
  font-size: 13px;
  font-weight: 600;
  color: #0a1628;
}

.home-ev-time,
.home-ev-loc {
  font-size: 12px;
  color: #666;
}

/* Titel */
.home-ev-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  line-height: 1.3;
}

/* Excerpt */
.home-ev-card-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Footer kaart */
.home-ev-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.home-ev-price-tag {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.home-ev-price-tag--free {
  background: #e8f5e9;
  color: #2e7d32;
}

.home-ev-price-tag--paid {
  background: #f7f3ec;
  color: #0a1628;
}

.home-ev-more-btn {
  font-size: 13px;
  font-weight: 600;
  color: #c8a96e;
  text-decoration: none;
  transition: color 0.2s;
}

.home-ev-more-btn:hover {
  color: #0a1628;
}

/* Lege staat */
.home-events-empty {
  text-align: center;
  color: #8899aa;
  font-size: 16px;
  padding: 40px 0;
}

/* CTA knop onderaan */
.home-events-cta {
  text-align: center;
}

.home-events-all-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #c8a96e;
  color: #c8a96e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 40px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.home-events-all-btn:hover {
  background: #c8a96e;
  color: #0a1628;
}

/* Responsive */
@media (max-width: 900px) {
  .home-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-events-inner {
    padding: 0 20px;
  }
  .home-events-grid {
    grid-template-columns: 1fr;
  }
  .home-events-section {
    padding: 60px 0;
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-new-section {
    padding: 40px 0 40px 0;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-content-wrapper {
    padding: 0 20px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-new-item.faq-active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ROI Calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.calc-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 0;
  border-left: 4px solid var(--accent);
  min-height: 50px;
}

.calc-input label {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0;
  flex: 1;
}

.calc-input input {
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  font-size: 1.5rem;
  width: 200px;
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
}

.calc-input input:hover {
  border-color: #d0d0d0;
  background: white;
}

.calc-input input:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(226, 173, 133, 0.1);
}

.calc-result-box {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.calc-result-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.total-amount {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.result-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.result-breakdown div {
  text-align: center;
}

.result-breakdown small {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.result-breakdown strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
}

/* Calculator Page Specific Styles */
.calculator-hero {
  background: linear-gradient(135deg, rgba(119, 84, 64, 0.9) 0%, rgba(107, 87, 66, 0.9) 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.calculator-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(119, 84, 64, 0.85) 0%, rgba(107, 87, 66, 0.85) 100%);
  z-index: 1;
}

.calculator-hero .container {
  position: relative;
  z-index: 2;
}

.calculator-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

.calculator-page {
  padding: 80px 0;
  background: #f5f5f5;
}

.calc-inputs-wrapper {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 50px;
}

.calc-inputs-wrapper h3 {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 40px;
}

.calculator-intro {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.calc-results {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 20px;
  margin: 50px 0;
}

.calc-results h3 {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 40px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 4px solid var(--accent);
  min-height: 60px;
}

.result-breakdown {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.result-label {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  border-radius: 15px;
  margin-top: 30px;
  color: white;
}

.result-total-label {
  font-size: 1.3rem;
  font-weight: 600;
}

.result-total-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.result-payback {
  text-align: center;
  margin-top: 30px;
}

.payback-message {
  font-size: 1.4rem;
  color: #333;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 2px solid var(--accent);
}

.payback-years {
  color: var(--accent);
  font-size: 1.6rem;
}

/* Scenario selector */
.scenario-selector {
  margin: 0 0 40px;
  padding: 28px 32px;
  background: #f9f6f3;
  border-left: 4px solid var(--primary, #775440);
  border-radius: 4px;
}
.scenario-label {
  font-weight: 600;
  font-size: 1rem;
  color: #2C2C2C;
  margin: 0 0 16px;
}
.scenario-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scenario-option {
  cursor: pointer;
  flex: 1;
  min-width: 160px;
}
.scenario-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
}
.scenario-card {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border: 2px solid #D9D2CA;
  border-radius: 6px;
  background: white;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.scenario-card strong {
  font-size: 0.95rem;
  color: #2C2C2C;
}
.scenario-card span {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}
.scenario-option input:checked + .scenario-card {
  border-color: var(--primary, #775440);
  background: #f3ede8;
}

/* Disclaimer onder de uitkomst */
.calc-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}
.calc-disclaimer p {
  margin: 0 0 8px;
}
.calc-disclaimer p:last-child {
  margin-bottom: 0;
}

/* E-mail capture */
.calc-email-capture {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #e0d8d0;
  border-radius: 6px;
  background: white;
}
.email-capture-label {
  font-size: 0.95rem;
  color: #2C2C2C;
  margin: 0 0 14px;
}
.email-capture-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.email-capture-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
}
.email-capture-form button {
  padding: 10px 20px;
  background: var(--primary, #775440);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-capture-form button:hover {
  background: #5c3d2e;
}
.calc-email-confirm {
  display: none;
  margin-top: 12px;
  color: #2d6a4f;
  font-size: 0.9rem;
}

/* Bronvermelding reality-sectie */
.reality-sources {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

.calculator-explanation {
  margin: 0;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920') center/cover;
  background-attachment: fixed;
  color: white;
  position: relative;
}

.calculator-explanation .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.calculator-explanation h3 {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 50px;
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.explanation-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.explanation-item h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #21212b;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.explanation-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.calculator-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  border-radius: 20px;
  color: white;
  margin-top: 60px;
}

.calculator-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.calculator-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #21212b;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 173, 133, 0.4);
}

/* Contact Section */
#contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920') center/cover;
  background-attachment: fixed;
  padding: 120px 60px 120px 60px;
  color: white;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}

#contact h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

#contact .subtitle {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 60px;
  font-weight: 400;
  text-align: center;
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-detail-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 25px;
}

.contact-detail-item h3 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-detail-item p {
  font-size: 1.3rem;
  color: white;
  line-height: 1.6;
  margin: 0;
}

.contact-detail-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-item a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.submit-button {
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}

.submit-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(119, 84, 64, 0.3);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin: 0;
  margin-top: 0 !important;
}

footer p {
  margin: 10px 0;
  opacity: 0.8;
}

/* Hero kolom 2 verbergen op mobiel en tablet */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-section > div {
    grid-column: 1 / -1 !important;
  }

  .hero-col2-top,
  .hero-col2-bottom {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .hero-top-left h1 {
    font-size: 2.5rem;
  }
  
  .hero-bottom-left {
    min-height: 200px;
  }
  
  .hero-bottom-right {
    min-height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  
  .menu-toggle {
    display: flex;
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
  
  .nav-menu {
    width: 280px;
  }
  
  .reality-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reality-circle {
    width: 240px;
    height: 240px;
  }
  
  .performance-content {
    grid-template-columns: 1fr;
  }
  
  .performance-metrics {
    grid-template-columns: 1fr;
  }
  
  .basis-gegevens ul {
    grid-template-columns: 1fr;
  }
  
  .testimonial-item {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .testimonial-logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  
  .testimonial-item:nth-child(2) .testimonial-logo-container {
    order: 0;
  }
  
  .testimonial-item:nth-child(2) .testimonial-content {
    order: 1;
  }
  
  #contact h2 {
    font-size: 2rem;
  }
}

/* reCAPTCHA Badge - Verberg en blokkeer geen interactie */
.grecaptcha-badge {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Voorkom dat reCAPTCHA overlays de pagina blokkeren */
div[style*="z-index: 2000000000"],
div[style*="z-index:2000000000"],
iframe[src*="recaptcha"] {
  pointer-events: none !important;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-content p:first-child {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent);
  color: #21212b;
}

.cookie-accept:hover {
  background: #E2AD85;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(226, 173, 133, 0.4);
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-accept,
  .cookie-decline {
    flex: 1;
  }
}

/* Footer Styling */
.site-footer {
  background: #21212b;
  color: #aaa;
  margin-top: 80px;
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  text-align: left;
}

/* Footer Brand - Logo naast tekst */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.footer-brand-logo {
  flex-shrink: 0;
}

.footer-logo-icon {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.footer-brand-info h3 {
  margin-bottom: 10px;
}

.footer-column h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-address {
  margin-top: 20px;
  font-size: 0.95rem;
}

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

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-menu a:hover {
  color: var(--accent);
}

/* Footer Submenu - Inklapbaar */
.footer-menu > .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-menu > .menu-item-has-children > a {
  display: inline;
}

.footer-menu > .menu-item-has-children > .footer-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 2px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.footer-menu > .menu-item-has-children > .sub-menu {
  flex-basis: 100%;
}

.footer-menu > .menu-item-has-children.footer-submenu-open > .footer-submenu-toggle {
  transform: rotate(45deg);
}

.footer-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.footer-menu > .menu-item-has-children.footer-submenu-open > .sub-menu {
  max-height: 500px;
  padding-top: 8px;
}

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

.footer-menu .sub-menu a {
  font-size: 0.9rem;
  color: #888;
}

.footer-menu .sub-menu a:hover {
  color: var(--accent);
}

.footer-privacy {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333;
}

.footer-privacy a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-privacy a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  color: #0077b5;
  transform: translateX(5px);
}

.footer-bottom {
  background: #0d0d0d;
  padding: 25px 40px;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.footer-privacy-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-privacy-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}

/* Privacy & Cookies Page */
.privacy-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.privacy-hero .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-content {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 60px;
  border-left: 4px solid var(--accent);
}

.privacy-intro p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

.privacy-section {
  margin-bottom: 50px;
}

.privacy-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.privacy-section h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 30px 0 15px;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.privacy-section ul {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy-section ul li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #333;
}

.privacy-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-top: 80px;
}

.privacy-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.privacy-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.privacy-cta .cta-button {
  background: var(--accent);
  color: var(--dark);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.privacy-cta .cta-button:hover {
  background: #E2AD85;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 173, 133, 0.3);
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .privacy-content {
    padding: 60px 20px;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-cta {
    padding: 40px 30px;
  }
}

/* Calculator Mobile Responsive Styles */
@media (max-width: 768px) {
  .calculator-hero {
    padding: 80px 20px 60px;
  }
  
  .calculator-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .calculator-page {
    padding: 60px 20px;
  }
  
  .calculator-intro {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .calc-inputs-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  
  .calc-inputs-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .calc-input {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 10px;
  }
  
  .calc-input label {
    font-size: 1rem;
    width: 100%;
  }
  
  .calc-input input {
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
  }
  
  .calc-results {
    padding: 30px 20px;
    border-radius: 15px;
    margin: 30px 0;
  }
  
  .calc-results h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .result-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 8px;
  }
  
  .result-label {
    font-size: 1rem;
    width: 100%;
  }
  
  .result-value {
    font-size: 1.3rem;
    width: 100%;
    text-align: left;
  }
  
  .result-total {
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
  }
  
  .result-total-label {
    font-size: 1.1rem;
  }
  
  .result-total-value {
    font-size: 2rem;
  }
  
  .result-payback {
    padding: 20px;
    margin-top: 20px;
  }
  
  .payback-message {
    font-size: 1rem;
  }
  
  .calculator-explanation {
    padding: 80px 20px;
  }
  
  .calculator-explanation h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .explanation-item {
    padding: 20px;
  }
  
  .explanation-item h4 {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .icon-box {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .explanation-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .calculator-cta {
    padding: 40px 20px;
  }
  
  .calculator-cta h3 {
    font-size: 1.5rem;
  }
  
  .calculator-cta p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .calculator-hero h1 {
    font-size: 2rem;
  }
  
  .calc-input input {
    font-size: 1.1rem;
  }
  
  .result-value {
    font-size: 1.2rem;
  }
  
  .result-total-value {
    font-size: 1.8rem;
  }
}


/* Logo Icon Image Support */
.hero-logo-icon img,
.nav-menu-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* ============================================
   EVENEMENTEN PAGINA
   ============================================ */

/* ── Hero ─────────────────────────────────── */
.ev-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.ev-hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.ev-hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ev-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ev-hero-intro {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Filter tabs ──────────────────────────── */
.ev-filter-bar {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ev-filter-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ev-filter-bar .container::-webkit-scrollbar {
  display: none;
}

.ev-filter-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  padding: 16px 20px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.ev-filter-tab:hover {
  color: var(--primary);
}

.ev-filter-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* ── Events list ─────────────────────────── */
.ev-list-section {
  background: #f9f8f6;
  padding: 60px 0 80px;
}

.ev-list-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ev-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Card ────────────────────────────────── */
.ev-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.ev-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.ev-card--full {
  opacity: 0.72;
}

.ev-card-main {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 0;
  align-items: stretch;
}

/* ── Date column ─────────────────────────── */
.ev-date-col {
  background: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  border-radius: 16px 0 0 0;
  min-width: 90px;
}

.ev-date-col--full {
  background: #aaa;
}

.ev-day {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.ev-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 2px;
}

.ev-year {
  font-size: 0.68rem;
  opacity: 0.65;
  margin-top: 3px;
}

/* ── Content area ────────────────────────── */
.ev-content {
  padding: 22px 24px;
  min-width: 0;
}

.ev-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ev-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: #888;
}

.ev-meta-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.ev-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ev-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ── Tags ────────────────────────────────── */
.ev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ev-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: #f0f0f0;
  color: #555;
}

.ev-tag--webinar     { background: #e8f4f8; color: #2980b9; }
.ev-tag--masterclass { background: #fef3e2; color: #c0792a; }
.ev-tag--workshop    { background: #e8f8ec; color: #27a24a; }
.ev-tag--overig      { background: #f0f0f0; color: #777; }
.ev-tag--online      { background: #eef3ff; color: #4a6fa5; }
.ev-tag--fysiek      { background: #f3eeff; color: #7c4dbd; }
.ev-tag--full        { background: #fce8e8; color: #c0392b; }
.ev-tag--low         { background: #fff3e0; color: #e67e22; }

/* ── Action column ───────────────────────── */
.ev-action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 24px;
  gap: 14px;
  min-width: 180px;
  border-left: 1px solid #f0f0f0;
}

/* ── Spots indicator ─────────────────────── */
.ev-spots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  font-size: 0.78rem;
  color: #888;
}

.ev-spots > span:last-of-type {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ev-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

.ev-dot--low  { background: #ff9800; }
.ev-dot--full { background: #f44336; }

.ev-spots-bar {
  width: 100%;
  height: 5px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.ev-spots-fill {
  height: 100%;
  background: #4caf50;
  border-radius: 10px;
  transition: width 0.4s;
}

.ev-spots-fill--low { background: #ff9800; }

/* ── Buttons ─────────────────────────────── */
.ev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.ev-btn--primary {
  background: var(--primary);
  color: white;
}

.ev-btn--primary:hover {
  background: #5d4837;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(119,84,64,0.3);
}

.ev-btn--primary svg {
  transition: transform 0.25s;
}

.ev-btn--primary.ev-btn--open svg {
  transform: rotate(180deg);
}

.ev-btn--disabled {
  background: #e0e0e0;
  color: #aaa;
  cursor: not-allowed;
}

/* ── Expandable form ─────────────────────── */
.ev-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
  border-top: 0px solid #eee;
}

.ev-form-wrap.ev-form-open {
  max-height: 900px;
  border-top-width: 1px;
}

.ev-form-inner {
  padding: 28px 28px 24px;
  background: #faf9f7;
}

.ev-form-title {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.ev-form-sub {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* ── Form grid ───────────────────────────── */
.ev-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 18px;
}

.ev-fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ev-fg--full {
  grid-column: 1 / -1;
}

.ev-fg label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

.ev-req {
  color: var(--primary);
}

.ev-in {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
  color: var(--dark);
}

.ev-in:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.ev-in {
  resize: vertical;
  min-height: 80px;
}

/* ── Form feedback ───────────────────────── */
.ev-form-error {
  background: #fde8e8;
  color: #b91c1c;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  border-left: 3px solid #b91c1c;
}

.ev-form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ecfdf5;
  color: #065f46;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  border-left: 3px solid #10b981;
}

.ev-form-success p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.ev-ok-icon {
  font-size: 1.6rem;
  font-weight: 700;
  color: #10b981;
  flex-shrink: 0;
}

/* ── Form actions ────────────────────────── */
.ev-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ev-btn-submit {
  background: var(--primary);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.ev-btn-submit:hover {
  background: #5d4837;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(119,84,64,0.3);
}

.ev-btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ev-privacy {
  font-size: 0.78rem;
  color: #aaa;
  line-height: 1.5;
  margin: 0;
}

/* ── Empty state ─────────────────────────── */
.ev-empty {
  text-align: center;
  padding: 80px 24px;
  color: #aaa;
}

.ev-empty svg {
  margin-bottom: 20px;
  color: #ccc;
}

.ev-empty h3 {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
}

.ev-empty p {
  font-size: 1rem;
  color: #999;
  max-width: 420px;
  margin: 0 auto;
}

/* ── CTA section ─────────────────────────── */
.ev-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  color: white;
  text-align: center;
  padding: 80px 24px;
}

.ev-cta-section h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 16px;
}

.ev-cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ev-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
}

.ev-cta-btn:hover {
  background: #e8bb96;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,173,133,0.4);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .ev-card-main {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .ev-action-col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding: 14px 20px;
    min-width: unset;
  }

  .ev-spots {
    flex-direction: row;
    align-items: center;
    width: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .ev-spots-bar {
    width: 80px;
  }
}

@media (max-width: 640px) {
  .ev-hero h1 {
    font-size: 2.2rem;
  }

  .ev-card-main {
    grid-template-columns: 1fr;
  }

  .ev-date-col {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 16px 16px 0 0;
  }

  .ev-day   { font-size: 1.6rem; }
  .ev-month { font-size: 0.8rem; margin-top: 0; }
  .ev-year  { font-size: 0.75rem; margin-top: 0; opacity: 0.7; }

  .ev-content {
    padding: 16px 16px 10px;
  }

  .ev-action-col {
    padding: 12px 16px;
  }

  .ev-form-grid {
    grid-template-columns: 1fr;
  }

  .ev-form-inner {
    padding: 20px 16px;
  }

  .ev-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ev-btn-submit {
    width: 100%;
    text-align: center;
  }

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

/* ── Extra ev-tag varianten ──────────────────────────────────────── */
.ev-tag--gratis { background: #ecfdf5; color: #065f46; }
.ev-tag--price  { background: #fff3e0; color: #c0792a; font-weight: 700; }

/* ── Card featured image strip ───────────────────────────────────── */
.ev-card-image {
  display: block;
  height: 160px;
  background: #eee center/cover no-repeat;
  border-radius: 16px 16px 0 0;
  transition: opacity 0.2s;
}

.ev-card-image:hover {
  opacity: 0.9;
}

/* ── Info button (Meer informatie) ───────────────────────────────── */
.ev-btn--info {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  text-decoration: none;
}

.ev-btn--info:hover {
  background: var(--primary);
  color: white;
}

/* ── Actie-kolom: twee knoppen gelijke breedte ───────────────────── */
.ev-action-col {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.ev-action-col .ev-btn {
  width: 100%;
  height: 44px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  line-height: 1;
}

/* ============================================
   SINGLE EVENEMENT PAGINA (single-evenement.php)
   ============================================ */

/* ── Hero ─────────────────────────────────── */
.sev-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.sev-hero--image {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.sev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33,33,43,0.45) 0%, rgba(33,33,43,0.85) 100%);
}

.sev-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 48px;
  width: 100%;
}

.sev-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.sev-back-link:hover {
  color: white;
}

.sev-hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.sev-type-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sev-type-badge--webinar     { background: rgba(41,128,185,0.7); }
.sev-type-badge--masterclass { background: rgba(192,121,42,0.7); }
.sev-type-badge--workshop    { background: rgba(39,162,74,0.7); }

.sev-price-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--dark);
}

.sev-price-badge--gratis {
  background: rgba(236,253,245,0.9);
  color: #065f46;
}

.sev-hero h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sev-hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sev-hero-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.sev-hero-detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Payment banner (terugkeer Mollie) ───── */
.sev-payment-banner {
  padding: 20px 0;
}

.sev-payment-banner--ok {
  background: #ecfdf5;
  border-bottom: 2px solid #10b981;
}

.sev-payment-banner--pending {
  background: #fff3e0;
  border-bottom: 2px solid #ff9800;
}

.sev-payment-banner .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sev-payment-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.sev-payment-icon--pending {
  font-size: 1.4rem;
}

.sev-payment-banner strong {
  display: block;
  font-size: 1.05rem;
  color: #064e3b;
  margin-bottom: 4px;
}

.sev-payment-banner p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ── Body layout ──────────────────────────── */
.sev-body {
  background: #f9f8f6;
  padding: 60px 0 80px;
}

.sev-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Content column ───────────────────────── */
.sev-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sev-intro {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.sev-the-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.sev-the-content h2,
.sev-the-content h3 {
  color: var(--primary);
  margin: 28px 0 14px;
}

.sev-the-content p {
  margin-bottom: 16px;
}

.sev-the-content ul,
.sev-the-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.sev-the-content li {
  margin-bottom: 6px;
}

/* ── Sidebar / Inschrijfbox ───────────────── */
.sev-sidebar {
  position: sticky;
  top: 90px;
}

.sev-register-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-top: 4px solid var(--primary);
}

/* Volgeboekt state */
.sev-full-state {
  text-align: center;
  padding: 20px 0;
}

.sev-full-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sev-full-state h3 {
  color: #aaa;
  margin-bottom: 10px;
}

.sev-full-state p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

/* Betaling geslaagd state */
.sev-success-state {
  text-align: center;
  padding: 20px 0;
}

.sev-ok-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.sev-success-state h3 {
  color: #065f46;
  margin-bottom: 10px;
}

.sev-success-state p {
  font-size: 0.9rem;
  color: #555;
}

/* Spots indicator */
.sev-spots-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.sev-spots-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sev-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #4caf50; flex-shrink: 0; }
.sev-dot--low  { background: #ff9800; }
.sev-dot--full { background: #f44336; }

.sev-spots-bar {
  width: 100%;
  height: 5px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.sev-spots-fill {
  height: 100%;
  background: #4caf50;
  border-radius: 10px;
}

.sev-spots-fill--low { background: #ff9800; }

/* Prijs rij */
.sev-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #fef3e2;
  border-radius: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.sev-price-row--gratis {
  background: #ecfdf5;
}

.sev-price-big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.sev-price-row--gratis .sev-price-big {
  color: #065f46;
}

.sev-price-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

/* Formulier in sidebar */
.sev-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.sev-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 16px;
}

.sev-fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sev-fg--full {
  grid-column: 1 / -1;
}

.sev-fg label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

/* Knoppen in sidebar */
.sev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.sev-btn--primary {
  background: var(--primary);
  color: white;
}

.sev-btn--primary:hover {
  background: #5d4837;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(119,84,64,0.3);
}

.sev-btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.sev-btn-submit:hover {
  background: #5d4837;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(119,84,64,0.3);
}

.sev-btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Gerelateerde evenementen (donkerblauw) ── */
.sev-related-dark {
  background: #0a1628;
  padding: 70px 0 80px;
  border-top: 1px solid rgba(200,169,110,0.15);
}

/* ── Gerelateerde evenementen (oud, behouden) ── */
.sev-related {
  background: white;
  padding: 60px 0 80px;
  border-top: 1px solid #eee;
}

.sev-related .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sev-related-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 32px;
}

.sev-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sev-rel-card {
  display: block;
  background: #f9f8f6;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #eee;
}

.sev-rel-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.sev-rel-image {
  height: 140px;
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%) center/cover no-repeat;
}

.sev-rel-image--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
}

.sev-rel-body {
  padding: 18px 20px 20px;
}

.sev-rel-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sev-rel-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.sev-rel-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
}

.sev-rel-details span::before {
  content: '';
}

.sev-rel-details span + span::before {
  content: '·';
  margin-right: 8px;
}

/* ── Responsive single event ──────────────── */
@media (max-width: 900px) {
  .sev-layout {
    grid-template-columns: 1fr;
  }

  .sev-sidebar {
    position: static;
    order: -1;
  }

  .sev-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sev-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .sev-content {
    padding: 24px 20px;
  }

  .sev-register-box {
    padding: 24px 20px;
  }

  .sev-form-grid {
    grid-template-columns: 1fr;
  }

  .sev-related-grid {
    grid-template-columns: 1fr;
  }

  .sev-hero h1 {
    font-size: 1.7rem;
  }
}

/* ============================================
   SINGLE EVENEMENT — Donkerblauw thema (sev2)
   ============================================ */

/* ── Gedeeld hulpklasse ─────────────────────── */
.sev2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Hero ────────────────────────────────────── */
.sev2-hero {
  position: relative;
  min-height: 380px;
  background: #0a1628 center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.sev2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.92) 100%);
}

.sev2-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 48px;
}

.sev2-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c8a96e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.sev2-back:hover { opacity: 1; }

.sev2-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.sev2-type-badge {
  background: #c8a96e;
  color: #0a1628;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.sev2-price-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(200,169,110,0.5);
  color: #c8a96e;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.sev2-price-badge--free {
  background: rgba(46,125,50,0.25);
  border-color: rgba(76,175,80,0.5);
  color: #81c784;
}

.sev2-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.15;
  max-width: 700px;
}

.sev2-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sev2-hero-detail {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #c8d8e8;
}

.sev2-hero-detail svg { color: #c8a96e; flex-shrink: 0; }

/* ── Betaalbanner ────────────────────────────── */
.sev2-payment-banner {
  padding: 16px 0;
}

.sev2-payment-banner--ok      { background: #1b4332; }
.sev2-payment-banner--pending { background: #1a2d4a; }

.sev2-payment-banner .sev2-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
}

.sev2-banner-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.sev2-payment-banner strong { font-size: 15px; }
.sev2-payment-banner p      { margin: 4px 0 0; color: #a0c4a8; }

/* ── Body ────────────────────────────────────── */
.sev2-body {
  background: #0a1628;
  padding: 56px 0 80px;
}

.sev2-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* ── Linkerkolom: inhoud ─────────────────────── */
.sev2-content {
  background: #132035;
  border-radius: 10px;
  padding: 36px 40px;
}

.sev2-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #c8d8e8;
  font-weight: 500;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.sev2-the-content {
  color: #b0c4d8;
  font-size: 15px;
  line-height: 1.8;
}

.sev2-the-content h2,
.sev2-the-content h3 { color: #ffffff; margin-top: 28px; }

.sev2-the-content p  { margin-bottom: 16px; }

.sev2-the-content a  { color: #c8a96e; }

.sev2-the-content strong { color: #e0e8f0; }

/* ── Rechterkolom: inschrijfbox ──────────────── */
.sev2-sidebar {
  position: sticky;
  top: 100px;
}

.sev2-register-box {
  background: #132035;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 10px;
  padding: 28px;
  border-top: 4px solid #c8a96e;
}

/* Spots indicator */
.sev2-spots-row {
  margin-bottom: 20px;
}

.sev2-spots-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.sev2-spots-bar-fill {
  height: 100%;
  background: #c8a96e;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.sev2-spots-bar-fill--low { background: #ef5350; }

.sev2-spots-label {
  font-size: 12px;
  color: #8899aa;
}

/* Prijs */
.sev2-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px;
}

.sev2-price-amount {
  font-size: 32px;
  font-weight: 800;
  color: #c8a96e;
  line-height: 1;
}

.sev2-price-amount--free { color: #81c784; }

.sev2-price-note {
  font-size: 12px;
  color: #8899aa;
}

/* Form */
.sev2-form-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}

.sev2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.sev2-fg { display: flex; flex-direction: column; gap: 5px; }
.sev2-fg--full { grid-column: 1 / -1; }

.sev2-fg label {
  font-size: 12px;
  font-weight: 600;
  color: #8899aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sev2-req { color: #c8a96e; }

.sev2-in {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.sev2-in::placeholder { color: #4a6070; }
.sev2-in:focus {
  outline: none;
  border-color: #c8a96e;
  background: rgba(200,169,110,0.08);
}

.sev2-in:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Fout / succes */
.sev2-error {
  background: rgba(239,83,80,0.15);
  border-left: 3px solid #ef5350;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ef9a9a;
  margin-bottom: 12px;
}

.sev2-success {
  background: rgba(46,125,50,0.2);
  border-left: 3px solid #4caf50;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 13px;
  color: #a5d6a7;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sev2-ok-check {
  font-size: 18px;
  background: #4caf50;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Submit knop */
.sev2-btn-submit {
  width: 100%;
  background: #c8a96e;
  color: #0a1628;
  border: none;
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}

.sev2-btn-submit:hover  { background: #d4b87a; }
.sev2-btn-submit:active { transform: scale(0.99); }
.sev2-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Privacy tekst */
.sev2-privacy {
  font-size: 11px;
  color: #4a6070;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* State blokken */
.sev2-state-block {
  text-align: center;
  padding: 20px 0;
}

.sev2-state-icon { font-size: 40px; margin-bottom: 12px; }

.sev2-state-block h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.sev2-state-block p  { color: #8899aa; font-size: 14px; }

.sev2-ok-circle {
  width: 48px; height: 48px;
  background: #4caf50;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

/* ── Gerelateerde evenementen ─────────────────── */
.sev2-related {
  background: #0a1628;
  padding: 70px 0 80px;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.sev2-related-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 960px) {
  .sev2-layout {
    grid-template-columns: 1fr;
  }
  .sev2-sidebar {
    position: static;
    order: -1;
  }
  .sev2-hero-inner,
  .sev2-inner { padding: 0 24px; }
  .sev2-hero-inner { padding-bottom: 36px; }
  .sev2-content { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .sev2-form-grid { grid-template-columns: 1fr; }
  .sev2-hero { min-height: 300px; }
  .sev2-hero-title { font-size: 1.6rem; }
}

/* Hero Section Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Hero Title - Larger and Animated */
.hero-title {
  font-size: 5rem !important;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: slideInLeft 1s ease-out;
  animation-fill-mode: both;
}

/* Hero Subtitle - Larger and Animated */
.hero-subtitle {
  font-size: 1.6rem !important;
  opacity: 0.95;
  margin-bottom: 40px;
  animation: slideInLeft 1s ease-out 0.2s;
  animation-fill-mode: both;
  text-align: left;
  margin-left: 0;
}

/* Hero Logo Animation */
.hero-logo {
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

/* Hero CTA Animation */
.hero-cta-btn {
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.4rem !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
}

/* Hero Content Layout */
.hero-top-content {
  flex: 0;
}

.hero-bottom-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Mobile Hero Layout */
@media (max-width: 768px) {
  .hero-bottom-content {
    justify-content: center;
  }
}

/* Projects Archive Page Styling */

/* Projects Hero Section */
.projects-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #5d4837 100%);
  padding: 150px 0 100px;
  text-align: center;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=1920') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.projects-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(33, 33, 43, 0.3));
  z-index: 1;
}

.projects-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.projects-hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.projects-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background: #f5f5f5;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Project Card */
.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e0e0e0;
}

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

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.no-image-placeholder {
  color: #999;
}

/* Project Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Project Content */
.project-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}




.project-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.project-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

.project-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.project-link:hover {
  color: var(--accent);
  gap: 12px;
}

.project-link svg {
  transition: transform 0.3s;
}

.project-link:hover svg {
  transform: translateX(4px);
}

/* Pagination */
.projects-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.projects-pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.projects-pagination .page-numbers {
  padding: 12px 18px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: all 0.3s;
}

.projects-pagination .page-numbers:hover,
.projects-pagination .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.projects-pagination .dots {
  padding: 12px 8px;
  color: #999;
}

/* No Projects State */
.no-projects {
  text-align: center;
  padding: 100px 40px;
  background: white;
  border-radius: 12px;
}

.no-projects-icon {
  color: var(--accent);
  margin-bottom: 30px;
}

.no-projects h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.no-projects p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.no-projects .cta-button {

/* ============================================
   PROJECT DETAIL PAGE STYLING - CLEAN VERSION
   ============================================ */

/* Hero Section */
.project-detail-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.project-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1);
}

.project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
  animation: fadeInUp 1s ease-out;
}

.project-hero-text {
  color: white;
}

.project-breadcrumb {
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

.project-breadcrumb a {
  color: white;
  text-decoration: none;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}

.project-breadcrumb a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.project-breadcrumb .separator {
  margin: 0 10px;
  opacity: 0.6;
}

.project-breadcrumb .current {
  opacity: 0.8;
}

.project-detail-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Info Bar */
.project-info-bar {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin: 0;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #775440, #E2AD85);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  color: white;
  width: 24px;
  height: 24px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-value {
  font-size: 1.1rem;
  color: #21212b;
  font-weight: 600;
}

/* Content Section */
.project-content-section {
  padding: 100px 0;
  background: #fafafa;
}

.project-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.project-main-content {
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.project-main-content h2 {
  font-size: 2rem;
  color: #775440;
  margin: 40px 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #E2AD85;
}

.project-main-content h2:first-child {
  margin-top: 0;
}

.project-main-content h3 {
  font-size: 1.5rem;
  color: #21212b;
  margin: 30px 0 15px 0;
}

.project-main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.project-main-content ul,
.project-main-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.project-main-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}

.project-main-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Gallery Section */
.project-gallery-section {
  padding: 0;
  margin: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Navigation Section */
.project-navigation-section {
  padding: 100px 0;
  background: white;
}

.project-nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.project-nav-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.project-nav-card:hover {
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.project-nav-card.prev {
  text-align: left;
}

.project-nav-card.next {
  text-align: right;
}

.nav-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #775440;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-nav-card.next .nav-card-label {
  justify-content: flex-end;
}

.nav-card-label svg {
  transition: transform 0.3s;
}

.project-nav-card.prev:hover .nav-card-label svg {
  transform: translateX(-4px);
}

.project-nav-card.next:hover .nav-card-label svg {
  transform: translateX(4px);
}

.nav-card-label span {
  color: #666;
}

.nav-card-title {
  font-size: 1.3rem;
  color: #21212b;
  margin: 0;
  line-height: 1.4;
}

.nav-card-thumb {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.project-nav-card:hover .nav-card-thumb {
  opacity: 1;
}

.nav-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.project-nav-spacer {
  min-height: 150px;
}

.back-to-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #775440;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.back-to-overview:hover {
  background: #E2AD85;
  transform: scale(1.05);
}

.back-to-overview svg {
  transition: transform 0.3s;
}

.back-to-overview:hover svg {
  transform: rotate(90deg);
}

/* CTA Section */
.project-cta-section {
  background: linear-gradient(135deg, #775440 0%, #5d4837 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.project-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,130,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

.project-cta-content {
  position: relative;
  z-index: 2;
}

.project-cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.project-cta-content p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  text-align: center;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #E2AD85;
  color: #21212b;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: #E2AD85;
}

.cta-button-large svg {
  transition: transform 0.3s;
}

.cta-button-large:hover svg {
  transform: translateX(5px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .project-detail-title {
    font-size: 2.8rem;
  }
  
  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-main-content {
    padding: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .project-detail-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .project-hero-image {
    background-attachment: scroll;
  }
  
  .project-detail-title {
    font-size: 2rem;
  }
  
  .info-bar-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-content-section {
    padding: 60px 0;
  }
  
  .project-main-content {
    padding: 30px 20px;
  }
  
  .project-main-content h2 {
    font-size: 1.6rem;
  }
  
  .project-main-content p,
  .project-main-content li {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .project-nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .back-to-overview {
    order: -1;
  }
  
  .project-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .project-cta-content p {
    font-size: 1.1rem;
  }
  
  .cta-button-large {
    padding: 16px 35px;
    font-size: 1.1rem;
  }
}
}

/* ============================================
   PROJECT DETAIL PAGE - MOVED FROM INLINE
   ============================================ */

/* Hero */
.project-detail-hero {
    position: relative !important;
    height: 70vh !important;
    min-height: 500px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
}

.project-hero-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
}

.project-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.75)) !important;
}

.project-hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    padding: 60px 0 !important;
}

.project-hero-text {
    color: white !important;
}

.project-detail-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
}

.project-breadcrumb {
    margin-bottom: 20px !important;
    color: rgba(255,255,255,0.9) !important;
}

.project-breadcrumb a {
    color: white !important;
    text-decoration: none !important;
}

/* Info Bar - CRITICAL */
.project-info-bar {
    background: white !important;
    padding: 40px 0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
}

.info-bar-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 40px !important;
}

.info-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.info-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #775440, #E2AD85) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.info-icon svg {
    color: white !important;
    stroke: white !important;
    width: 24px !important;
    height: 24px !important;
}

.info-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.info-label {
    font-size: 0.85rem !important;
    color: #999 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.info-value {
    font-size: 1.1rem !important;
    color: #21212b !important;
    font-weight: 600 !important;
}

/* Content */
.project-content-section {
    padding: 100px 0 !important;
    background: #fafafa !important;
}

.project-content-wrapper {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.project-main-content {
    background: white !important;
    padding: 60px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06) !important;
}

.project-main-content h2 {
    font-size: 2rem !important;
    color: #775440 !important;
    margin: 40px 0 20px 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 3px solid #E2AD85 !important;
    font-weight: 700 !important;
}

.project-main-content h2:first-child {
    margin-top: 0 !important;
}

.project-main-content p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #444 !important;
    margin-bottom: 20px !important;
}

.project-main-content ul {
    margin: 20px 0 !important;
    padding-left: 30px !important;
}

.project-main-content li {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #444 !important;
    margin-bottom: 10px !important;
}

.project-main-content strong {
    color: #775440 !important;
    font-weight: 600 !important;
}

/* Navigation */
.project-navigation-section {
    padding: 100px 0 !important;
    background: white !important;
}

.project-nav-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 40px !important;
    align-items: center !important;
}

.project-nav-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 30px !important;
    background: #f8f8f8 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.4s ease !important;
}

.project-nav-card:hover {
    background: white !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    transform: translateY(-5px) !important;
}

.project-nav-card.prev {
    text-align: left !important;
}

.project-nav-card.next {
    text-align: right !important;
}

.nav-card-title {
    font-size: 1.3rem !important;
    color: #21212b !important;
    margin: 0 !important;
}

.project-nav-spacer {
    min-height: 150px !important;
}

.back-to-overview {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 20px !important;
    background: #775440 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.back-to-overview:hover {
    background: #E2AD85 !important;
    transform: scale(1.05) !important;
}

/* CTA */
.project-cta-section {
    background: linear-gradient(135deg, #775440, #5d4837) !important;
    padding: 100px 0 !important;
    text-align: center !important;
}

.project-cta-content h2 {
    font-size: 2.5rem !important;
    color: white !important;
    margin-bottom: 15px !important;
}

.cta-button-large {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #E2AD85 !important;
    color: #21212b !important;
    padding: 20px 50px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}



/* ============================================
   HAMBURGER MENU - NARROW SIDEBAR (18%)
   ============================================ */

/* Hamburger Button */
.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #775440;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: #E2AD85;
  transform: scale(1.05);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* X Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Narrow Sidebar Menu - 18% width */
.main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 18%;
  min-width: 250px;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #775440 0%, #21212b 100%);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.main-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Menu Inner Layout */
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 80px 20px;
}

/* Menu Logo - smaller */
.menu-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.menu-logo-icon {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.menu-logo-text {
  font-size: 2rem;
  color: white;
  font-weight: 300;
}

/* Menu Container */
.menu-inner .container {
  width: 100%;
  padding: 0 10px;
}

/* Menu List */
.main-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.main-nav-list li {
  margin: 15px 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

/* Staggered Animation */
.main-menu.active .main-nav-list li {
  opacity: 1;
  transform: translateX(0);
}

.main-menu.active .main-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.main-menu.active .main-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.main-menu.active .main-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.main-menu.active .main-nav-list li:nth-child(4) { transition-delay: 0.25s; }
.main-menu.active .main-nav-list li:nth-child(5) { transition-delay: 0.3s; }
.main-menu.active .main-nav-list li:nth-child(6) { transition-delay: 0.35s; }

/* Menu Links - smaller font */
.main-nav-list a {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.4;
}

.main-nav-list a:hover {
  color: #E2AD85;
  transform: scale(1.05);
}

/* Menu CTA Button - compact */
.menu-cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}

.menu-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E2AD85;
  color: #21212b;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  width: 100%;
}

.menu-cta-button:hover {
  background: #E2AD85;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.menu-cta-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.menu-cta-button:hover svg {
  transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .main-menu {
    width: 28%;
    min-width: 240px;
  }
  
  .main-nav-list a {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .main-menu {
    width: 65%;
    min-width: 260px;
    max-width: 100%;
  }
  
  .menu-toggle {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
  
  .menu-toggle span {
    width: 20px;
  }
  
  .menu-logo {
    top: 25px;
  }
  
  .menu-logo-icon {
    height: 35px;
  }
  
  .menu-logo-text {
    font-size: 1.8rem;
  }
  
  .main-nav-list li {
    margin: 12px 0;
  }
  
  .main-nav-list a {
    font-size: 1.1rem;
  }
  
  .menu-cta {
    bottom: 30px;
  }
  
  .menu-cta-button {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .main-menu {
    width: 75%;
  }
}
/* ============================================
   SPLIT NAVIGATION STYLES
   ============================================ */

/* Split Navigation */
.split-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.split-nav.scrolled {
    box-shadow: 0 2px 20px rgba(119, 84, 64, 0.08);
    border-bottom-color: var(--accent);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary);
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links > li > a:hover {
    color: var(--primary);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after {
    width: 100%;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.nav-links li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(119, 84, 64, 0.15);
    padding: 40px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 30px;
    border: 1px solid var(--light-gray);
}

.nav-links li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mega-menu-item {
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: var(--light-gray);
    border-color: var(--accent);
    transform: translateX(5px);
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(119, 84, 64, 0.2);
}

.mega-menu-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.mega-menu-content h4 {
    color: var(--dark);
    font-size: 16px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.mega-menu-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Navigation Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form {
    margin: 0;
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.nav-search {
    background: white;
    border: 2px solid var(--accent);
    padding: 10px 20px 10px 42px;
    border-radius: 25px;
    font-size: 14px;
    width: 250px;
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(119, 84, 64, 0.15);
}

.nav-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(119, 84, 64, 0.25);
}

.nav-search::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--gray);
    pointer-events: none;
    z-index: 1;
}

.nav-search-wrapper > .search-icon {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 22px;
    height: 22px;
    stroke: var(--dark);
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.nav-search-wrapper > .search-icon:hover {
    stroke: var(--accent);
    transform: scale(1.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(119, 84, 64, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(119, 84, 64, 0.3);
    color: white;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-left {
        gap: 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 10px 30px rgba(119, 84, 64, 0.15);
        gap: 0;
        align-items: stretch;
        z-index: 999;
        overflow-y: auto;
        list-style: none;
        pointer-events: none;
    }

    .nav-links.active {
        display: flex !important;
        pointer-events: auto;
    }

    .nav-links > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links > li > a {
        padding: 20px 30px;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        color: var(--dark);
        transition: background 0.2s ease;
    }

    .nav-links > li > a:hover {
        background: #f9f9f9;
        color: var(--primary);
    }

    .nav-links > li > a::after {
        display: none;
    }

    /* Submenu styling for mobile */
    .nav-links .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: #f9f9f9;
    }

    .nav-links .sub-menu li a {
        padding: 15px 30px 15px 50px;
        font-size: 1rem;
    }

    .nav-search-wrapper {
        display: none;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
        position: relative;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--primary);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--primary);
    }

    .mega-menu {
        position: static;
        transform: none;
        margin-top: 10px;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 20px;
        background: var(--light-gray);
        border: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 20px;
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */

/* Page Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(119, 84, 64, 0.85) 0%, rgba(226, 173, 133, 0.75) 100%);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: white;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-content {
    font-size: 17px;
    line-height: 1.8;
    color: #2d2d2d;
}

.page-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin: 40px 0 20px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: var(--accent);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.page-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

/* Child Pages Section */
.child-pages-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--light-gray);
}

.child-pages-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.child-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.child-page-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.child-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(119, 84, 64, 0.15);
    border-color: var(--accent);
}

.child-page-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.child-page-no-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.child-page-icon {
    color: white;
}

.child-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(119, 84, 64, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.child-page-card:hover .child-page-overlay {
    opacity: 1;
}

.child-page-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.child-page-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.child-page-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.child-page-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Edit Link */
.edit-link {
    margin-top: 40px;
    text-align: center;
}

.edit-link a {
    background: var(--light-gray);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.edit-link a:hover {
    background: var(--accent);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        margin-top: 60px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .page-content-section {
        padding: 40px 0;
    }

    .page-content-wrapper {
        padding: 0 20px;
    }

    .page-content {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 26px;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .child-pages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .child-pages-title {
        font-size: 26px;
    }
}

/* ============================================
   DIENSTEN SECTIE - KLIKBARE KAARTEN
   ============================================ */

.service-item {
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: scale(1.03);
}

.service-item h4 {
    color: white;
    text-decoration: none;
}

/* ============================================
   ZOEKRESULTATEN PAGINA - GRID LAYOUT
   ============================================ */

/* Search Hero */
.search-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #8B7355 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
}

/* Hide default WordPress searchform */
body.search #searchform,
body.search .searchform,
body.search .search-form:not(.search-again),
body.search .hidden-searchform,
body.search form[role="search"]:not(.search-again) {
    display: none !important;
}

/* Make sure our search page is visible */
body.search .search-hero {
    display: block !important;
}

body.search .search-results-container {
    display: block !important;
}

.search-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.search-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.search-term {
    color: var(--accent);
    font-style: italic;
}

.results-count {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Search Again Form */
.search-again {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-again input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-again input:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.search-again button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-again button:hover {
    background: var(--primary);
}

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

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Result Card */
.result-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(119, 84, 64, 0.15);
}

.result-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: white;
    opacity: 0.5;
}

.result-content {
    padding: 25px;
}

.result-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.result-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.result-card:hover .read-more {
    gap: 12px;
    color: var(--accent);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.no-results svg {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    opacity: 0.3;
    color: var(--primary);
}

.no-results h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.suggestions {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.suggestions h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.suggestions ul {
    list-style: none;
    padding: 0;
}

.suggestions li {
    padding: 8px 0;
    color: #666;
}

.suggestions li::before {
    content: "→";
    color: var(--accent);
    font-weight: bold;
    margin-right: 10px;
}

.popular-pages {
    margin-top: 30px;
}

.popular-pages ul {
    list-style: none;
    padding: 0;
}

.popular-pages li {
    padding: 8px 0;
}

.popular-pages li::before {
    content: "🔗";
    margin-right: 10px;
}

.popular-pages a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.popular-pages a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Pagination */
.search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.search-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-pagination li {
    display: inline-block;
}

.search-pagination a,
.search-pagination span {
    display: block;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.search-pagination a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}

.search-pagination .current {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .search-hero h1 {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-pagination ul {
        flex-wrap: wrap;
    }
}


/* ============================================
   MOBILE HORIZONTAL SCROLL FIX
   ============================================ */

/* Prevent any element from causing horizontal scroll */
@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden !important;
  }

  /* Performance: disable fixed backgrounds on mobile (GPU-intensive) */
  .reality-section,
  .performance-intro-section,
  .faq-new-section,
  #contact,
  .over-ons-hero,
  .expert-section {
    background-attachment: scroll !important;
  }

  /* Performance: smaller background images on mobile */
  .hero-top-left {
    background-image: linear-gradient(rgba(119, 84, 64, 0.3), rgba(119, 84, 64, 0.3)),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=640') !important;
  }
  .hero-bottom-right {
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&q=80&w=640') !important;
  }
  .faq-new-section::before {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=640') !important;
  }
  .performance-intro-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=640') center/cover !important;
  }
  .reality-section {
    background: linear-gradient(rgba(139, 115, 85, 0.92), rgba(139, 115, 85, 0.95)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=640') center/cover !important;
  }
  #contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=640') center/cover !important;
  }

  .container,
  .section,
  section,
  .hero,
  .nav-container,
  .split-nav,
  .testimonials-section,
  .services-grid,
  .reality-section,
  .expert-section,
  .faq-new-section,
  #contact,
  footer {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  /* Fix voor absolute/fixed positioned elements */
  .nav-search-wrapper,
  .search-form,
  .mega-menu {
    max-width: calc(100vw - 40px);
  }
  
  /* Zorg dat afbeeldingen nooit uitsteken */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Grid containers moeten niet uitsteken */
  .results-grid,
  .services-grid,
  .reality-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100vw;
  }

  /* Testimonials responsive */
  .testimonials-section {
    padding: 60px 25px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-card {
    padding: 35px 30px;
  }
  .testimonials-title {
    font-size: 1.7rem;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
  .testimonial-quote-mark {
    font-size: 3.5rem;
  }
}


/* ============================================
   ROI CALCULATOR - MOBILE RESPONSIVE FIX
   ============================================ */

@media (max-width: 768px) {
  /* Calculator Hero */
  .calculator-hero {
    padding: 60px 20px 40px !important;
  }
  
  .calculator-hero h1 {
    font-size: 2rem !important;
  }
  
  .calculator-hero .hero-subtitle {
    font-size: 1rem !important;
  }
  
  /* Calculator Grid - Stack op mobile */
  .calc-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Input velden */
  .calc-input {
    width: 100% !important;
  }
  
  .calc-input input {
    font-size: 16px !important; /* Voorkomt zoom op iOS */
    width: 100% !important;
  }
  
  /* Results sectie */
  .calc-results {
    padding: 20px !important;
  }
  
  .result-breakdown {
    gap: 15px !important;
  }
  
  .result-item {
    padding: 15px !important;
  }
  
  .result-label {
    font-size: 14px !important;
  }
  
  .result-value {
    font-size: 1.5rem !important;
  }
  
  /* Total result */
  .result-total {
    padding: 20px !important;
  }
  
  .result-total-value {
    font-size: 2rem !important;
  }
  
  /* Explanation grid */
  .explanation-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .explanation-item {
    padding: 20px !important;
  }
  
  .explanation-item h4 {
    font-size: 1.1rem !important;
  }
  
  /* CTA Section */
  .calculator-cta {
    padding: 30px 20px !important;
  }
  
  .calculator-cta h3 {
    font-size: 1.5rem !important;
  }
  
  .cta-button {
    width: 100% !important;
    text-align: center !important;
    padding: 15px 30px !important;
  }
  
  /* Payback message */
  .payback-message {
    font-size: 1.1rem !important;
  }
  
  .payback-years {
    font-size: 1.3rem !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .calculator-hero h1 {
    font-size: 1.75rem !important;
  }
  
  .result-total-value {
    font-size: 1.75rem !important;
  }
  
  .calc-input label {
    font-size: 14px !important;
  }
}


/* ============================================
   CHART/DIAGRAM RESPONSIVE FIX - UNIVERSEEL
   ============================================ */

/* Fix voor ALLE charts/canvas elementen op mobile */
@media (max-width: 768px) {
  /* Canvas elementen responsive maken */
  canvas {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
  }
  
  /* Chart containers */
  .chart-container,
  .chartjs-container,
  [class*="chart"],
  [class*="Chart"] {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Specifiek voor ROI Calculator charts */
  .calculator-page canvas,
  .calc-results canvas,
  #calculator canvas {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
  }
  
  /* Chart wrapper/parent div */
  div:has(> canvas) {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  /* Voor Chart.js specifiek */
  .chartjs-size-monitor,
  .chartjs-render-monitor {
    max-width: 100% !important;
  }
  
  /* Zorg dat chart labels horizontaal blijven */
  .chartjs-render-monitor,
  canvas[role="img"] {
    transform: none !important;
    writing-mode: horizontal-tb !important;
  }
}

/* Extra fixes voor zeer kleine schermen */
@media (max-width: 480px) {
  canvas {
    min-height: 250px !important;
    max-height: 400px !important;
  }
  
  /* Kleinere font voor chart labels op kleine schermen */
  canvas {
    font-size: 10px !important;
  }
}


/* ============================================
   PERFORMANCE CHART - MOBILE RESPONSIVE
   ============================================ */

/* DESKTOP: Behoud verticale label */
@media (min-width: 769px) {
  .chart-y-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left center;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    white-space: nowrap;
  }
}

/* MOBILE ONLY: Horizontale label bovenaan */
@media (max-width: 768px) {
  .performance-section {
    padding: 60px 0 !important;
  }
  
  .performance-content {
    flex-direction: column !important;
  }
  
  .performance-left,
  .performance-right {
    width: 100% !important;
    padding: 0 !important;
  }
  
  /* Chart responsive */
  .performance-chart {
    height: 400px !important;
    padding: 40px 20px 80px 80px !important;
    gap: 15px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 2px solid #ddd !important;
  }
  
  /* Y-axis label - VERTICAAL op mobile (zoals desktop) */
  .chart-y-label {
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: rotate(-90deg) translateY(-50%) !important;
    transform-origin: left center !important;
    font-size: 0.7rem !important;
    color: #666 !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: block !important;
  }
  
  /* Chart bars */
  .chart-bar {
    max-width: 60px !important;
    min-width: 50px !important;
  }
  
  .chart-bar-label {
    font-size: 0.75rem !important;
    bottom: -50px !important;
    white-space: nowrap !important;
  }
  
  .chart-bar-percentage {
    font-size: 0.75rem !important;
    bottom: -30px !important;
  }
  
  .chart-scenario {
    left: 20px !important;
    font-size: 0.75rem !important;
  }
  
  
  /* Basis gegevens */
  .basis-gegevens {
    margin-top: 20px !important;
    padding: 20px !important;
  }
  
  .basis-gegevens h3 {
    font-size: 1.2rem !important;
  }
  
  .basis-gegevens ul {
    font-size: 0.9rem !important;
  }
  
  /* Performance metrics */
  .performance-metrics {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .perf-metric {
    padding: 20px !important;
  }
  
  .total-win {
    padding: 25px !important;
  }
  
  .total-win h3 {
    font-size: 1.5rem !important;
  }
  
  /* Timeline */
  .timeline {
    margin-top: 30px !important;
  }
  
  .milestone-badge {
    font-size: 0.7rem !important;
    padding: 6px 10px !important;
  }
  
  .milestone-number {
    font-size: 0.85rem !important;
  }
  
  .milestone-text {
    font-size: 0.65rem !important;
  }
  
  /* ROI button */
  .roi-cta-wrapper {
    padding: 30px 20px 0 !important;
  }
  .roi-cta-button {
    padding: 15px 35px !important;
    font-size: 1rem !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .performance-chart {
    height: 300px !important;
    padding: 50px 15px 70px 15px !important;
  }
  
  .chart-bar {
    max-width: 50px !important;
    min-width: 45px !important;
  }
  
  .chart-bar-label {
    font-size: 0.7rem !important;
  }
}


/* Zorg dat labels en percentages ALTIJD zichtbaar zijn */
.chart-bar-label,
.chart-bar-percentage {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure bars have enough bottom space for labels */
.performance-chart {
  padding-bottom: 80px !important;
}


/* ============================================
   CHART MOBILE LEGEND
   ============================================ */

/* Hide legend on desktop */
.chart-mobile-legend {
  display: none;
}

/* Show legend on mobile */
@media (max-width: 768px) {
  .chart-mobile-legend {
    display: block;
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  .chart-mobile-legend h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .legend-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .legend-color {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .legend-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
  
  .legend-text strong {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
  }
  
  .legend-text span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
  }
  
  /* Hide labels under bars on mobile */
  .chart-bar-label,
  .chart-bar-percentage {
    display: none !important;
  }
}


/* Fix testimonials fade gradients op mobile - 90% visible */
@media (max-width: 768px) {
  .ticker-wrapper::before,
  .ticker-wrapper::after {
    width: 20px !important;
  }
  
  .ticker-wrapper::before {
    background: linear-gradient(to right, 
      rgba(139, 115, 85, 1) 0%,
      rgba(139, 115, 85, 0.5) 50%,
      transparent 100%) !important;
  }
  
  .ticker-wrapper::after {
    background: linear-gradient(to left, 
      rgba(139, 115, 85, 1) 0%,
      rgba(139, 115, 85, 0.5) 50%,
      transparent 100%) !important;
  }
  
  .ticker-wrapper {
    padding: 40px 0 60px 0 !important;
  }
}


/* Service subtitle responsive */
@media (max-width: 768px) {
  .service-item h4 {
    font-size: 1.3rem !important;
    margin-bottom: 6px !important;
  }
  
  .service-subtitle {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .service-item h4 {
    font-size: 1.1rem !important;
  }
  
  .service-subtitle {
    font-size: 0.8rem !important;
  }
}


/* ============================================
   GUTENBERG BLOCKS - FRONTEND STYLING
   ============================================ */

/* FAQ Accordion */
.wp-block-details {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
  transition: all 0.3s;
}

.wp-block-details:hover {
  box-shadow: 0 4px 15px rgba(119, 84, 64, 0.1);
  border-color: var(--primary);
}

.wp-block-details summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary::before {
  content: '+';
  display: inline-block;
  width: 25px;
  height: 25px;
  background: var(--primary);
  color: white;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  margin-right: 15px;
  font-weight: bold;
  flex-shrink: 0;
}

.wp-block-details[open] summary::before {
  content: '−';
}

.wp-block-details[open] {
  border-color: var(--primary);
}

.wp-block-details p {
  margin-top: 15px;
  padding-left: 40px;
  color: #666;
  line-height: 1.6;
}

/* Stats Section Hover */
.wp-block-group.has-primary-background-color .wp-block-column {
  transition: transform 0.3s;
}

.wp-block-group.has-primary-background-color .wp-block-column:hover {
  transform: translateY(-10px);
}

/* Team Grid Images */
.wp-block-column .wp-block-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.wp-block-column .wp-block-image:hover img {
  transform: scale(1.05);
}

/* Timeline Connector (Desktop only) */
@media (min-width: 782px) {
  .wp-block-columns[style*="margin-top:60px"] {
    position: relative;
  }
  
  .wp-block-columns[style*="margin-top:60px"]::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, 
      var(--primary) 0%, var(--primary) 24%, 
      var(--accent) 25%, var(--accent) 49%, 
      var(--primary) 50%, var(--primary) 74%, 
      var(--accent) 75%, var(--accent) 100%);
    z-index: 0;
  }
  
  .wp-block-columns[style*="margin-top:60px"] .wp-block-column {
    position: relative;
    z-index: 1;
    background: white;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .wp-block-details summary {
    font-size: 1rem;
  }
  
  .wp-block-details p {
    padding-left: 40px;
  }
}


/* ============================================
   CUSTOM BLOCK STYLES - INLINE CSS
   ============================================ */

/* Humanova Primary Button */
.wp-block-button.is-style-humanova-primary .wp-block-button__link {
    background-color: #775440 !important;
    color: white !important;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.wp-block-button.is-style-humanova-primary .wp-block-button__link:hover {
    background-color: #E2AD85 !important;
    color: white !important;
}
}

/* Humanova Outline Button */
.wp-block-button.is-style-humanova-outline .wp-block-button__link {
    background-color: transparent !important;
    border: 2px solid #775440 !important;
    color: #775440 !important;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.wp-block-button.is-style-humanova-outline .wp-block-button__link:hover {
    background-color: #775440 !important;
    color: white !important;
    border-color: #775440 !important;
}

/* Humanova Section Style */
.wp-block-group.is-style-humanova-section {
    padding: 80px 20px;
    margin: 0;
}

/* Humanova Card Style */
.wp-block-group.is-style-humanova-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.wp-block-group.is-style-humanova-card:hover {
    box-shadow: 0 8px 25px rgba(119, 84, 64, 0.15);
    transform: translateY(-5px);
}

/* Humanova Rounded Image */
.wp-block-image.is-style-humanova-rounded img {
    border-radius: 12px;
}


/* ============================================
   IMAGE BEELD VULLEN (COVER) STYLE
   ============================================ */

/* Beeld Vullen - Image vult container volledig */
.wp-block-image.is-style-humanova-cover {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 400px !important;
    margin: 0 !important;
    display: block !important;
}

.wp-block-image.is-style-humanova-cover img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    max-width: none !important;
}

.wp-block-image.is-style-humanova-cover figcaption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    z-index: 2 !important;
}

/* Varianten voor verschillende hoogtes */
.wp-block-image.is-style-humanova-cover.height-300 {
    height: 300px !important;
}

.wp-block-image.is-style-humanova-cover.height-500 {
    height: 500px !important;
}

.wp-block-image.is-style-humanova-cover.height-600 {
    height: 600px !important;
}

/* Full Width Image Style */
.wp-block-image.is-style-humanova-full-width {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.wp-block-image.is-style-humanova-full-width img {
    width: 100%;
    height: auto;
    display: block;
}

.wp-block-image.is-style-humanova-full-width figcaption {
    text-align: center;
    padding: 10px 20px;
    background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .wp-block-image.is-style-humanova-cover {
        height: 300px;
    }
    
    .wp-block-image.is-style-humanova-cover.height-300 {
        height: 250px;
    }
    
    .wp-block-image.is-style-humanova-cover.height-500,
    .wp-block-image.is-style-humanova-cover.height-600 {
        height: 350px;
    }
}


/* ============================================
   COVER BLOCK BUTTONS FIX
   ============================================ */

/* Buttons in Cover blocks - force visibility */
.wp-block-cover .wp-block-button__link {
    color: white !important;
    text-decoration: none;
    display: inline-block;
}

/* Buttons met background in Cover */
.wp-block-cover .wp-block-button__link.has-background {
    color: white !important;
}

/* Accent color buttons in Cover */
.wp-block-cover .wp-block-button__link.has-accent-background-color {
    background-color: #E2AD85 !important;
    color: white !important;
}

.wp-block-cover .wp-block-button__link.has-accent-background-color:hover {
    background-color: #775440 !important;
}

/* Primary color buttons in Cover */
.wp-block-cover .wp-block-button__link.has-primary-background-color {
    background-color: #775440 !important;
    color: white !important;
}

.wp-block-cover .wp-block-button__link.has-primary-background-color:hover {
    background-color: #E2AD85 !important;
}

/* Dark buttons in Cover */
.wp-block-cover .wp-block-button__link.has-dark-background-color {
    background-color: #21212b !important;
    color: white !important;
}

/* Zorg dat button text altijd zichtbaar is */
.wp-block-button__link:not(.has-text-color) {
    color: white !important;
}


/* ============================================
   FRONTEND DEBUG - IMAGE & BUTTON FIXES v5.5.1
   ============================================ */

/* Extra specifieke selectors voor Beeld Vullen op frontend */
body .wp-block-image.is-style-humanova-cover,
.entry-content .wp-block-image.is-style-humanova-cover,
article .wp-block-image.is-style-humanova-cover {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 400px !important;
    margin: 20px 0 !important;
}

body .wp-block-image.is-style-humanova-cover img,
.entry-content .wp-block-image.is-style-humanova-cover img,
article .wp-block-image.is-style-humanova-cover img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Extra button text visibility fixes */
body .wp-block-button__link,
.entry-content .wp-block-button__link,
article .wp-block-button__link {
    color: white !important;
    text-decoration: none !important;
}

/* Cover block buttons - absolute force */
body .wp-block-cover .wp-block-button__link,
.entry-content .wp-block-cover .wp-block-button__link,
article .wp-block-cover .wp-block-button__link {
    color: white !important;
    background-color: #775440 !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    display: inline-block !important;
    text-decoration: none !important;
}

/* Accent buttons in cover */
body .wp-block-cover .has-accent-background-color,
.entry-content .wp-block-cover .has-accent-background-color {
    background-color: #E2AD85 !important;
    color: white !important;
}


/* ============================================
   BEELD VULLEN - VOLLEDIGE BREEDTE FIX
   ============================================ */

/* Maak Beeld Vullen images echt full-width */
.wp-block-image.is-style-humanova-cover {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative !important;
}

/* Voor images in .entry-content container */
.entry-content .wp-block-image.is-style-humanova-cover,
article .wp-block-image.is-style-humanova-cover,
.post-content .wp-block-image.is-style-humanova-cover {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Zorg dat parent containers niet limiteren */
.entry-content,
article,
.post-content {
    overflow-x: visible !important;
}

/* Image binnen Beeld Vullen blijft position absolute */
.wp-block-image.is-style-humanova-cover figure,
.wp-block-image.is-style-humanova-cover > img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


/* ============================================
   BEELD VULLEN (VOLLEDIG) - GUARANTEED FULL WIDTH
   ============================================ */

/* Nieuwe style voor gegarandeerde volledige breedte */
.wp-block-image.is-style-humanova-cover-full {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 400px !important;
    left: 0 !important;
    right: 0 !important;
}

.wp-block-image.is-style-humanova-cover-full img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
}

.wp-block-image.is-style-humanova-cover-full figcaption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    z-index: 2 !important;
}

/* Height variants voor cover-full */
.wp-block-image.is-style-humanova-cover-full.height-300 {
    height: 300px !important;
}

.wp-block-image.is-style-humanova-cover-full.height-500 {
    height: 500px !important;
}

.wp-block-image.is-style-humanova-cover-full.height-600 {
    height: 600px !important;
}

/* Voor in containers */
.entry-content .wp-block-image.is-style-humanova-cover-full,
article .wp-block-image.is-style-humanova-cover-full,
.post-content .wp-block-image.is-style-humanova-cover-full,
main .wp-block-image.is-style-humanova-cover-full {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Responsive voor cover-full */
@media (max-width: 768px) {
    .wp-block-image.is-style-humanova-cover-full {
        height: 300px !important;
    }
    
    .wp-block-image.is-style-humanova-cover-full.height-300 {
        height: 250px !important;
    }
    
    .wp-block-image.is-style-humanova-cover-full.height-500,
    .wp-block-image.is-style-humanova-cover-full.height-600 {
        height: 350px !important;
    }
}


/* Section Subtitle Styling */
.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    display: block;
}

/* Hide subtitle if empty */
.section-subtitle:empty {
    display: none;
    margin: 0;
}

.testimonials-section .section-subtitle {
    margin-bottom: 50px;
}

/* Services section specific */
.section#diensten .section-subtitle {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
}

/* Mobile Contact Section Spacing */
@media (max-width: 768px) {
    #contact {
        margin-top: 80px;
    }
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    pointer-events: none;
}

.mobile-menu-backdrop.active {
    pointer-events: auto;
}

.mobile-menu-backdrop.active {
    display: block;
}

/* Ensure mobile menu is above backdrop */
@media (max-width: 1024px) {
    .split-nav {
        z-index: 1001 !important;
    }
}

/* Expert Section Mobile Responsive */
@media (max-width: 768px) {
    .expert-section {
        padding: 80px 20px;
        overflow-x: hidden;
    }
    
    .expert-content {
        max-width: 100%;
        padding: 0;
    }
    
    .expert-section h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 40px;
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .expert-section h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .expert-section p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .expert-section p.extra-space {
        margin-top: 30px;
    }
}

/* ROI Calculator Disclaimer Text */
.calculator-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .calculator-disclaimer {
        font-size: 0.8rem;
        margin-top: 10px;
        padding: 0 20px;
    }
}

/* Performance Intro Section */
.performance-intro-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=1920') center/cover;
    background-attachment: fixed;
    padding: 120px 60px;
    color: white;
}

.performance-intro-section h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.performance-intro-content {
    max-width: 1100px;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.8;
}

.performance-intro-content p {
    margin-bottom: 30px;
    color: white;
    font-weight: 300;
}

.performance-intro-content p strong {
    font-weight: 700;
    color: #E8C4A0;
}

.performance-intro-content p em {
    font-style: italic;
    color: #E8C4A0;
}

.performance-intro-content p:last-child {
    margin-bottom: 0;
}

.performance-intro-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-performance-intro {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

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

.btn-primary-perf:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary-perf {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-perf:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .performance-intro-section {
        padding: 80px 20px;
    }
    
    .performance-intro-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        line-height: 1.2;
        letter-spacing: 1px;
        text-align: left;
    }
    
    .performance-intro-content {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .performance-intro-content p {
        margin-bottom: 25px;
    }

    .performance-intro-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 35px;
    }

    .btn-performance-intro {
        text-align: center;
        padding: 14px 30px;
    }
}

/* ============================================
   INSIGHTS / BLOG PAGES
   ============================================ */

/* --- Insights Hero (Overzicht) --- */
.insights-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    overflow: hidden;
}

.insights-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(226,173,133,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(119,84,64,0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

.insights-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.insights-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
    width: 100%;
}

.insights-hero-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.insights-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.insights-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Featured Post --- */
.insights-featured {
    padding: 80px 0 0;
    background: white;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.featured-post-card:hover {
    box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}

.featured-post-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.featured-post-content {
    padding: 50px 50px 50px 0;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.insight-category {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-date,
.insight-read-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #888;
}

.insight-date svg,
.insight-read-time svg {
    stroke: #aaa;
}

.featured-post-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.featured-post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.featured-post-title a:hover {
    color: var(--primary);
}

.featured-post-excerpt {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.insight-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.insight-read-more:hover {
    color: var(--accent);
}

.insight-read-more svg {
    transition: transform 0.3s;
    stroke: currentColor;
}

.insight-read-more:hover svg {
    transform: translateX(4px);
}

/* --- Filter Tabs --- */
.insights-filter {
    padding: 40px 0 0;
    background: white;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

/* --- Insights Grid --- */
.insights-grid-section {
    padding: 60px 0 100px;
    background: white;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.insight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.insight-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.08);
}

.insight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-card:hover .insight-card-overlay {
    opacity: 1;
}

.insight-card-view {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.insight-no-image {
    background: linear-gradient(135deg, var(--light-gray), #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

.insight-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insight-card-meta .insight-date {
    font-size: 0.8rem;
}

.insight-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.insight-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.insight-card-title a:hover {
    color: var(--primary);
}

.insight-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.insight-card-content .insight-read-more {
    font-size: 0.9rem;
}

/* --- Insights Pagination --- */
.insights-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.insights-pagination .page-numbers {
    padding: 12px 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 4px;
}

.insights-pagination .page-numbers:hover,
.insights-pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* --- Empty State --- */
.insights-empty {
    text-align: center;
    padding: 100px 40px;
}

.insights-empty-icon {
    color: #ccc;
    margin-bottom: 25px;
}

.insights-empty h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.insights-empty p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 30px;
}

/* --- Insights CTA Section --- */
.insights-cta-section {
    background: linear-gradient(135deg, #775440 0%, #5d4837 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,168,130,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.insights-cta-content {
    position: relative;
    z-index: 2;
}

.insights-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.insights-cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}


/* ============================================
   INSIGHT DETAIL PAGE (Single Post)
   ============================================ */

/* --- Insight Detail Hero --- */
.insight-detail-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.insight-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.insight-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.insight-hero-no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    z-index: 0;
}

.insight-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0 60px;
}

.insight-hero-text {
    max-width: 800px;
    color: white;
}

.insight-hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 15px;
}

.insight-hero-date,
.insight-hero-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.insight-hero-date svg,
.insight-hero-read svg {
    stroke: rgba(255,255,255,0.7);
}

.insight-hero-meta .insight-category {
    background: var(--accent);
    color: var(--dark);
}

.insight-detail-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

/* --- Content Layout (2 kolommen) --- */
.insight-content-section {
    padding: 80px 0 100px;
    background: #fafafa;
}

.insight-content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: flex-start;
}

/* Main Content */
.insight-main-content {
    background: white;
    padding: 55px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.insight-main-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 40px 0 18px;
    font-weight: 700;
    line-height: 1.3;
}

.insight-main-content h2:first-child {
    margin-top: 0;
}

.insight-main-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 30px 0 12px;
    font-weight: 600;
}

.insight-main-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.insight-main-content ul,
.insight-main-content ol {
    margin: 15px 0 25px 20px;
    color: #555;
}

.insight-main-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.insight-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.insight-main-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.insight-main-content blockquote p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Tags */
.insight-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.insight-tag {
    padding: 5px 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.insight-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Share */
.insight-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.share-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.share-link:hover {
    background: var(--primary);
    color: white;
}

.share-link:hover svg {
    fill: white;
    stroke: white;
}

.share-link.linkedin:hover {
    background: #0077b5;
}

/* --- Sidebar --- */
.insight-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.sidebar-author {
    text-align: center;
}

.sidebar-author-avatar {
    margin-bottom: 15px;
}

.sidebar-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-author h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.sidebar-author p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-related-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-related-item:hover {
    transform: translateX(4px);
}

.sidebar-related-thumb {
    width: 70px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-related-info h5 {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
    font-weight: 600;
}

.sidebar-related-info span {
    font-size: 0.8rem;
    color: #999;
}

/* --- Insight Navigation --- */
.insight-navigation-section {
    padding: 80px 0;
    background: white;
}


/* ============================================
   INSIGHTS RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        min-height: 300px;
    }

    .featured-post-content {
        padding: 35px;
    }

    .insight-content-layout {
        grid-template-columns: 1fr;
    }

    .insight-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .insights-hero-title {
        font-size: 2.5rem;
    }

    .insights-hero-subtitle {
        font-size: 1rem;
    }

    .insights-hero-content {
        padding: 100px 0 50px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .insights-featured {
        padding: 40px 0 0;
    }

    .featured-post-image {
        min-height: 220px;
    }

    .featured-post-content {
        padding: 25px;
    }

    .featured-post-title {
        font-size: 1.5rem;
    }

    .insights-grid-section {
        padding: 40px 0 60px;
    }

    .insight-detail-hero {
        min-height: 45vh;
    }

    .insight-detail-title {
        font-size: 2rem;
    }

    .insight-hero-content {
        padding: 80px 0 40px;
    }

    .insight-content-section {
        padding: 40px 0 60px;
    }

    .insight-main-content {
        padding: 30px 20px;
    }

    .insight-sidebar {
        grid-template-columns: 1fr;
    }

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

    .insights-cta-section {
        padding: 60px 0;
    }

    .insight-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .insight-navigation-section {
        padding: 40px 0;
    }
}
