/* Additional styles for internationaleverhuizing.nl */

/* Body scroll lock when mobile nav is open (JS uses class instead of inline style) */
body.nav-open {
  overflow: hidden;
}

/* Custom color overrides */
:root {
  --color-blue: #1B2A4A;
}

/* View Transitions for smooth page navigation (2026) */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: fade-out 0.15s ease-out;
}

::view-transition-new(root) {
  animation: fade-in 0.2s ease-in;
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========================================
   HEADER NAVIGATION FIXES
   ======================================== */

/* Base header styles */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.header__nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-links > li {
  position: relative;
}

.header__nav-links > li > a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.header__nav-links > li > a:hover,
.header__nav-links > li > a.active {
  color: #E8722A;
}

/* Ensure header nav is visible on desktop */
@media (min-width: 1025px) {
  .header__nav-links {
    display: flex !important;
  }
  .header__cta {
    display: flex !important;
  }
  .nav-toggle {
    display: none !important;
  }
}

/* Mobile navigation - hide nav links, show hamburger */
@media (max-width: 1024px) {
  .header__nav-links {
    display: none !important;
  }
  
  .nav-toggle {
    display: flex !important;
  }
  
  .header__inner {
    justify-content: space-between;
  }
  
  /* Mobile nav overlay */
  .mobile-nav {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F1D35 100%);
  }
  
  .mobile-nav__links a {
    color: white;
    font-size: 1.25rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
  }
  
  .mobile-nav__links a.active {
    color: #E8722A;
  }
}

/* Tablet - show phone/WhatsApp but hide nav links */
@media (min-width: 769px) and (max-width: 1024px) {
  .header__cta {
    display: flex !important;
    gap: 12px;
  }
  
  .header__phone {
    display: inline-flex !important;
  }
}

/* Small mobile - hide everything except logo and hamburger */
@media (max-width: 480px) {
  .header__cta {
    display: none !important;
  }
}

/* Hamburger menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Stats section */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item {
  padding: 24px;
}

.stats__number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}

.stats__label {
  display: block;
  margin-top: 8px;
  color: #6B7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__number {
    font-size: 36px;
  }
}

/* Destinations */
.destinations__title {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: white;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.destination-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.destination-card__flag {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.destination-card h4 {
  color: white;
  margin: 0 0 4px;
  font-size: 16px;
}

.destination-card p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Feature Cards (used in index.html) */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid #E5E7EB;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #FEF3E7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #1B2A4A;
}

.feature-card p {
  margin: 0;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

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

/* Step Cards (used in index.html) */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1B2A4A;
}

.step-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  
  .step-card__number {
    margin: 0;
    flex-shrink: 0;
  }
}

/* Pricing cards */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.pricing-card--featured {
  border: 2px solid var(--color-blue);
  transform: scale(1.05);
}

.pricing-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: #E8722A;
}

.pricing-card__icon svg {
  width: 100%;
  height: 100%;
}

.pricing-card__price {
  font-size: 18px;
  margin: 16px 0;
}

.pricing-card__price span {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-blue);
  display: block;
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--featured {
    transform: none;
  }
}

/* Reviews */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card__stars svg {
  width: 20px;
  height: 20px;
  color: #F59E0B;
}

.review-card__text {
  font-style: italic;
  margin-bottom: 24px;
  color: #374151;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.review-card__author strong {
  display: block;
  color: #111827;
}

.review-card__author span {
  font-size: 13px;
  color: #6B7280;
}

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

/* Case study */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #F9FAFB;
  border-radius: 24px;
  overflow: hidden;
}

.case-study__content {
  padding: 48px;
}

.case-study__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.case-study__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.case-study__stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-blue);
}

.case-study__stat-label {
  font-size: 14px;
  color: #6B7280;
}

@media (max-width: 768px) {
  .case-study {
    grid-template-columns: 1fr;
  }
  .case-study__content {
    padding: 24px;
  }
  .case-study__image img {
    min-height: 250px;
  }
}

/* FAQ */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq-nav a {
  display: inline-block;
  padding: 8px 16px;
  background: #F3F4F6;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-nav a:hover {
  background: var(--color-blue, #1B2A4A);
  color: white;
}

.faq__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 20px;
  padding-top: 16px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto 48px;
}

.faq__answer ul,
.faq__answer ol {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.faq__answer li {
  margin-bottom: 4px;
  line-height: 1.6;
}

.faq__answer p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq__item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.faq__item summary {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--color-blue);
}

.faq__item[open] summary::after {
  content: '-';
}

.faq__answer {
  padding: 0 24px 24px;
  color: #4B5563;
  max-height: none;
  overflow: visible;
}

