/* Home Page Styles */

/* Hero section styles are now inline in the HTML */

/* Emergency Banner */
.emergency-banner {
  background-color: #f5564e;
  padding: 20px;
  text-align: center;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.emergency-banner h3 {
  font-size: 1.5rem;
  margin: 0;
}

.emergency-banner-btn {
  background-color: white;
  color: #f5564e;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* Pulse animation for emergency button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.emergency-banner-btn {
  animation: pulse 2s infinite;
}

/* Honeypot field for spam protection */
input[name="_honey"] {
  display: none;
}

/* Brand styles */
.brands-section {
  padding: 80px 20px;
  background-color: white;
}

.brands-title {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.5rem;
}

.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-item {
  flex: 0 0 calc(20% - 40px);
  min-width: 120px;
  max-width: 150px;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brand-item img {
  max-width: 100%;
  height: auto;
}

/* Media queries */
@media (max-width: 768px) {
  .brands-container {
    gap: 20px;
  }
  
  .brand-item {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 480px) {
  .brands-title {
    font-size: 1.8rem;
  }
  
  .emergency-banner {
    flex-direction: column;
  }
} 