/* ==================== HERO SECTION VERBETERINGEN ==================== */
/* Professionele styling voor de hero section en overgang naar skewed sections */

/* Hero section styling - respecteert bestaande achtergrond */
.hero.hero-home {
  position: relative;
  margin-bottom: 0 !important; /* Remove default margin voor naadloze overgang */
  padding-bottom: 8rem !important; /* Extra ruimte voor overgang */
  overflow: hidden;
  /* Bestaande achtergrond blijft behouden, geen nieuwe gradient */
}

/* Elegante overgangseffect onder de hero */
.hero.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 28, 56, 0.15) 100%);
  transform: skewY(-1deg);
  transform-origin: bottom;
  z-index: 1;
}

/* Zorg dat hero content boven de overgang staat */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Verbeterde knoppen in hero section */
.hero-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 4px 15px rgba(0, 123, 255, 0.25),
    0 2px 4px rgba(0, 123, 255, 0.15);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(0, 123, 255, 0.35),
    0 4px 8px rgba(0, 123, 255, 0.25);
}

/* Speciale styling voor de eerste skewed section na hero */
.hero.hero-home + .section-wrapper {
  margin-top: -3rem !important; /* Overlap met hero voor naadloze overgang */
  position: relative;
  z-index: 3;
}

/* Extra diepte effect voor de eerste section na hero */
.hero.hero-home + .section-wrapper.skewed-section-dark {
  box-shadow: 
    0 -5px 30px rgba(13, 28, 56, 0.15),
    0 8px 40px rgba(13, 28, 56, 0.12),
    0 2px 8px rgba(13, 28, 56, 0.15);
}

/* ==================== SKEWED SECTIONS PROFESSIONELE VERBETERINGEN ==================== */
/* Elegante, subtiele verbeteringen die de kwaliteit verhogen zonder storend te zijn */

/* Verbeterde diepte en kwaliteit voor skewed sections */
.skewed-section-left,
.skewed-section-right {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hoogwaardige schaduwen voor meer dimensionaliteit */
.skewed-section-left {
  box-shadow: 
    0 4px 20px rgba(13, 28, 56, 0.08),
    0 1px 3px rgba(13, 28, 56, 0.12);
}

.skewed-section-right {
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Subtiele hover verbetering - alleen versterking van bestaande effecten */
.skewed-section-left:hover {
  box-shadow: 
    0 8px 30px rgba(13, 28, 56, 0.12),
    0 2px 6px rgba(13, 28, 56, 0.15);
  transform: translateY(-2px);
}

.skewed-section-right:hover {
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

/* Zeer subtiele glassmorphism verbetering voor containers */
.skewed-section-dark .section-container {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  background: rgba(26, 47, 90, 0.02);
}

.skewed-section .section-container {
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  background: rgba(248, 249, 250, 0.03);
}

/* Zorg voor perfecte content zichtbaarheid */
.skewed-section-left > *,
.skewed-section-right > * {
  position: relative;
  z-index: 2;
}

/* Premium responsive gedrag */
@media (max-width: 1200px) {
  .skewed-section-left,
  .skewed-section-right {
    box-shadow: 
      0 3px 15px rgba(0, 0, 0, 0.06),
      0 1px 2px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 768px) {
  .skewed-section-left,
  .skewed-section-right {
    box-shadow: 
      0 2px 12px rgba(0, 0, 0, 0.05),
      0 1px 2px rgba(0, 0, 0, 0.06);
  }
  
  /* Minimale hover effecten op mobiel */
  .skewed-section-left:hover,
  .skewed-section-right:hover {
    transform: none;
    box-shadow: 
      0 3px 15px rgba(0, 0, 0, 0.07),
      0 1px 3px rgba(0, 0, 0, 0.08);
  }
  
  /* Verwijder glassmorphism op mobiel voor performance */
  .skewed-section-dark .section-container,
  .skewed-section .section-container {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
  }
}
/* ==================== HOMEPAGE ESTHETISCHE VERBETERINGEN ==================== */

/* 2. Succesverhalen Glassmorphism */
.success-story-card {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,123,255,0.15) !important;
}

.avatar-circle {
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3) !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Count-up animatie voor besparingen */
.savings-amount {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 3. Amsterdam Actie Glassmorphism */
.amsterdam-action-card {
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

/* Pulserende badge animatie */
.pulse-badge {
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(235, 126, 25, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 20px rgba(226, 158, 10, 0.8);
    transform: scale(1.02);
  }
}

/* Amsterdam knop gradient */
.amsterdam-btn {
  background: linear-gradient(45deg, #084594, #205ba7, #0d1c75) !important;
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
  transition: all 0.3s ease;
}

.amsterdam-btn:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(13,114,4,0.4) !important;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 4. App Download Verbeteringen */
.app-download-btn {
  box-shadow: 0 6px 20px rgba(0,123,255,0.2) !important;
  border-radius: 15px !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
}

.pwa-success-fade {
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from { 
    opacity: 0; 
    transform: scale(0.8) translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

/* PWA Success melding animatie */
.pwa-success-message {
  animation: pwaSuccessSlide 0.6s ease-out;
  background: rgba(40, 167, 69, 0.95) !important;
  backdrop-filter: blur(10px);
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3) !important;
}

@keyframes pwaSuccessSlide {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* App mockup styling */
.app-mockup {
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 25px;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  border: 8px solid #333;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1rem;
}

.app-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon i {
  color: #007bff;
  font-size: 1.8rem;
}

/* Pulse animatie voor knoppen */
.pulse-animation {
  animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,123,255,0.5);
  }
}

/* 5. Blog Slider Verbeteringen */

.blog-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.blog-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  gap: 32px; /* Vergroot de ruimte tussen de blogs */
  padding: 16px; /* Voeg padding toe rondom de slider */
}

.blog-slide {
  min-width: 280px; /* Iets breder voor een betere presentatie */
  max-width: 340px;
  flex: 0 0 340px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #ffffff; /* Zorg voor een neutrale achtergrondkleur */
  border: 1px solid rgba(0, 0, 0, 0.1); /* Voeg een subtiele rand toe */
  border-radius: 12px; /* Maak de hoeken iets ronder */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtiele schaduw voor diepte */
  overflow: hidden;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none; /* Verwijder dubbele schaduw */
}

.blog-image-container {
  position: relative;
  width: 100%;
  height: 200px; /* Grotere afbeelding voor visuele impact */
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Scheiding tussen afbeelding en content */
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  flex: 1 1 auto;
  padding: 1.5rem; /* Meer padding voor een ruimtelijker gevoel */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px; /* Ruimte tussen tekstonderdelen */
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  color: #333333; /* Donkere kleur voor betere leesbaarheid */
}

.blog-content p {
  font-size: 0.95rem;
  color: #555555; /* Subtiele kleur voor ondersteunende tekst */
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .blog-slide {
    min-width: 240px;
    max-width: 280px;
    flex-basis: 280px;
  }
  .blog-image-container {
    height: 160px;
  }
}

@media (max-width: 900px) {
  .blog-slide {
    min-width: 90vw;
    max-width: 90vw;
    flex-basis: 90vw;
  }
  .blog-image-container {
    height: 140px;
  }
}

.blog-image-overlay-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,123,255,0.7), rgba(0,86,179,0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.blog-card:hover .blog-image-overlay-enhanced {
  opacity: 1;
}

.blog-btn-enhanced {
  background: linear-gradient(45deg, #007bff, #0056b3) !important;
  border: none !important;
  padding: 0.7rem 1.5rem !important;
  font-size: 0.95rem !important;
  color: white !important; /* Maak de tekst op de knoppen wit */
}

.blog-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 4;
  animation: newBadgePulse 2s ease-in-out infinite;
}

@keyframes newBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* 6. Diensten Glassmorphism */
.chique-service-card {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,123,255,0.1) !important;
  transition: all 0.4s ease !important;
}

.chique-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,123,255,0.2) !important;
}

.icon-wrapper {
  background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,86,179,0.05)) !important;
  border: 2px solid rgba(0,123,255,0.2) !important;
  transition: all 0.3s ease;
}

