/* =============================================
   Service Detail Content Cards
   ============================================= */

.svc-detail {
  padding: 0px 0 60px;
  background: #f8fafc;
}

.svc-detail .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Card --- */
.svc-detail__card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #e8ecf1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.svc-detail__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(7,35,93,0.08);
}

/* --- Icon --- */
.svc-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(150deg, #06a700, #0d9b7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-detail__icon i {
  font-size: 22px;
  color: #fff;
}

/* --- Title --- */
.svc-detail__title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #07235D;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* --- Text --- */
.svc-detail__text {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* --- Checklist --- */
.svc-detail__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-detail__list li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}

.svc-detail__list li i {
  color: #06a700;
  font-size: 12px;
  flex-shrink: 0;
}

/* --- Transfer Section --- */
.svc-transfer {
  padding: 80px 0;
  background: #fff;
}

.svc-transfer--alt {
  background: #f8fafc;
}

.svc-transfer__head {
  text-align: center;
  margin-bottom: 48px;
}

.svc-transfer__head-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(150deg, #06a700, #0d9b7a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.svc-transfer__head-icon i {
  font-size: 26px;
  color: #fff;
}

.svc-transfer__title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #07235D;
  margin: 0 0 12px;
}

.svc-transfer__desc {
  font-size: 16px;
  color: #666;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.svc-transfer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.svc-transfer__card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-transfer__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(7,35,93,0.08);
}

.svc-transfer__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(150deg, #07235D, #1a4fa0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.svc-transfer__icon i {
  font-size: 24px;
  color: #fff;
}

.svc-transfer__name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #07235D;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .svc-transfer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .svc-transfer {
    padding: 50px 0;
  }

  .svc-transfer__title {
    font-size: 22px;
  }

  .svc-transfer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Promise --- */
.svc-promise {
  padding: 80px 0;
  background: linear-gradient(150deg, #07235D 0%, #0d3b8a 50%, #0a5c52 100%);
  color: #fff;
}

.svc-promise__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.svc-promise__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.svc-promise__icon i {
  font-size: 32px;
  color: #6ee7b7;
}

.svc-promise__title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.3;
}

.svc-promise__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .svc-detail .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .svc-detail {
    padding: 50px 0 40px;
  }

  .svc-detail__card {
    padding: 28px 22px;
  }

  .svc-detail__title {
    font-size: 18px;
  }

  .svc-promise {
    padding: 50px 0;
  }

  .svc-promise__title {
    font-size: 22px;
  }
}

/* --- Closing Banner --- */
.svc-closing {
  padding: 60px 0;
  background: linear-gradient(150deg, #07235D 0%, #0d9b7a 100%);
  text-align: center;
}

.svc-closing__inner {
  max-width: 700px;
  margin: 0 auto;
}

.svc-closing__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.svc-closing__icon i {
  font-size: 26px;
  color: #fff;
}

.svc-closing__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.svc-closing__title span {
  color: #06a700;
}

@media (max-width: 575px) {
  .svc-closing__title {
    font-size: 22px;
  }
}
