@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ========================================
   EAZYLIFT.NL - Static Site CSS
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark: #142993;
  --blue: #008fc3;
  --orange: #ef951a;
  --orange-dark: #bf7715;
  --green: #61a229;
  --green-dark: #4e8221;
  --dark: #333;
  --gray: #666;
  --light-gray: #f7f7f7;
  --border-gray: #ddd;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.13);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; touch-action: manipulation; -ms-touch-action: manipulation; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--blue-dark); font-family: 'Lexend', sans-serif; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw + 0.5rem, 1.8rem); }
h3 { font-size: clamp(1.15rem, 2vw + 0.5rem, 1.3rem); }
p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
}
.header-top {
  background: var(--blue-dark);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.85rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-top a { color: var(--white); }
.header-top a:hover { color: var(--orange); }
.header-top-reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.review-stars { color: #FBBC05; font-size: 0.95rem; letter-spacing: 1px; }
.review-count { color: var(--dark); }

.header-main {
  padding: 12px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; }

/* Navigation */
.nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 5px; }
.nav-list a {
  display: block;
  padding: 10px 16px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--blue);
  background: rgba(0,143,195,0.08);
}

/* Header CTA buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-cta .phone-link svg { flex-shrink: 0; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  animation: wa-pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); animation: none; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Language toggle */
.lang-toggle {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--border-gray);
  margin-right: 6px;
}
.lang-btn {
  background: transparent;
  color: var(--dark);
  border: none;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.lang-btn:hover { background: var(--light-gray); }
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: none;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,149,26,0.35);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,143,195,0.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 50%, #f8f9fc 100%);
  padding: 20px 0;
  border-top: 1px solid rgba(20,41,147,0.06);
  border-bottom: 1px solid rgba(20,41,147,0.06);
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px;
  position: relative;
  flex: 1 1 0;
  justify-content: center;
}
/* Subtle separator lines between items */
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-gray) 20%, var(--border-gray) 80%, transparent);
}
.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 149, 26, 0.12) 0%, rgba(239, 149, 26, 0.04) 100%);
  border-radius: 10px;
}
.trust-text {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.35;
  white-space: nowrap;
}
.trust-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--blue-dark);
  font-weight: 700;
}

/* --- Stats Strip --- */
.stats-strip {
  padding: 45px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  position: relative;
  padding: 0 16px;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-gray);
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .stat-suffix {
  font-size: 0.55em;
  color: var(--orange);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* Count-up animation trigger */
.count-up { transition: none; }

/* --- Hero Section --- */
.hero {
  background: url('/images/hero-twee-liften.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 60px 0 65px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 41, 147, 0.88) 0%, rgba(0, 143, 195, 0.75) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(239,149,26,0.08) 0%, transparent 40%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-content { flex: 1; }
.hero-image { flex: 0 0 420px; }
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.15);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.8rem);
  margin-bottom: 14px;
  line-height: 1.15;
}
.hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 25px;
}
.hero .tagline {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 12px rgba(239,149,26,0.3);
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.hero-features li svg { color: var(--orange); flex-shrink: 0; }
.hero-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(239,149,26,0.2);
  color: var(--orange);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(239,149,26,0.4);
}

/* --- Section --- */
.section { padding: 70px 0; }
.section-gray { background: var(--light-gray); }
.section:nth-child(even):not(.section-gray):not(.section-blue):not(.cta-banner) {
  background: #f9fafb;
}
.section-blue { background: var(--blue-dark); color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-title {
  text-align: center;
  margin-bottom: 15px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 45px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Service Cards --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(20,41,147,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border-color: var(--orange);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(0,143,195,0.12) 0%, rgba(0,143,195,0.04) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.service-card:hover .service-card-icon {
  transform: scale(1.05);
}
.service-card-icon svg { color: var(--blue); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 15px; }
.service-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.service-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray); }

/* --- Content Block (text + image alternating) --- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse .content-block-text { order: 2; }
.content-block.reverse .content-block-image { order: 1; }
.content-block-image img {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.content-block-image img:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.content-block-text h2 { margin-bottom: 15px; }
.content-block-text ul {
  list-style: none;
  padding: 0;
}
.content-block-text ul li {
  padding: 6px 0 6px 28px;
  position: relative;
}
.content-block-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Ordered List Steps (Hoe werkt het) --- */
.content-block-text ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}
.content-block-text ol li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 22px 20px 64px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 12px;
  border-left: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.content-block-text ol li:last-child { margin-bottom: 0; }
