body {
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.bg-primary {
  background-color: #0056b3;
}

.text-primary {
  color: #0056b3;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #003d7a;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ff9800;
  color: white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e08600;
  transform: translateY(-2px);
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.emergency-banner {
  background: linear-gradient(90deg, #ff9800, #ff5722);
}

.shadow-custom {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-card {
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.sticky-cta {
  background-color: #25d366;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