.chique-service-card:hover .icon-wrapper {
  background: linear-gradient(135deg, rgba(0,123,255,0.2), rgba(0,86,179,0.1)) !important;
  transform: scale(1.1);
}

/* 7. Reviews Glassmorphism */
.review-card-dark {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  position: relative;
}

.review-stars i {
  animation: starTwinkle 2s ease-in-out infinite;
  animation-delay: calc(var(--star-index) * 0.2s);
}

@keyframes starTwinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Quote icon achtergrond */
.review-card-dark::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(0,123,255,0.1);
  font-family: serif;
  z-index: 0;
}

.review-card-dark > * {
  position: relative;
  z-index: 1;
}

/* 8. Over Ons Verbeteringen */
.about-image {
  border-radius: 50% !important;
  border: 4px solid rgba(255,255,255,0.3) !important;
  box-shadow: 0 10px 30px rgba(0,123,255,0.2) !important;
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,123,255,0.3) !important;
}

/* 9. Timeline Glassmorphism */
.timeline-card {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,123,255,0.1) !important;
  position: relative;
}

.timeline-line {
  background: linear-gradient(to bottom, #007bff, #0056b3) !important;
  animation: timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(0,123,255,0.3); }
  50% { box-shadow: 0 0 20px rgba(0,123,255,0.6); }
}

/* Step numbers in circles */
.timeline-step {
  display: flex;
  align-items: center; /* Centreer de inhoud verticaal */
  justify-content: center; /* Centreer de inhoud horizontaal */
  position: absolute; /* Zorg dat de bolletjes absoluut gepositioneerd zijn */
  left: 50%; /* Plaats de bolletjes horizontaal gecentreerd */
  transform: translateX(-50%); /* Corrigeer de positie om exact in het midden te staan */
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.timeline-step::before,
.timeline-step::after {
  display: none !important;
}

/* 10. Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

/* Contact Form Glassmorphism */
.contact-card-dark {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.dark-input {
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: white !important;
  border-radius: 15px !important;
}

.dark-input::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

.dark-input:focus {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.4) !important;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

/* Algemene verbeteringen */
.section-card {
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,123,255,0.1) !important;
}

.btn-enhanced {
  border-radius: 20px !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.8rem !important;
  transition: all 0.3s ease !important;
}

.btn-enhanced:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0,123,255,0.3) !important;
}

