/* ===================== */
/* Services Page Hero */
/* ===================== */

.service-page-hero {

  position: relative;

  height: 420px;

  background:
    linear-gradient(rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.75)),

    url('images/banner.png');

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  justify-content: center;
}

.service-page-hero .overlay {

  position: absolute;

  inset: 0;

  background: rgba(15, 23, 42, 0.75);
}

.hero-content {

  position: relative;

  z-index: 2;

  text-align: center;

  color: white;
}

.hero-content h1 {

  font-size: 70px;

  font-weight: 800;

  margin-bottom: 20px;
}

.hero-content p {

  font-size: 20px;
}

.hero-content a {

  color: #4CAF50;

  font-weight: 600;
}

/* ===================== */
/* Services Cards */
/* ===================== */

.all-services {

  background: #f8fafc;

  padding: 100px 0;
}

.service-page-card {

  background: white;

  border-radius: 25px;

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-page-card:hover {

  transform: translateY(-10px);
}

.service-image {

  position: relative;
}

.service-image img {

  width: 100%;

  height: 260px;

  object-fit: cover;
}

.service-tag {

  position: absolute;

  top: 20px;
  left: 20px;

  background: #4CAF50;

  color: white;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;
}

.service-info {

  padding: 30px;

  display: flex;

  flex-direction: column;

  height: 100%;
}

.service-rating {

  color: #facc15;

  margin-bottom: 15px;
}

.service-info h3 {

  font-size: 34px;

  margin-bottom: 15px;

  font-weight: 700;

  color: #0f172a;
}

.service-info p {

  color: #64748b;

  line-height: 1.8;

  margin-bottom: 30px;
}

.service-btns {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-top: 30px;
}

.details-btn {

  color: #0f172a;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.details-btn:hover {

  color: #4CAF50;
}

.book-btn {

  background: #4CAF50;

  color: white;

  padding: 12px 28px;

  border-radius: 50px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  transition: 0.3s ease;
}

.book-btn:hover {

  background: #0f172a;

  color: white;

  transform: translateY(-3px);
}

/* Responsive */

@media(max-width: 768px) {

  .hero-content h1 {

    font-size: 42px;
  }

  .service-btns {

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

}

.call-btn {

  background: #0f172a;

  color: white;

  padding: 12px 28px;

  border-radius: 50px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  transition: 0.3s ease;
}

.call-btn:hover {

  background: #4CAF50;

  color: white;

  transform: translateY(-3px);
}