/* Services overview page (diensten.html) - large alternating cards layout */
.services__grid:not(.services__grid--cards) {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Homepage services grid - 3 columns, 2 rows */
.services__grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card--large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  width: 100%;
}

.service-card--large .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.service-card--large .service-card__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card--large:nth-child(even) .service-card__image {
  order: 2;
}

/* Tablet and mobile adjustments */
@media (max-width: 1024px) {
  .services__grid:not(.services__grid--cards) {
    gap: 24px;
  }
  .services__grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card--large {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-card--large .service-card__content {
    padding: 24px;
  }
  
  .service-card--large .service-card__image img {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .services__grid:not(.services__grid--cards) {
    gap: 20px;
  }
  .services__grid--cards {
    grid-template-columns: 1fr;
  }
  
  .service-card--large {
    grid-template-columns: 1fr;
  }
  
  .service-card--large:nth-child(even) .service-card__image {
    order: 0;
  }
  
  .service-card--large .service-card__image img {
    min-height: 200px;
  }
  
  .service-card--large .service-card__content {
    padding: 20px;
  }
}

/* CTA Banner Section */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1D35 100%);
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #E8722A;
  border-radius: 0 0 4px 4px;
}

.cta-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(232,114,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #E8722A;
}

.cta-banner__icon svg {
  width: 28px;
  height: 28px;
}

