/* ================= SERVICE SUPPORT ================= */

.service-support {
  width: 100%;
  padding: 100px 20px;
  background: #ffffff;
  color: #111827;

  display: flex;
  justify-content: center;
}

.service-container {
  max-width: 1150px;
  width: 100%;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 60px;

  align-items: center;
}

/* ================= LEFT ================= */

.service-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;

  margin-bottom: 22px;

  color: #0f2341;
}

.service-left p {
  font-size: 16px;
  line-height: 1.8;

  color: #4b5563;
  max-width: 500px;
}

/* ================= LINE ================= */

.service-line {
  width: 2px;
  height: 240px;

  background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

/* ================= RIGHT ================= */

.service-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ================= CARD ================= */

.service-card {
  max-width: 400px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 600;

  margin: 16px 0 10px;

  color: #0f2341;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;

  color: #4b5563;

  margin-bottom: 12px;
}

/* ================= ICON ================= */

.service-icon {
  width: 50px;
  height: 50px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);

  color: #ffffff;
  font-size: 20px;

  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);

  transition: 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

/* ================= LINK ================= */

.service-card a {
  font-size: 14px;
  font-weight: 600;

  color: #1d4ed8;
  text-decoration: none;

  position: relative;
  transition: 0.25s ease;
}

.service-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;

  background: #1d4ed8;
  transition: 0.3s ease;
}

.service-card a:hover {
  color: #0f2341;
}

.service-card a:hover::after {
  width: 100%;
}

/* ================= ANIMATION ================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1000px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .service-line {
    display: none;
  }

  .service-right {
    align-items: center;
  }

  .service-left p {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-support {
    padding: 80px 18px;
  }

  .service-left h2 {
    font-size: 28px;
  }

  .service-left p {
    font-size: 15px;
  }

  .service-card {
    max-width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .service-support {
    padding: 65px 15px;
  }

  .service-left h2 {
    font-size: 24px;
  }

  .service-left p {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

/* ================= SERVICE ICON CENTER (MOBILE FIX) ================= */

@media (max-width: 768px) {
  /* Card jadi center */
  .service-card {
    text-align: center;
  }

  /* Icon ke tengah */
  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Link juga center */
  .service-card a {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  /* Extra rapih di HP kecil */
  .service-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-icon {
    margin-bottom: 6px;
  }
}
