/* Wash and Fold */
:root {
  --brand-blue: #2563eb;
  --brand-green: #22c55e;
}

html,
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Hero Section with Background Image Slider */
.hero-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  animation: fadeInUp 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.9),
    rgba(147, 51, 234, 0.85)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.floating-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3xl);
  opacity: 0.15;
  animation: pulse 3s infinite;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.hero-dot.active {
  background: white;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .header-logo {
    height: 40px;
  }

  .hero-section {
    min-height: 60vh;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
  animation: fadeInUp 0.3s ease-out;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 0;
  border-radius: 24px;
  width: min(95vw, 650px);
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 70px -12px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  color: white;
}

.modal-body {
  padding: 2rem;
  max-height: calc(90vh - 150px);
  overflow-y: auto;
}

#scroll-top,
#whatsapp-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#scroll-top {
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transform: translateY(100px);
  box-shadow: 0 10px 30px -5px rgba(102, 126, 234, 0.6);
}

#scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
}

#whatsapp-btn {
  bottom: 110px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

#whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.1);
}

.header-logo {
  height: 50px;
  width: auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #2563eb, #9333ea);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.footer-link {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: white;
  padding-left: 10px;
}

.footer-link:hover i {
  color: #22c55e;
}

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

.animate-pulse-slow {
  animation: pulse 3s infinite;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .header-logo {
    height: 40px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

.service-detail-image {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.benefit-card {
  transition: all 0.3s ease;
  border-left: 4px solid #22c55e;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
