/* =========================
   SERVICE PAGE STYLING
   ========================= */

body {
  background-color: #f9fdfd;
}

/* HERO SECTION */
.service-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* =========================
   PERUBAHAN WARNA JUDUL KE TOSKA
   ========================= */

/* Ganti warna utama judul (misal h1, h2, h3) */
.services-alt h2,
.services h1,
.services h2,
.services h3,
.service-item h3,
.service-card h5 {
  color: rgb(28, 168, 168) !important;
}

.services-header h1,
.services-header h2 {
  color: rgb(28, 168, 168) !important;
}

.services h1,
.services h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.service-hero img {
  object-fit: cover;
  filter: brightness(55%);
}

.service-hero .overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 162, 190, 0.35) 0%,
    rgba(0, 72, 99, 0.65) 100%
  );
}

.service-hero h1 {
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.service-hero p {
  color: #f1f1f1;
  font-size: 1.1rem;
}

/* SERVICES SECTION */
.services {
  background: linear-gradient(
    135deg,
    rgb(20, 120, 120),
    rgb(15, 100, 100)
  ) !important;
}

.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 160, 160, 0.25);
}

.service-card h5 {
  color: rgb(28, 168, 168);
}
/* =========================
   ANIMASI MUNCUL SAAT SCROLL
   ========================= */

.services-alt img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.service-item h3 {
  font-size: 1.6rem;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Animasi halus (opsional) */
.service-item {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-hero {
    height: 60vh;
  }

  .service-hero h1 {
    font-size: 1.8rem;
  }

  .service-hero p {
    font-size: 1rem;
  }
}