.content-block-text ol li:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateX(4px);
}
.content-block-text ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Reviews --- */
.reviews-header {
  text-align: center;
  margin-bottom: 35px;
}
.reviews-rating {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
}
.reviews-stars { color: var(--orange); font-size: 1.3rem; margin: 5px 0; }
.reviews-count { color: var(--gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.review-card .stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 12px;
  flex: 1;
  position: relative;
  padding-top: 18px;
}
.review-card p::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.review-card .reviewer {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.95rem;
  margin-top: auto;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 50px 18px 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light-gray); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-item.open .faq-question { background: var(--light-gray); }
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* --- Contact Form --- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: #f8fafc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 143, 195, 0.1);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* --- Calculator --- */
.calculator-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.calc-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.calc-progress-step {
  flex: 1;
  height: 8px;
  background: var(--border-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: background var(--transition);
}
.calc-progress-step.active {
  background: var(--orange);
  box-shadow: 0 1px 4px rgba(239, 149, 26, 0.3);
}
.calc-total {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin: 25px 0;
  border: 1px solid var(--border-gray);
}
.calc-total .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
}
.calc-total .label {
  color: var(--gray);
  font-size: 0.95rem;
}
.calc-step { display: none; }
.calc-step.active { display: block; }

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-option {
  flex: 1;
  min-width: 120px;
}
.radio-option input { display: none; }
.radio-option label {
  display: block;
  padding: 12px 16px;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition);
}
.radio-option label:hover {
  border-color: var(--blue);
  background: rgba(0,143,195,0.04);
}
.radio-option input:checked + label {
  border-color: var(--blue);
  background: rgba(0,143,195,0.08);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 143, 195, 0.1);
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 0.95rem;
}
.checkbox-group label:hover {
  color: var(--blue);
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  border-radius: 16px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

/* --- Contact Page Grid --- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}

/* --- CTA Banner --- */
.cta-banner {
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.1) 0%, transparent 40%),
    linear-gradient(135deg, var(--orange) 0%, #e8850f 50%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; font-size: 2.2rem; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.95; }
.cta-banner .btn {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.cta-banner .btn:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 35px;
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gray);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg { color: var(--blue); flex-shrink: 0; }
.contact-info-item a { color: var(--dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue); }

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0f1f6e 100%);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-heading {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.footer-brand p { margin-bottom: 15px; font-size: 0.9rem; line-height: 1.7; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background var(--transition);
}
.footer-review-badge:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-review-badge .review-stars { color: #FBBC05; font-size: 1rem; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: #333;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 18px;
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.footer-google-badge:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.2); color: #333; }
.footer-google-badge svg { flex-shrink: 0; }
.footer-google-badge .stars { color: #f5b400; letter-spacing: 1px; }
.footer-google-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  color: #333;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  vertical-align: middle;
  transition: box-shadow var(--transition);
}
.footer-google-badge-inline:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.2); color: #333; }
.footer-google-badge-inline .stars { color: #f5b400; letter-spacing: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--orange); }

/* --- Specs Grid --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.spec-item {
  padding: 32px 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}
.spec-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.section-blue .spec-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); }
.section-blue .spec-item:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.spec-item .spec-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.spec-item .spec-label {
  font-size: 0.82rem;
  opacity: 0.7;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 30px 0 10px; }
.legal-content h3 { font-size: 1.15rem; margin: 20px 0 8px; }
.legal-content p { color: var(--gray); }
.legal-content ul { list-style: disc; padding-left: 25px; margin-bottom: 15px; }
.legal-content ul li { padding: 4px 0; color: var(--gray); }

/* --- Services List --- */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.services-list-col h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.services-list-col ul { list-style: none; padding: 0; }
.services-list-col ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--gray);
}
.services-list-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- City Links Grid --- */
.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.city-links a {
  padding: 9px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.section-blue .city-links a { color: rgba(255,255,255,0.85); }
.city-links a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,149,26,0.3);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* --- Google Reviews Components --- */

/* Trust Bar */
.gr-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--dark);
  text-decoration: none;
  transition: box-shadow var(--transition);
  white-space: nowrap;
}
.gr-trust-bar:hover { box-shadow: var(--shadow); color: var(--dark); }
.gr-trust-g { display: inline-flex; flex-shrink: 0; }
.gr-trust-stars { display: inline-flex; gap: 1px; }
.gr-trust-score { font-size: 0.82rem; }
.gr-trust-count { color: var(--gray); font-size: 0.82rem; }

/* Review Card */
.gr-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  min-width: 300px;
  flex: 0 0 calc(33.333% - 14px);
  border-left: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.gr-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gr-card-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.gr-card-photo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.gr-card-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.gr-card-time { font-size: 0.78rem; color: var(--gray); }
.gr-card-stars { margin-bottom: 8px; color: #FFB800; }
.gr-card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  position: relative;
  padding-top: 16px;
}
.gr-card-text::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* Carousel */
.gr-carousel-header { text-align: center; margin-bottom: 25px; }
.gr-carousel-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.gr-carousel-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.gr-carousel-stars { display: inline-flex; gap: 2px; }
.gr-carousel-count { color: var(--gray); font-size: 0.9rem; }

