/* =============================================
   HOMEPAGE-SPECIFIEKE STYLES
   /components/homepage.css — OranjeLift.nl
   ============================================= */

/* USP balk */
.usp-balk {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .usp-balk {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .usp-balk {
    grid-template-columns: repeat(4, 1fr);
  }
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.usp-item-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(255, 128, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-item:hover .usp-item-icon {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.2);
}
.usp-item-icon svg {
  width: 22px;
  height: 22px;
}
.usp-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 2px;
}
.usp-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Section heading */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header h2 {
  margin-bottom: var(--space-md);
}
.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Diensten grid */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .diensten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .diensten-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dienst-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.dienst-card:hover::before {
  opacity: 1;
}
.dienst-card:hover {
  box-shadow: 0 16px 40px rgba(255, 128, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 128, 0, 0.3);
  transform: translateY(-6px);
}
.dienst-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dienst-card:hover .dienst-card-image img {
  transform: scale(1.06);
}
.dienst-card-content {
  padding: var(--space-xl);
  flex: 1;
}
.dienst-card-content h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}
.dienst-card-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Waarom ons section */
.why-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #1C1E21;
}
.why-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-section-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 20, 24, 0.7);
}
.why-section-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 640px;
}
@media (min-width: 768px) {
  .why-section-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}
.why-section-content h2 {
  color: #fff;
  margin-bottom: var(--space-xl);
}
.why-list {
  list-style: none;
  padding: 0;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
.why-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.why-list li svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 4px rgba(255, 128, 0, 0.3));
}

/* Werkwijze stappen */
.werkwijze-stappen {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  counter-reset: stap;
}
@media (min-width: 768px) {
  .werkwijze-stappen {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .werkwijze-stappen {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
.werkwijze-stap {
  text-align: center;
  counter-increment: stap;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.werkwijze-stap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(255, 128, 0, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.werkwijze-stap:hover {
  background: #fff;
  border-color: rgba(255, 128, 0, 0.25);
  transform: translateY(-4px);
}
.werkwijze-stap:hover::after {
  opacity: 1;
}
.werkwijze-stap-nummer {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 14px rgba(255, 128, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  position: relative;
}
.werkwijze-stap:hover .werkwijze-stap-nummer {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(255, 128, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.werkwijze-stap h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}
.werkwijze-stap p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Prijzen cards */
.prijzen-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .prijzen-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prijs-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.prijs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}
.prijs-card:hover {
  border-color: rgba(255, 128, 0, 0.3);
  box-shadow: 0 16px 40px rgba(255, 128, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.prijs-card h3 {
  margin-bottom: var(--space-md);
}
.prijs-card .prijs-bedrag {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}
.prijs-card .prijs-per {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.prijs-card .prijs-extra {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}
.prijs-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.prijs-card li {
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: 1.5;
}
.prijs-card li:last-child {
  border-bottom: none;
}
.prijs-card li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Steden grid */
.steden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .steden-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .steden-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stad-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.stad-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-bg);
  box-shadow: 0 4px 12px rgba(255, 128, 0, 0.1);
  transform: translateY(-2px);
}
.stad-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Foto galerij */
.galerij-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .galerij-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}
.galerij-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  background: var(--color-bg);
}
.galerij-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.galerij-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galerij-item:hover img {
  transform: scale(1.08);
}
.galerij-item figcaption {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

/* Stats bar */
@keyframes statsGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 128, 0, 0.3); }
  50% { text-shadow: 0 0 20px rgba(255, 128, 0, 0.5), 0 0 40px rgba(255, 128, 0, 0.15); }
}
.stats-bar {
  background: linear-gradient(135deg, #ff8000 0%, #cc6600 100%);
  border-radius: 0;
  padding: var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 128, 0, 0.25);
  margin-top: var(--space-3xl);
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  text-align: center;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 768px) {
  .stats-bar {
    padding: var(--space-xl) var(--space-3xl);
  }
  .stats-grid {
    gap: var(--space-3xl);
  }
}
.stat-item {
  color: #fff;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: calc(var(--space-2xl) * -0.5 - 0.5px);
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}
@media (min-width: 768px) {
  .stat-item + .stat-item::before {
    left: calc(var(--space-3xl) * -0.5 - 0.5px);
  }
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  animation: statsGlow 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
}

/* Prijzen section CTA */
.prijzen-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-primary-bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255, 128, 0, 0.2);
  box-shadow: 0 2px 8px rgba(255, 128, 0, 0.06);
}
.prijzen-cta p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}
.prijzen-cta .btn:hover {
  box-shadow: 0 8px 16px rgba(255, 128, 0, 0.25);
}

/* Section transitions */
.section + .section {
  border-top: 1px solid var(--color-border);
}
.section-alt + .section {
  border-top: none;
}
.section + .section-alt {
  border-top: none;
}

/* Wave separator */
.wave-separator {
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wave-separator svg {
  display: block;
  width: 100%;
  height: 40px;
}
