/* Divine Cleaning & Flooring DC - Main Styles */

.header-logo {
  height: 64px;
}

.footer-logo {
  height: 64px;
  filter: brightness(0) invert(1);
}

.hero-gradient {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(76, 81, 191, 0.9) 50%,
    rgba(124, 58, 237, 0.85) 100%
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

.testimonial-card {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(30, 58, 138, 0.1);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.animate-fade-in.opacity-100 {
  opacity: 1;
}

.animate-fade-in-up.opacity-100 {
  opacity: 1;
  transform: translateY(0);
}

.form-input {
  transition: border 0.3s ease;
}

.form-input:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

#map {
  height: 400px;
  width: 100%;
}

/* Quote Form Specific Styles */
.quote-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

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

.step::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

.step.active .step-number {
  background: #1e3a8a;
  color: white;
}

.step.completed .step-number {
  background: #10b981;
  color: white;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
