/* ===== Reset & Base Styles ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #003366;
  margin-bottom: 15px;
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: url('images/car wash.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  max-width: 150px;
}

.home-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  color: white;
  font-size: 24px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #e0e0e0);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 40px 20px;
  background-color: white;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service-cards .card {
  background: #f0f1f1;
  color: #011f4b;
  border-radius: 8px;
  padding: 20px;
  width: 160px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-cards .card:hover {
  transform: scale(1.05);
}

.service-cards i {
  font-size: 30px;
  margin-bottom: 10px;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  padding: 40px;
  background-color: #f5f5f5;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #003366;
  outline: none;
}

.form-group i {
  margin-right: 8px;
  color: #003366;
}

button {
  background-color: #003366;
  color: white;
  padding: 12px;
  font-size: 1.2rem;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #00509e;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid div {
  width: 250px;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 40px 20px;
  background-color: white;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.profile {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.profile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #e9f0fb;
  padding: 40px 20px;
}

.testimonials blockquote {
  max-width: 600px;
  margin: 20px auto;
  font-style: italic;
  color: #003366;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 0.8s ease forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #062177;
  color: #fff;
  padding: 10px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-brand img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #25D366;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .service-cards,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}
