/* ==========================================================================
   Services Section Start
   ========================================================================== */
.services-section {
  background-color: var(--light-color, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
  position: relative;
  text-transform: capitalize;
}

.services-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  background: #fff;
  border-radius: 20px;
  max-width: 395px;
  width: 100%;
  /* padding: 1.5rem; */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.service-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-pricing {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 10px 0;
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card h5 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
}

.services-list li {
  margin-bottom: 0;
}

.services-list li {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0.75rem;
  display: flex;
}

.sevice-content {
  padding: 1rem 1.5rem;
}

.service-card-img {
  width: 100%;
  padding: 1.5rem;
  padding-bottom: 0;
}

.services-list li i {
  color: var(--primary-color, #0056b3);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.service-card .btn-book {
  background-color: #ec2829;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.service-card .btn-book:hover {
  background-color: #bd1a1a;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2rem;
  }

  .service-card img {
    height: 180px;
  }

  .service-card h5 {
    font-size: 1.1rem;
  }

  .services-list li {
    font-size: 0.9rem;
  }

  .service-card .btn-book {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 2rem 0;
  }

  .services-section h2 {
    font-size: 1.75rem;
  }

  .service-card img {
    height: auto;
  }

  .service-card h5 {
    font-size: 1rem;
  }

  .services-list li {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Services Section End
   ========================================================================== */