.gr-carousel-track-wrapper { overflow: hidden; }
.gr-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.gr-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.gr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-gray);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.gr-dot.active { background: var(--orange); }

/* Summary Block */
.gr-summary {
  text-align: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 35px;
}
.gr-summary-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gr-summary-label { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.gr-summary-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}
.gr-summary-stars { margin-bottom: 8px; }
.gr-summary-count { color: var(--gray); font-size: 0.95rem; margin-bottom: 10px; }

/* Floating Badge */
.gr-badge {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 998;
  text-decoration: none;
  color: var(--dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gr-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--dark);
}
.gr-badge-g { display: flex; flex-shrink: 0; }
.gr-badge-info { display: flex; align-items: center; gap: 4px; }
.gr-badge-score { font-weight: 800; font-size: 0.95rem; }
.gr-badge-stars { display: flex; gap: 1px; }

/* Opening Hours Widget */
.gr-hours { font-size: 0.9rem; }
.gr-hours-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.gr-hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.gr-open .gr-hours-dot { background: var(--green); }
.gr-closed .gr-hours-dot { background: #e74c3c; }
.gr-open { color: var(--green); }
.gr-closed { color: #e74c3c; }
.gr-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-gray);
}
.gr-hours-row:last-child { border-bottom: none; }
.gr-hours-today { font-weight: 700; color: var(--blue-dark); }
.gr-hours-day { min-width: 100px; }

/* Contact Info from API */
.gr-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.gr-contact-item svg { color: var(--blue); flex-shrink: 0; }
.gr-contact-item a { color: var(--dark); }
.gr-contact-item a:hover { color: var(--blue); }

/* Skeleton Loading */
.gr-skeleton {
  background: linear-gradient(90deg, var(--light-gray) 25%, #eee 50%, var(--light-gray) 75%);
  background-size: 200% 100%;
  animation: gr-shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes gr-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.gr-skeleton-trustbar { width: 220px; height: 28px; border-radius: 20px; }
.gr-skeleton-cards { display: flex; gap: 20px; }
.gr-skeleton-card { height: 180px; flex: 1; }
.gr-skeleton-summary { height: 200px; max-width: 400px; margin: 0 auto; }

.gr-hours-unavailable { color: var(--gray); font-size: 0.9rem; }

/* Legal checkbox */
.checkbox-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #666;
  cursor: pointer;
}
.checkbox-legal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.checkbox-legal a { color: var(--blue); text-decoration: underline; }

/* --- Required field indicator --- */
.form-group label:has(~ input:required),
.form-group label:has(~ select:required),
.form-group label:has(~ textarea:required) {
  color: var(--blue-dark);
}

/* --- Form submit button mobile --- */
@media (max-width: 768px) {
  .contact-form-card .btn,
  .calculator-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-image { flex: 0 0 auto; max-width: 500px; }
  .hero-features { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .trust-item { flex: 0 0 33.33%; justify-content: center; }
  .trust-item:nth-child(4)::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-bar .container {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    min-width: max-content;
    padding-right: 20px;
  }
  .trust-item {
    flex: 0 0 auto;
    min-width: auto;
    padding: 4px 14px;
  }
  .trust-text { white-space: nowrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item::after { display: none; }
  .stat-number { font-size: 1.8rem; }

  /* Google Reviews responsive */
  .gr-card { min-width: 0; flex: 0 0 calc(100% - 0px); }

  /* Contact page responsive */
  .contact-section-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 25px 20px; }

  /* Mobile nav */
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    z-index: 999;
  }
  .nav-list { flex-direction: column; }
  .nav-list a { padding: 12px 15px; }
  .hamburger { display: flex; }
  .header-cta .phone-link span { display: none; }

  /* Grids to single column */
  .service-cards { grid-template-columns: 1fr; }
  .content-block { grid-template-columns: 1fr; gap: 25px; }
  .content-block.reverse .content-block-text { order: 1; }
  .content-block.reverse .content-block-image { order: 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-section .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .toeslagen-grid { grid-template-columns: 1fr; }
  .calculator-wrap { padding: 25px 20px; }

  /* Hero */
  .hero { padding: 50px 0 60px; }
  .hero-image { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Cookie Consent --- */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 41, 147, 0.97);
  color: white;
  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-inner a { color: var(--orange); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid white;
  white-space: nowrap;
}
.cookie-accept {
  background: #61a229;
  color: white;
  border-color: #61a229;
}
.cookie-accept:hover { background: #4e8a1f; }
.cookie-necessary {
  background: transparent;
  color: white;
}
.cookie-necessary:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; }
}

/* --- Touch Target Minimums --- */
input[type="checkbox"],
input[type="radio"] {
  min-width: 24px;
  min-height: 24px;
}

/* --- Touch Device Optimizations --- */
@media (pointer: coarse) {
  button, .btn, a, input, textarea, select { min-height: 44px; }
}

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