.cta-banner h2 {
  color: white;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin: 0 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-group {
  justify-content: center;
  gap: 16px;
}

.cta-banner .btn--white {
  background: white;
  color: #1B2A4A;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 2px solid white;
}

.cta-banner .btn--white:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.cta-banner .btn--white svg {
  width: 20px;
  height: 20px;
}

.cta-banner .btn--whatsapp {
  background: #1A7F37;
  color: white;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 2px solid #1A7F37;
}

.cta-banner .btn--whatsapp:hover {
  background: #16692D;
  border-color: #16692D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.cta-banner .btn--whatsapp svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .cta-banner .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner .btn-group .btn--white,
  .cta-banner .btn-group .btn--whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Service page inline CTA card */
.service-cta {
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1D35 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #E8722A;
  border-radius: 0 0 4px 4px;
}

.service-cta h3,
.service-detail .service-cta h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.service-cta p,
.service-detail .service-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.service-cta .btn-group {
  justify-content: center;
  gap: 16px;
}

.service-cta .btn--primary {
  background: #E8722A;
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 2px solid #E8722A;
}

.service-cta .btn--primary:hover {
  background: #e88a0e;
  border-color: #e88a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,114,42,0.35);
}

.service-cta .btn--whatsapp {
  background: #1A7F37;
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 2px solid #1A7F37;
}

.service-cta .btn--whatsapp:hover {
  background: #16692D;
  border-color: #16692D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.service-cta .btn--primary svg,
.service-cta .btn--whatsapp svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .service-cta {
    padding: 36px 24px;
  }
  .service-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .service-cta .btn-group .btn--primary,
  .service-cta .btn-group .btn--whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========================================
   CONTRAST FIXES FOR DARK SECTIONS
   Ensure 4.5:1+ contrast ratio on dark backgrounds
   ======================================== */

/* Badge base styles (missing from design system) */
.badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(232, 114, 42, 0.1);
  color: #C45D1A;
  font-family: var(--font-heading);
}

/* Light badge variant for dark backgrounds */
.badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Section subtitle base styles */
.section-subtitle {
  margin-top: 16px;
  color: #4B5563;
  font-size: 1.0625rem;
}

/* Light subtitle variant for dark backgrounds - override gray text */
.section-subtitle--light {
  color: #FFFFFF;
}

/* Ensure all text in dark section headers has sufficient contrast */
.section--dark .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.section--dark .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Ensure button text on colored backgrounds is pure white for contrast */
.btn--accent,
.btn--accent:hover {
  color: #FFFFFF;
}

.btn--whatsapp,
.cta-banner .btn--whatsapp,
.service-cta .btn--whatsapp,
.section--dark .btn--whatsapp {
  color: #FFFFFF;
}

/* Legacy dark section buttons (fallback) */
.section--dark .btn-group {
  justify-content: center;
  gap: 16px;
}

.section--dark .btn--white {
  background: white;
  color: #1B2A4A;
  font-weight: 600;
  padding: 14px 32px;
}

.section--dark .btn--whatsapp {
  background: #1A7F37;
  color: #FFFFFF;
  font-weight: 600;
  padding: 14px 32px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.contact-info__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.contact-info h2 {
  margin-bottom: 8px;
}

.contact-info > p {
  color: #6B7280;
  margin-bottom: 0;
}

.contact-methods {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #F9FAFB;
  border-radius: 12px;
  padding: 20px 12px;
  border: 1px solid #E5E7EB;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
  border-color: #E8722A;
  box-shadow: 0 4px 12px rgba(232,114,42,0.1);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  background: #FEF3E7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  flex-shrink: 0;
  margin-bottom: 12px;
}

.contact-method__icon svg {
  width: 24px;
  height: 24px;
}

.contact-method__content h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.contact-method__content a {
  font-size: 14px;
  color: #1B2A4A;
  font-weight: 500;
}

.contact-method__content p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6B7280;
}

.contact-info > .btn {
  margin-top: 20px;
}

.contact-form-wrapper {
  background: #F9FAFB;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}

.contact-form-wrapper h2 {
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: #6B7280;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 15px;
  background: white;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E8722A;
  box-shadow: 0 0 0 3px rgba(232,114,42,0.1);
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-group--checkbox input {
  width: auto;
  margin-top: 3px;
}

.form-group--checkbox label {
  margin: 0;
  font-weight: normal;
}

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

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

/* Stats section - fix class name mismatch */
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats__number {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #E8722A;
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* About page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro__text h2 {
  font-size: 2rem;
  color: #1B2A4A;
  margin: 0 0 16px;
  font-weight: 800;
}

.about-intro__text p {
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-intro__image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About values grid */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #E5E7EB;
}

.about-value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #FEF3E7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8722A;
}

.about-value-card__icon svg {
  width: 28px;
  height: 28px;
}

.about-value-card h3 {
  font-size: 1.125rem;
  color: #1B2A4A;
  margin: 0 0 8px;
  font-weight: 700;
}

.about-value-card p {
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* About mission section */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-mission__image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About visual break */
.about-visual-break img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

/* About CTA */
.about-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 2rem;
  color: #1B2A4A;
  margin: 0 0 12px;
  font-weight: 800;
}

.about-cta p {
  color: #4B5563;
  line-height: 1.7;
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .about-intro,
  .about-mission {
    grid-template-columns: 1fr;
  }
  .about-values__grid {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 16px;
  color: #374151;
}

/* Legacy footer styles (fallback for pages not yet migrated to premium footer) */
.footer__contact {
  margin-top: 24px;
}

.footer__phone,
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer__phone:hover,
.footer__whatsapp:hover {
  color: #E8722A;
}

.footer__phone svg,
.footer__whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Utilities */
.u-mt-12px { margin-top: 12px; }
.u-mt-24px { margin-top: 24px; }
.u-mt-32px { margin-top: 32px; }
.u-mt-48px { margin-top: 48px; }
.u-mt-64px { margin-top: 64px; }
.u-mb-24px { margin-bottom: 24px; }
.u-mb-32px { margin-bottom: 32px; }
.u-inline-block { display: inline-block; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B2A4A;
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__inner a {
  color: #E8722A;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
}
.justify-center { justify-content: center; }

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-blue, #1B2A4A);
  color: white;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-blue, #1B2A4A);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-blue, #1B2A4A);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(27, 42, 74, 0.2);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--color-blue, #1B2A4A);
  outline-offset: 0;
  border-color: var(--color-blue, #1B2A4A);
}

/* Selection color */
::selection {
  background: #E8722A;
  color: #FFFFFF;
}

/* Service detail page consistent styling */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail h2 {
  font-size: 1.75rem;
  color: #1B2A4A;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}

.service-detail h2:first-child {
  margin-top: 0;
}

.service-detail h3 {
  font-size: 1.25rem;
  color: #1B2A4A;
  margin: 1.5rem 0 0.75rem;
}

.service-detail p {
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-detail > ul {
  padding-left: 0;
  list-style: none;
}

.service-detail > ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4B5563;
  line-height: 1.6;
}

.service-detail > ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: #E8722A;
  border-radius: 50%;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pricing-table th {
  background: #1B2A4A;
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB;
}

.pricing-table tr:nth-child(even) td {
  background: #F9FAFB;
}

/* Diensten page 4-column steps grid */
.service-detail .steps__grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .service-detail .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Other diensten links */
.other-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}

.other-services a {
  display: block;
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #1B2A4A;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
  border: 1px solid #E5E7EB;
}

.other-services a:hover {
  border-color: #E8722A;
  color: #E8722A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,114,42,0.15);
}

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

/* ========================================
   PREMIUM FOOTER
   ======================================== */

/* Pre-footer CTA band */
.footer-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,53,0.92) 0%, rgba(27,42,74,0.88) 50%, rgba(15,29,53,0.95) 100%);
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.footer-cta__content {
  max-width: 600px;
}

.footer-cta__content h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-cta__content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-cta .btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--accent {
  background: #E8722A;
  color: #FFFFFF;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 2px solid #E8722A;
  text-decoration: none;
}

.btn--accent:hover {
  background: #d4631f;
  border-color: #d4631f;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,114,42,0.4);
}

.btn--whatsapp-outline {
  background: transparent;
  color: #FFFFFF;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
}

.btn--whatsapp-outline:hover {
  background: #1A7F37;
  border-color: #1A7F37;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.footer-cta__stats {
  display: flex;
  gap: 32px;
}

.footer-cta__stat {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  min-width: 110px;
}

.footer-cta__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #E8722A;
  line-height: 1;
  margin-bottom: 6px;
}

.footer-cta__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 56px 0;
  }
  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta__content h2 {
    font-size: 1.625rem;
  }
  .footer-cta .btn-group {
    justify-content: center;
  }
  .footer-cta__stats {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .footer-cta .btn-group a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .footer-cta__stats {
    flex-direction: row;
    gap: 12px;
  }
  .footer-cta__stat {
    padding: 16px 12px;
    min-width: 0;
    flex: 1;
  }
  .footer-cta__stat-number {
    font-size: 1.5rem;
  }
}

/* Main premium footer */
.footer--premium {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #0F1D35 30%, #111D33 100%);
  overflow: hidden;
  padding: 0;
}

.footer__accent-line {
  height: 3px;
  background: linear-gradient(90deg, #E8722A 0%, #F5A623 50%, #E8722A 100%);
}

.footer__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
  filter: grayscale(100%);
}

.footer--premium .container {
  position: relative;
  z-index: 1;
}

.footer--premium .footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer--premium .footer__col--brand {
  padding-right: 24px;
}

/* Footer logo */
.footer--premium .footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer--premium .footer__logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
}

.footer--premium .footer__logo span span {
  color: #E8722A;
  font-size: inherit;
}

.footer--premium .footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* Trust badge */
.footer__trust {
  margin-bottom: 28px;
}

.footer__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 16px;
}

