/* layanan.css - Stylesheet untuk Halaman Layanan */
/* Letakkan di folder: assets/css/layanan.css */

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #003366 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.page-header .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.layanan-content {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.content-box h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-box h2 i {
  color: var(--blue-bright);
}

.content-box p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.requirement-card {
  background: var(--blue-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.requirement-card h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card ul li {
  padding: 0.7rem 0;
  color: var(--gray);
  border-bottom: 1px solid rgba(0, 31, 63, 0.1);
  display: flex;
  align-items: start;
}

.requirement-card ul li:last-child {
  border-bottom: none;
}

.requirement-card ul li i {
  color: var(--blue-bright);
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}

.info-item h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--gray);
  margin: 0;
}

.steps-box {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
}

.step-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--blue-light);
}

.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--blue-bright);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.step-content h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray);
  margin: 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.warning-box h4 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.warning-box p {
  color: #856404;
  margin: 0;
}

.success-box {
  background: #d4edda;
  border-left: 4px solid #28a745;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.success-box h4 {
  color: #155724;
  margin-bottom: 0.5rem;
}

.success-box p {
  color: #155724;
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-bright) 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.btn-white {
  background: white;
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.back-link {
  display: inline-block;
  color: var(--blue-bright);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: all 0.3s;
}

.back-link:hover {
  color: var(--navy);
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .page-header .icon {
    font-size: 3rem;
  }

  .step-item {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .info-box {
    grid-template-columns: 1fr;
  }
}
