/* ======================================================
   HALAMAN DOKTER
====================================================== */
.doctor-page {
  background: #f8fafc;
}

/* ======================================================
   HERO
====================================================== */
.doctor-hero {
  min-height: 45vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/doctor-banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.doctor-hero .hero-content {
  max-width: 900px;
  padding: 0 30px;
}

.doctor-hero h1 {
  font-size: 58px;
  margin: 25px 0;
}

.doctor-hero p {
  font-size: 18px;
  line-height: 1.8;
}

/* ======================================================
   SECTION
====================================================== */
.doctor-search-section,
.doctor-list-section,
.doctor-schedule-section,
.doctor-cta {
  max-width: 1280px;
  margin: auto;
  padding: 60px 60px;
}

/* ======================================================
   SEARCH
====================================================== */
.doctor-search-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.doctor-search-box input,
.doctor-search-box select {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
}

.doctor-search-box button {
  padding: 16px 30px;
  border: none;
  background: #25a888;
  color: white;
  border-radius: 14px;
  cursor: pointer;
}

/* ======================================================
   GRID DOKTER
====================================================== */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.doctor-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.doctor-card:hover {
  transform: translateY(-8px);
}

.doctor-card img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-info {
  padding: 30px;
}

.doctor-info h3 {
  margin-bottom: 10px;
}

.specialist {
  display: inline-block;
  background: #e7f8f3;
  color: #25a888;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.doctor-info p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.8;
}

.doctor-info a {
  display: inline-block;
  background: #25a888;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
}

/* ======================================================
   JADWAL
====================================================== */
/* ======================================================
   JADWAL DOKTER
====================================================== */
.doctor-schedule-section .text-jadwal {
  font-size: 12pt !important;
  font-weight: 400;
  color: #64748b;
}
.doctor-schedule-section .schedule-card {
  background: #ffffff;
  border-radius: 28px;
  overflow-x: auto;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  border: 1px solid #edf2f7;
}
.doctor-schedule-section .schedule-card table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}
.doctor-schedule-section .schedule-card table thead {
  background: linear-gradient(135deg, #25a888 0%, #1d8a6f 100%);
}
.doctor-schedule-section .schedule-card table thead th {
  padding: 22px 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  border: none;
}
.doctor-schedule-section .schedule-card table tbody tr {
  border-bottom: 1px solid #eef2f7;
  transition: all 0.25s ease;
}
.doctor-schedule-section .schedule-card table tbody tr:hover {
  background: #f8fffd;
  transform: scale(1.002);
}
.doctor-schedule-section .schedule-card table tbody tr:last-child {
  border-bottom: none;
}
.doctor-schedule-section .schedule-card table tbody tr td {
  padding: 22px 24px;
  vertical-align: top;
  color: #334155;
  font-size: 15px;
  line-height: 1.9;
}
.doctor-schedule-section .schedule-card table tbody tr {
  /* Nama Dokter */
}
.doctor-schedule-section .schedule-card table tbody tr td:nth-child(1) {
  font-weight: 700;
  color: #0f172a;
  min-width: 260px;
}
.doctor-schedule-section .schedule-card table tbody tr {
  /* Poli */
}
.doctor-schedule-section .schedule-card table tbody tr td:nth-child(2) {
  color: #25a888;
  font-weight: 600;
}
.doctor-schedule-section .schedule-card table tbody tr {
  /* Hari */
}
.doctor-schedule-section .schedule-card table tbody tr td:nth-child(3) {
  color: #475569;
}
.doctor-schedule-section .schedule-card table tbody tr {
  /* Jam */
}
.doctor-schedule-section .schedule-card table tbody tr td:nth-child(4) {
  color: #16a34a;
  font-weight: 600;
}
.doctor-schedule-section .schedule-card table tbody {
  /* Tim Dokter Umum */
}
.doctor-schedule-section .schedule-card table tbody tr:last-child {
  background: linear-gradient(135deg, rgba(37, 168, 136, 0.08), rgba(37, 168, 136, 0.03));
}
.doctor-schedule-section .schedule-card table tbody tr:last-child td {
  font-weight: 700;
}
.doctor-schedule-section .schedule-card table tbody tr:last-child td:nth-child(4) {
  color: #dc2626;
  font-size: 16px;
}
.doctor-schedule-section .schedule-card {
  /* Scrollbar */
}
.doctor-schedule-section .schedule-card::-webkit-scrollbar {
  height: 8px;
}
.doctor-schedule-section .schedule-card::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}
.doctor-schedule-section .schedule-card::-webkit-scrollbar-thumb {
  background: #25a888;
  border-radius: 10px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .doctor-schedule-section .schedule-card table {
    min-width: 750px;
  }
  .doctor-schedule-section .schedule-card table thead th,
  .doctor-schedule-section .schedule-card table tbody td {
    padding: 18px;
  }
}
/* ======================================================
   MOBILE TABLE TO CARD
====================================================== */
/* ======================================================
   RESPONSIVE JADWAL
====================================================== */
@media (max-width: 992px) {
  .doctor-schedule-section .schedule-card table {
    min-width: 760px;
  }
  .doctor-schedule-section .schedule-card thead th {
    padding: 18px;
    font-size: 13px;
  }
  .doctor-schedule-section .schedule-card tbody td {
    padding: 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .doctor-schedule-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .doctor-schedule-section .schedule-card {
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .doctor-schedule-section .schedule-card table {
    min-width: 680px;
  }
  .doctor-schedule-section .schedule-card thead th {
    padding: 14px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .doctor-schedule-section .schedule-card tbody td {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.7;
  }
  .doctor-schedule-section .schedule-card tbody td:nth-child(1) {
    min-width: 350px;
  }
  .doctor-schedule-section .schedule-card tbody td:nth-child(2) {
    min-width: 160px;
  }
  .doctor-schedule-section .schedule-card tbody td:nth-child(3) {
    min-width: 180px;
  }
  .doctor-schedule-section .schedule-card tbody td:nth-child(4) {
    min-width: 280px;
  }
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(37, 168, 136, 0.12);
  color: #25a888;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 15px;
}
.section-title p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
}

/* ======================================================
   CTA
====================================================== */
.doctor-cta {
  text-align: center;
}

.doctor-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.doctor-cta p {
  margin-bottom: 30px;
  color: #64748b;
}

.doctor-cta a {
  display: inline-block;
  padding: 15px 35px;
  background: #25a888;
  color: white;
  text-decoration: none;
  border-radius: 50px;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .doctor-grid {
    grid-template-columns: 1fr;
  }
  .doctor-search-section,
  .doctor-list-section,
  .doctor-schedule-section,
  .doctor-cta {
    padding: 30px 25px;
  }
  .doctor-hero h1 {
    font-size: 36px;
  }
}
/* ======================================================
   SEARCH DOKTER
====================================================== */
.doctor-search-section {
  max-width: 1280px;
  margin: auto;
  padding: 100px 60px;
}

/* HEADER */
.search-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(37, 168, 136, 0.12);
  color: #25a888;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.search-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.search-header p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
}

/* SEARCH BOX */
.doctor-search-box {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.doctor-search-box input,
.doctor-search-box select {
  flex: 1;
  min-width: 250px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  transition: 0.3s;
}

.doctor-search-box input:focus,
.doctor-search-box select:focus {
  outline: none;
  border-color: #25a888;
  box-shadow: 0 0 0 4px rgba(37, 168, 136, 0.12);
}

.doctor-search-box button {
  padding: 18px 32px;
  border: none;
  border-radius: 14px;
  background: #25a888;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctor-search-box button:hover {
  background: #1d8a6f;
  transform: translateY(-2px);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .doctor-search-section {
    padding: 80px 40px;
  }
  .search-header h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .doctor-search-section {
    padding: 70px 20px;
  }
  .search-header h2 {
    font-size: 20px;
  }
  .search-header p {
    font-size: 16px;
  }
  .doctor-search-box {
    padding: 20px;
  }
  .doctor-search-box input,
  .doctor-search-box select,
  .doctor-search-box button {
    width: 100%;
  }
  .doctor-search-box button {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .search-header h2 {
    font-size: 26px;
  }
  .section-badge {
    font-size: 12px;
  }
}/*# sourceMappingURL=dokter.css.map */