/* ======================================================
   LAYOUT PREMIUM
====================================================== */
.patient-page {
  background: #f8fafc;
}

/* semua section */
.registration-menu,
.flow-section,
.requirement-section,
.schedule-section,
.faq-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 60px;
}

/* variasi background */
.registration-menu,
.requirement-section,
.faq-section {
  background: #ffffff;
}

.flow-section,
.schedule-section {
  background: #f8fafc;
}

/* ======================================================
   HERO
====================================================== */
.patient-hero {
  min-height: 45vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/patient-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 900px;
  padding: 0 30px;
}

.page-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: #25a888;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.patient-hero h1 {
  margin: 25px 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
}

.patient-hero p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ======================================================
   SECTION TITLE
====================================================== */
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 70px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 5px;
  background: #25a888;
  display: block;
  margin: 18px auto 0;
  border-radius: 20px;
}

/* ======================================================
   GRID
====================================================== */
.registration-grid,
.flow-grid,
.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ======================================================
   CARD STYLE
====================================================== */
.registration-box,
.flow-card,
.requirement-card,
.schedule-card,
.faq-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  height: 100%;
}

.registration-box:hover,
.flow-card:hover,
.requirement-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* ======================================================
   REGISTRATION CARD
====================================================== */
.registration-box {
  padding: 45px;
  text-align: center;
}

.registration-box .icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.registration-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.registration-box p {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.8;
}

.registration-box a {
  display: inline-block;
  padding: 13px 28px;
  background: #25a888;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.registration-box a:hover {
  background: #1d8a6f;
}

/* ======================================================
   FLOW CARD
====================================================== */
.flow-card {
  padding: 40px;
}

.flow-card h3 {
  color: #25a888;
  margin-bottom: 25px;
  font-size: 24px;
}

.flow-card ol {
  padding-left: 20px;
}

.flow-card li {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* ======================================================
   REQUIREMENT CARD
====================================================== */
.requirement-card {
  padding: 40px;
}

.requirement-card h3 {
  color: #25a888;
  margin-bottom: 25px;
  font-size: 24px;
}

.requirement-card ul {
  padding-left: 20px;
}

.requirement-card li {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* ======================================================
   SCHEDULE
====================================================== */
.schedule-card {
  padding: 40px;
  overflow-x: auto;
}

.schedule-card table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-card th {
  background: #25a888;
  color: #fff;
  font-weight: 600;
}

.schedule-card th,
.schedule-card td {
  padding: 18px;
  border: 1px solid #e5e7eb;
}

.schedule-card tr:nth-child(even) {
  background: #f8fafc;
}

/* ======================================================
   FAQ
====================================================== */
.faq-item {
  padding: 35px;
}

.faq-item h4 {
  color: #25a888;
  margin-bottom: 15px;
  font-size: 20px;
}

.faq-item p {
  color: #64748b;
  line-height: 1.8;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1200px) {
  .registration-menu,
  .flow-section,
  .requirement-section,
  .schedule-section,
  .faq-section {
    padding: 80px 40px;
  }
  .patient-hero h1 {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .registration-grid,
  .flow-grid,
  .requirement-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .registration-menu,
  .flow-section,
  .requirement-section,
  .schedule-section,
  .faq-section {
    padding: 70px 25px;
  }
  .patient-hero {
    min-height: 50vh;
    padding: 50px 20px;
  }
  .patient-hero h1 {
    font-size: 34px;
  }
  .patient-hero p {
    font-size: 16px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .patient-hero h1 {
    font-size: 28px;
  }
  .registration-box,
  .flow-card,
  .requirement-card,
  .schedule-card,
  .faq-item {
    padding: 25px;
  }
}/*# sourceMappingURL=pasien.css.map */