.btn-enhanced:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25) !important;
}

.text-consistent {
  font-family: 'Inter', 'Arial', sans-serif !important;
}

.title-consistent {
  font-family: 'Inter', 'Arial', sans-serif !important;
  font-weight: 700 !important;
}

.subtitle-consistent {
  font-family: 'Inter', 'Arial', sans-serif !important;
  font-weight: 500 !important;
}

/* Toegankelijkheid verbeteringen */
.accessible-focus:focus {
  outline: 3px solid rgba(0,123,255,0.5) !important;
  outline-offset: 2px !important;
}

.accessible-link:focus {
  text-decoration: underline !important;
  background: rgba(0,123,255,0.1) !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
}

.slider-arrow {
  position: absolute;
  top: 50%; /* Centreer de pijltjes verticaal */
  transform: translateY(-50%);
}

.slider-arrow-left {
  left: 10px; /* Plaats de linker pijl aan de linkerkant */
}

.slider-arrow-right {
  right: 10px; /* Plaats de rechter pijl aan de rechterkant */
}

@media (max-width: 768px) {
  .hero-button {
    width: 100%; /* Zorg dat beide knoppen even breed zijn */
    max-width: 300px; /* Beperk de maximale breedte */
    margin: 0 auto; /* Centreer de knoppen */
  }
  /* HERO features onder elkaar op mobiel */
  .hero-benefits-row {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .hero-benefits-row > div {
    justify-content: flex-start !important;
    width: 100%;
  }
  /* Timeline step helemaal links op mobiel */
  .timeline-step {
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
  }
}

/* Enhanced Download App Section Styles */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(102,126,234,0.4); }
  50% { box-shadow: 0 0 30px rgba(102,126,234,0.6); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 25px rgba(102,126,234,0.3); }
  50% { box-shadow: 0 12px 35px rgba(102,126,234,0.5); }
}

.floating-element-1, .floating-element-2 {
  animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
  animation-delay: -3s;
}

.phone-mockup-premium {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 140px rgba(0,0,0,0.7), 0 25px 70px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,255,255,0.1);
}

.app-download-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.app-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.app-download-btn:hover::before {
  left: 100%;
}

.app-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 10px 25px rgba(0,0,0,0.2) !important;
}

.pwa-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%) !important;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 18px 45px rgba(102,126,234,0.6), 0 9px 22px rgba(102,126,234,0.4) !important;
}

.web-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
  box-shadow: 0 16px 40px rgba(0,123,255,0.5), 0 8px 20px rgba(0,123,255,0.3) !important;
}

.bookmark-btn:hover, .share-btn:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: translateY(-2px);
}

.feature-item-enhanced {
  transition: all 0.3s ease;
}

.feature-item-enhanced:hover {
  background: rgba(255,255,255,0.15) !important;
  transform: translateX(5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 6px 20px rgba(0,0,0,0.15) !important;
}

.feature-icon-wrapper {
  transition: transform 0.3s ease;
}

.feature-item-enhanced:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.app-stats-section {
  transition: all 0.3s ease;
}

.app-stats-section:hover {
  background: rgba(255,255,255,0.12) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25), 0 9px 25px rgba(0,0,0,0.15) !important;
}

.pwa-install-wrapper, .pwa-success-wrapper, .fallback-wrapper {
  transition: all 0.3s ease;
}

.pwa-install-wrapper:hover, .fallback-wrapper:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2) !important;
}

.install-icon-wrapper, .success-icon-wrapper {
  transition: transform 0.3s ease;
}

.pwa-install-wrapper:hover .install-icon-wrapper {
  transform: scale(1.1);
  animation: glow 2s infinite;
  box-shadow: 0 10px 30px rgba(102,126,234,0.5), 0 5px 15px rgba(102,126,234,0.3) !important;
}

.platform-icons i {
  transition: all 0.3s ease;
}

.platform-icons i:hover {
  opacity: 1 !important;
  transform: scale(1.2);
  text-shadow: 0 8px 25px rgba(255,255,255,0.6), 0 4px 12px rgba(255,255,255,0.4);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .phone-mockup-premium {
    width: 300px;
    height: 400px;
  }
  
  .floating-element-1, .floating-element-2 {
    display: none;
  }
  
  .app-section-badge {
    margin-bottom: 1rem !important;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .feature-item-enhanced {
    margin-bottom: 0.75rem !important;
  }
  /* HERO features onder elkaar op mobiel */
  .hero-benefits-row {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .hero-benefits-row > div {
    justify-content: flex-start !important;
    width: 100%;
  }
  /* Timeline step helemaal links op mobiel */
  .timeline-step {
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
  }
}