.footer__trust-stars {
  display: flex;
  gap: 2px;
}

.footer__trust-stars svg {
  width: 16px;
  height: 16px;
  color: #F5A623;
}

.footer__trust-score {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Footer contact links */
.footer--premium .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-left: -14px;
}

.footer__contact-link:hover {
  background: rgba(255,255,255,0.04);
}

.footer__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,114,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.footer__contact-icon svg {
  width: 18px;
  height: 18px;
  color: #E8722A;
}

.footer__contact-icon--whatsapp {
  background: rgba(37,211,102,0.12);
}

.footer__contact-icon--whatsapp svg {
  color: #25D366;
}

.footer__contact-link:hover .footer__contact-icon {
  background: rgba(232,114,42,0.2);
  transform: scale(1.05);
}

.footer__contact-link:hover .footer__contact-icon--whatsapp {
  background: rgba(37,211,102,0.2);
}

.footer__contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer__contact-value {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Footer column headings */
.footer--premium h3 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer--premium h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #E8722A;
  border-radius: 2px;
}

/* Footer links */
.footer--premium .footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer--premium .footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 2px 0;
}

.footer--premium .footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #E8722A;
  transition: width 0.25s ease;
  margin-right: 0;
}

.footer--premium .footer__links a:hover {
  color: #E8722A;
  gap: 8px;
}

.footer--premium .footer__links a:hover::before {
  width: 12px;
}

/* Footer address */
.footer--premium .footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer__address-item svg {
  width: 18px;
  height: 18px;
  color: #E8722A;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer bottom */
.footer--premium .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.footer--premium .footer__bottom strong {
  color: rgba(255,255,255,0.6);
}

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

.footer--premium .footer__bottom-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.8125rem;
}

.footer--premium .footer__bottom-links a:hover {
  color: #E8722A;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer--premium .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer--premium .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer--premium .footer__contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer__contact-link {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer--premium .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }
  .footer--premium .footer__contact {
    flex-direction: column;
  }
  .footer__contact-link {
    min-width: 0;
  }
  .footer--premium .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Breadcrumb navigation */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.875rem;
  color: #6B7280;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__link {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__link:hover {
  color: #E8722A;
}

.breadcrumb__separator {
  color: #D1D5DB;
  font-size: 0.75rem;
}

.breadcrumb__current {
  color: #1B2A4A;
  font-weight: 500;
}

/* Testimonial section on service pages */
.service-testimonial {
  max-width: 800px;
  margin: 32px 0;
}

.service-testimonial .review-card {
  border-left: 4px solid #E8722A;
}
