/* ========================================
   RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f8fc;
  color: #333;
  overflow-x: hidden;
}

/* ========================================
   CONTAINER
======================================== */

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* ========================================
   HEADER
======================================== */

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  transition: 0.4s;
}

.navbar {
  height: 95px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

/* ========================================
   LOGO
======================================== */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 60px;
  margin-right: 15px;
  transition: 0.4s;
}

.logo:hover img {
  transform: rotate(5deg) scale(1.08);
}

.logo-text h1 {
  color: #0d4e96;
  font-size: 30px;
  font-weight: 800;
}

.logo-text p {
  color: #777;
  font-size: 13px;
}

/* ========================================
   MENU
======================================== */

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #0d4e96;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

.nav-menu a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  background: #28a8ea;

  transition: 0.4s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #28a8ea;
}

/* ========================================
   HERO
======================================== */

.hero {
  min-height: 90vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 100px 20px;

  background: linear-gradient(
    135deg,
    rgba(13, 78, 150, 0.9),
    rgba(40, 168, 234, 0.85)
  );
}

.hero h1 {
  color: white;

  font-size: 72px;

  margin-bottom: 25px;

  animation: fadeUp 1s ease;
}

.hero p {
  color: white;

  font-size: 24px;

  max-width: 850px;

  line-height: 1.8;

  animation: fadeUp 1.4s ease;
}

/* ========================================
   BUTTON
======================================== */

.btn {
  display: inline-block;

  margin-top: 35px;

  padding: 18px 35px;

  background: white;

  color: #0d4e96;

  text-decoration: none;

  font-weight: 700;

  border-radius: 50px;

  transition: 0.4s;
}

.btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTION
======================================== */

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;

  font-size: 50px;

  color: #0d4e96;

  margin-bottom: 70px;
}

/* ========================================
   CARD
======================================== */

.card-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
}

.card {
  background: white;

  padding: 40px;

  border-radius: 25px;

  text-align: center;

  transition: 0.5s;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 60px;

  margin-bottom: 25px;

  color: #0d4e96;

  transition: 0.4s;
}

.card:hover i {
  transform: scale(1.2);
}

.card h3 {
  margin-bottom: 20px;

  font-size: 28px;

  color: #0d4e96;
}

.card p {
  line-height: 1.8;
}

/* ========================================
   STATISTICS
======================================== */

.stats {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.stat-box {
  background: white;

  padding: 40px;

  border-radius: 25px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h2 {
  font-size: 60px;

  color: #0d4e96;
}

.stat-box p {
  margin-top: 10px;

  font-size: 20px;
}

/* ========================================
   FOOTER
======================================== */

.simple-footer {
  background: #0d2f4f;

  color: white;

  text-align: center;

  padding: 35px;

  margin-top: 100px;

  font-size: 18px;
}

/* ========================================
   WHATSAPP
======================================== */

.whatsapp {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  text-decoration: none;

  background: #25d366;

  color: white;

  font-size: 34px;

  animation: pulse 1.8s infinite;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========================================
   ANIMATION
======================================== */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }
}
/* =====================================================
   DOKTER PAGE - PREMIUM 2026
===================================================== */

.doctor-hero {
  padding-top: 78px;
  min-height: 430px;

  display: flex;
  align-items: center;

  background: linear-gradient(135deg, #063c52, #087461);

  color: white;
}

.doctor-hero-content {
  padding: 80px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 13px;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 30px;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb i {
  font-size: 9px;
}

.doctor-hero .hero-label {
  margin-bottom: 18px;
}

.doctor-hero h1 {
  font-size: clamp(40px, 6vw, 65px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.doctor-hero h1 span {
  color: #67d9c4;
}

.doctor-hero p {
  max-width: 650px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   DOCTOR MAIN
===================================================== */

.doctor-page {
  background: #f6f9fa;
  padding: 80px 0 100px;
}

/* =====================================================
   INFO BANNER
===================================================== */

.doctor-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 22px 25px;

  background: #eaf8f5;

  border: 1px solid #c9ebe4;

  border-radius: 16px;

  margin-bottom: 30px;
}

.info-banner-icon {
  min-width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #0b8f78;
  color: white;

  font-size: 20px;
}

.doctor-info-banner strong {
  display: block;

  color: #075c50;

  margin-bottom: 4px;
}

.doctor-info-banner p {
  color: #53706b;
  font-size: 13px;
}

/* =====================================================
   STATISTICS
===================================================== */

.doctor-statistics {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-bottom: 70px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;

  background: white;

  border: 1px solid #e5e9eb;

  border-radius: 16px;

  padding: 22px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.stat-icon {
  min-width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #e9f7f4;

  color: #0b8f78;

  font-size: 21px;
}

.stat-card strong {
  display: block;

  font-size: 22px;

  color: #073f58;
}

.stat-card span {
  display: block;

  font-size: 11px;

  color: #71808a;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.page-section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 30px;
}

.page-section-heading h2 {
  font-size: clamp(30px, 4vw, 43px);

  line-height: 1.2;
}

.page-section-heading h2 span {
  color: #0b8f78;
}

.register-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 20px;

  background: #0b8f78;

  color: white;

  border-radius: 9px;

  font-size: 13px;

  font-weight: 700;

  transition: 0.3s;
}

.register-button:hover {
  background: #076e5d;

  transform: translateY(-2px);
}

/* =====================================================
   FILTER
===================================================== */

.schedule-filter {
  display: grid;

  grid-template-columns: 1fr 220px 180px;

  gap: 12px;

  padding: 18px;

  background: white;

  border: 1px solid #e3e8ea;

  border-radius: 16px;

  margin-bottom: 20px;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;

  left: 16px;
  top: 50%;

  transform: translateY(-50%);

  color: #89959a;
}

.search-box input,
.schedule-filter select {
  width: 100%;

  height: 48px;

  border: 1px solid #dfe5e7;

  border-radius: 9px;

  background: white;

  padding: 0 15px;

  outline: none;

  font-family: inherit;

  color: #25343b;
}

.search-box input {
  padding-left: 44px;
}

.search-box input:focus,
.schedule-filter select:focus {
  border-color: #0b8f78;

  box-shadow: 0 0 0 3px rgba(11, 143, 120, 0.1);
}

/* =====================================================
   TABLE
===================================================== */

.schedule-wrapper {
  background: white;

  border: 1px solid #dfe5e7;

  border-radius: 18px;

  overflow: auto;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.schedule-table {
  width: 100%;

  min-width: 1250px;

  border-collapse: collapse;

  font-size: 12px;
}

.schedule-table thead {
  background: linear-gradient(135deg, #063f59, #087461);

  color: white;
}

.schedule-table th {
  padding: 16px 10px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-align: center;

  white-space: nowrap;
}

.schedule-table th:nth-child(2),
.schedule-table th:nth-child(3) {
  text-align: left;
}

.schedule-table td {
  padding: 17px 10px;

  border-bottom: 1px solid #edf0f1;

  text-align: center;

  vertical-align: middle;

  color: #526067;
}

.schedule-table td:nth-child(2),
.schedule-table td:nth-child(3) {
  text-align: left;
}

.schedule-table tbody tr {
  transition: 0.2s;
}

.schedule-table tbody tr:hover {
  background: #f2faf8;
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table td:first-child {
  color: #8b989d;

  font-weight: 700;
}

.schedule-table td:nth-child(3) {
  min-width: 210px;

  color: #263a42;
}

.clinic-badge {
  display: inline-block;

  padding: 6px 9px;

  border-radius: 6px;

  background: #e8f6f3;

  color: #087461;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.3;
}

.time {
  display: inline-block;

  padding: 6px 8px;

  border-radius: 6px;

  background: #f1f6f7;

  color: #24424a;

  font-weight: 600;

  white-space: nowrap;
}

.time small {
  display: block;

  margin-top: 3px;

  color: #0b8f78;

  font-size: 8px;
}

.sunday-note {
  background: #fff6e7;

  color: #8b5b14;
}

/* =====================================================
   MOBILE SCHEDULE
===================================================== */

.mobile-schedule {
  display: none;
}

/* =====================================================
   WARNING
===================================================== */

.schedule-warning {
  display: flex;

  gap: 15px;

  margin-top: 25px;

  padding: 20px 22px;

  background: #fff7e8;

  border: 1px solid #f5dfae;

  border-radius: 14px;

  color: #77571d;
}

.schedule-warning > i {
  font-size: 21px;

  color: #d89b22;

  margin-top: 2px;
}

.schedule-warning strong {
  display: block;

  margin-bottom: 3px;
}

.schedule-warning p {
  font-size: 12px;

  color: #856b3a;
}

/* =====================================================
   REGISTRATION
===================================================== */

.registration-box {
  margin-top: 70px;

  padding: 45px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-radius: 22px;

  background: linear-gradient(135deg, #063e58, #087461);

  color: white;

  overflow: hidden;

  position: relative;
}

.registration-box::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  border: 50px solid rgba(255, 255, 255, 0.05);

  right: -100px;
  bottom: -150px;
}

.registration-content {
  position: relative;

  z-index: 1;
}

.registration-content > span {
  font-size: 11px;

  letter-spacing: 2px;

  font-weight: 800;

  color: #70ddc7;
}

.registration-content h2 {
  margin: 8px 0;

  font-size: 30px;
}

.registration-content p {
  font-size: 13px;

  color: rgba(255, 255, 255, 0.75);
}

.registration-button-large {
  position: relative;

  z-index: 1;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 17px 25px;

  border-radius: 10px;

  background: #25d366;

  color: white;

  font-weight: 800;

  white-space: nowrap;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transition: 0.3s;
}

.registration-button-large:hover {
  transform: translateY(-3px);

  background: #1ebe5d;
}

/* =====================================================
   DOCTOR PAGE RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .doctor-statistics {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-filter {
    grid-template-columns: 1fr 1fr;
  }

  .search-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .doctor-hero {
    min-height: 400px;
  }

  .doctor-page {
    padding: 55px 0 70px;
  }

  .doctor-statistics {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .page-section-heading {
    align-items: flex-start;

    flex-direction: column;
  }

  .schedule-filter {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-column: auto;
  }

  .schedule-wrapper {
    display: none;
  }

  .mobile-schedule {
    display: grid;

    grid-template-columns: 1fr;

    gap: 15px;
  }

  .mobile-card {
    background: white;

    border: 1px solid #e3e8ea;

    border-radius: 16px;

    padding: 22px;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.04);
  }

  .mobile-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;
  }

  .mobile-card h3 {
    font-size: 16px;

    color: #263a42;

    margin-bottom: 15px;
  }

  .mobile-schedule-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 11px 0;

    border-top: 1px solid #edf0f1;

    font-size: 12px;
  }

  .mobile-schedule-item span {
    color: #68777d;
  }

  .mobile-schedule-item i {
    color: #0b8f78;

    margin-right: 5px;
  }

  .mobile-schedule-item strong {
    color: #087461;

    text-align: right;
  }

  .mobile-card small {
    display: block;

    color: #a67825;

    font-size: 10px;

    margin-top: 4px;
  }

  .mobile-card hr {
    border: none;

    border-top: 1px solid #edf0f1;

    margin: 20px 0;
  }

  .schedule-warning {
    margin-top: 20px;
  }

  .registration-box {
    padding: 30px 25px;

    flex-direction: column;

    align-items: flex-start;
  }

  .registration-content h2 {
    font-size: 25px;
  }

  .registration-button-large {
    width: 100%;

    justify-content: center;
  }
}
/* ===========================
   DOKTER.HTML - SUPER PREMIUM
=========================== */

.doctor-hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.doctor-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.doctor-hero p {
  font-size: 22px;
  opacity: 0.9;
}

.doctor-section {
  padding: 80px 8%;
  background: #f5f9ff;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}

.doctor-card {
  background: white;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0d4e96, #1ea0e6);
}

.doctor-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.doctor-card i {
  font-size: 60px;
  color: #0d4e96;
  margin-bottom: 20px;
}

.doctor-card h3 {
  font-size: 32px;
  color: #0d4e96;
  margin-bottom: 10px;
}

.doctor-card span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #555;
  margin-bottom: 25px;
}

.doctor-card p {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.doctor-card a {
  display: block;
  text-align: center;
  margin-top: 25px;
  padding: 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.doctor-card a:hover {
  transform: scale(1.05);
}

.simple-footer {
  background: #12364d;
  color: white;
  text-align: center;
  padding: 35px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .doctor-hero h1 {
    font-size: 40px;
  }

  .doctor-hero p {
    font-size: 18px;
  }

  .doctor-card h3 {
    font-size: 26px;
  }

  .doctor-card span {
    font-size: 18px;
  }
}
/* FASILITAS */

.facility-hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);

  color: white;

  text-align: center;

  padding: 120px 20px;
}

.facility-hero h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.facility-section {
  padding: 80px 8%;

  background: #f5f9ff;
}

.facility-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.facility-card {
  background: white;

  padding: 50px 30px;

  border-radius: 30px;

  text-align: center;

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.facility-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.facility-card i {
  font-size: 70px;

  color: #0d4e96;

  margin-bottom: 25px;
}

.facility-card h3 {
  color: #0d4e96;

  font-size: 30px;

  margin-bottom: 15px;
}

.facility-card p {
  color: #666;

  line-height: 1.8;
}
/* ==========================
   INFORMASI
========================== */

.info-hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);

  color: white;

  text-align: center;

  padding: 120px 20px;
}

.info-hero h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.info-hero p {
  font-size: 22px;
}

.info-section {
  padding: 80px 8%;

  background: #f5f9ff;
}

.info-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.info-card {
  background: white;

  padding: 50px 30px;

  border-radius: 30px;

  text-align: center;

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.info-card i {
  font-size: 70px;

  color: #0d4e96;

  margin-bottom: 25px;
}

.info-card h3 {
  color: #0d4e96;

  margin-bottom: 15px;

  font-size: 28px;
}

.info-card p {
  color: #666;

  line-height: 1.8;
}
/* ======================
TENTANG
====================== */

.about-hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);

  color: white;

  text-align: center;

  padding: 120px 20px;
}

.about-hero h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.about-hero p {
  font-size: 22px;
}

.about-section {
  padding: 80px 8%;

  background: #f5f9ff;
}

.about-content {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 30px;
}

.about-card {
  background: white;

  padding: 50px 35px;

  border-radius: 30px;

  text-align: center;

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-card i {
  font-size: 70px;

  color: #0d4e96;

  margin-bottom: 25px;
}

.about-card h2 {
  color: #0d4e96;

  margin-bottom: 20px;
}

.about-card p {
  line-height: 1.8;

  color: #666;
}

.achievement {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;

  padding: 80px 8%;
}

.achievement-box {
  background: white;

  padding: 40px;

  text-align: center;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.achievement-box h2 {
  font-size: 50px;

  color: #0d4e96;
}

.achievement-box p {
  font-size: 20px;

  color: #666;
}
/* =====================
   KONTAK
===================== */

.contact-hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);

  color: white;

  text-align: center;

  padding: 120px 20px;
}

.contact-hero h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.contact-section {
  padding: 80px 8%;

  background: #f5f9ff;
}

.contact-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.contact-card {
  background: white;

  padding: 50px 30px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-15px);
}

.contact-card i {
  font-size: 70px;

  color: #0d4e96;

  margin-bottom: 20px;
}

.contact-card h3 {
  color: #0d4e96;

  margin-bottom: 15px;
}

.contact-card a {
  display: inline-block;

  margin-top: 20px;

  padding: 14px 25px;

  border-radius: 50px;

  background: #25d366;

  color: white;

  text-decoration: none;
}

.social-section {
  padding: 80px 20px;

  text-align: center;
}

.social-section h2 {
  color: #0d4e96;

  margin-bottom: 40px;
}

.social-icons {
  display: flex;

  justify-content: center;

  gap: 30px;
}

.social-icons a {
  width: 80px;

  height: 80px;

  background: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: 0.4s;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons i {
  font-size: 35px;

  color: #0d4e96;
}
/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f9ff;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   NAVBAR
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text h1 {
  color: #0d4e96;
  font-size: 30px;
}

.logo-text p {
  color: #666;
  font-size: 14px;
}

/* =========================
   MENU
========================= */

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #0d4e96;
}

/* =========================
   HERO
========================= */

.hero {
  background: linear-gradient(135deg, #0d4e96, #1ea0e6);
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  max-width: 800px;
  margin: auto;
}

/* =========================
   BUTTON
========================= */

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  background: #0d4e96;
  color: white;
  font-weight: 700;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-5px);
}

/* =========================
   SECTION
========================= */

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 46px;
  color: #0d4e96;
  margin-bottom: 60px;
}

/* =========================
   CARD
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-15px);
}

.card i {
  font-size: 70px;
  color: #0d4e96;
  margin-bottom: 25px;
}

.card h3 {
  color: #0d4e96;
  margin-bottom: 20px;
}

.card p {
  color: #666;
}

/* =========================
   FOOTER
========================= */

.simple-footer {
  background: #12364d;
  color: white;
  text-align: center;
  padding: 35px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 65px;
  height: 65px;

  background: #25d366;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  z-index: 999;
}

.whatsapp i {
  color: white;
  font-size: 34px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 20px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .logo {
    flex-direction: column;
    text-align: center;
  }

  .logo-text h1 {
    font-size: 24px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .card {
    padding: 30px;
  }
}
/* =========================================================
   MEDISSINA - INDEX.HTML
   PREMIUM HOSPITAL STYLE
========================================================= */

/* =========================================================
   1. RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f9fd;
  color: #1d2939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   2. CONTAINER
========================================================= */

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* =========================================================
   3. HEADER
========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow: 0 5px 25px rgba(13, 78, 150, 0.08);
}

.navbar {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

/* =========================================================
   4. LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;

  flex-shrink: 0;
}

.logo img {
  width: 62px;
  height: 62px;

  object-fit: contain;

  transition: 0.4s ease;
}

.logo:hover img {
  transform: scale(1.08) rotate(-2deg);
}

.logo-text h1 {
  font-size: 26px;
  letter-spacing: 1px;
  color: #0d4e96;
}

.logo-text p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #667085;
}

/* =========================================================
   5. NAVIGATION
========================================================= */

.nav-menu {
  display: flex;
  align-items: center;

  gap: 30px;

  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  position: relative;

  color: #344054;

  font-size: 15px;
  font-weight: 700;

  padding: 10px 0;

  transition: 0.3s ease;
}

.nav-menu a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 3px;

  border-radius: 10px;

  background: linear-gradient(90deg, #0d4e96, #21a5ed);

  transform: translateX(-50%);

  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #0d4e96;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* =========================================================
   6. HERO
========================================================= */

.hero {
  position: relative;

  min-height: calc(100vh - 88px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 100px 20px 80px;

  text-align: center;

  color: white;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(135deg, #073d78 0%, #0d5da8 45%, #1fa5ed 100%);
}

/* =========================================================
   HERO DECORATION
========================================================= */

.hero::before,
.hero::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.hero::before {
  width: 450px;
  height: 450px;

  top: -220px;
  right: -120px;

  background: rgba(255, 255, 255, 0.08);

  animation: floatingCircle 8s ease-in-out infinite;
}

.hero::after {
  width: 350px;
  height: 350px;

  bottom: -200px;
  left: -100px;

  background: rgba(255, 255, 255, 0.07);

  animation: floatingCircle 10s ease-in-out infinite reverse;
}

@keyframes floatingCircle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-25px) scale(1.05);
  }
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1150px;

  margin: auto;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);

  line-height: 1.05;

  letter-spacing: 2px;

  margin-bottom: 25px;

  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

  animation: heroTitle 1s ease forwards;
}

.hero p {
  max-width: 800px;

  margin: 0 auto 35px;

  font-size: clamp(18px, 2.2vw, 26px);

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.92);

  animation: heroText 1.2s ease forwards;
}

@keyframes heroTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   7. SLIDER PROMO
========================================================= */

.slider-box {
  position: relative;

  width: 100%;
  max-width: 900px;

  margin: 35px auto 40px;

  overflow: hidden;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

/* garis cahaya */

.slider-box::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 70%;
  height: 2px;

  background: white;

  opacity: 0.7;

  animation: lightMove 5s linear infinite;

  z-index: 2;
}

@keyframes lightMove {
  0% {
    left: -100%;
  }

  100% {
    left: 130%;
  }
}

/* track */

.slider-track {
  display: flex;

  width: 500%;

  animation: autoSlider 20s infinite;
}

/* setiap slide */

.slide {
  width: 20%;

  min-height: 100px;

  padding: 28px 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: clamp(17px, 2vw, 23px);

  font-weight: 700;

  color: white;

  text-align: center;

  flex-shrink: 0;
}

/* =========================================================
   SLIDER ANIMATION
========================================================= */

@keyframes autoSlider {
  0%,
  16% {
    transform: translateX(0);
  }

  20%,
  36% {
    transform: translateX(-20%);
  }

  40%,
  56% {
    transform: translateX(-40%);
  }

  60%,
  76% {
    transform: translateX(-60%);
  }

  80%,
  96% {
    transform: translateX(-80%);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================================
   8. HERO BUTTON
========================================================= */

.hero-button {
  margin-bottom: 55px;
}

.hero-button .btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 230px;

  padding: 17px 30px;

  border-radius: 50px;

  background: white;

  color: #0d4e96;

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 0.5px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-button .btn:hover {
  transform: translateY(-6px) scale(1.03);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   9. HERO STATISTICS
========================================================= */

.hero-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  max-width: 1000px;

  margin: auto;
}

.stat-box {
  position: relative;

  padding: 30px 20px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  overflow: hidden;

  transition:
    transform 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.stat-box::before {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  top: -50px;
  right: -50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  transition: 0.5s;
}

.stat-box:hover {
  transform: translateY(-12px) scale(1.03);

  background: rgba(255, 255, 255, 0.2);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.stat-box:hover::before {
  transform: scale(2);
}

.stat-box i {
  display: block;

  margin-bottom: 15px;

  font-size: 35px;

  color: white;

  transition: transform 0.45s ease;
}

.stat-box:hover i {
  transform: scale(1.25) rotate(5deg);
}

.stat-box h2 {
  font-size: 38px;

  line-height: 1;

  margin-bottom: 10px;
}

.stat-box p {
  margin: 0;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   10. SECTION
========================================================= */

.section {
  padding: 100px 0;

  background: #f5f9fd;
}

.section:nth-of-type(even) {
  background: white;
}

.section-title {
  position: relative;

  text-align: center;

  color: #0d4e96;

  font-size: clamp(32px, 4vw, 48px);

  margin-bottom: 60px;
}

.section-title::after {
  content: "";

  display: block;

  width: 70px;
  height: 4px;

  margin: 18px auto 0;

  border-radius: 20px;

  background: linear-gradient(90deg, #0d4e96, #20a4eb);
}

/* =========================================================
   11. CARD GRID
========================================================= */

.card-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 28px;
}

/* =========================================================
   12. PREMIUM CARD
========================================================= */

.card {
  position: relative;

  min-height: 210px;

  padding: 38px 28px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: white;

  border-radius: 28px;

  border: 1px solid rgba(13, 78, 150, 0.07);

  box-shadow: 0 12px 35px rgba(13, 78, 150, 0.08);

  overflow: hidden;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* efek garis atas */

.card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, #0d4e96, #20a4eb);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.45s ease;
}

/* lingkaran dekorasi */

.card::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  right: -70px;
  bottom: -70px;

  border-radius: 50%;

  background: rgba(30, 160, 230, 0.06);

  transition: 0.5s ease;
}

.card:hover {
  transform: translateY(-14px) scale(1.02);

  border-color: rgba(30, 160, 230, 0.2);

  box-shadow: 0 25px 60px rgba(13, 78, 150, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  transform: scale(1.8);
}

/* =========================================================
   13. CARD ICON
========================================================= */

.card i {
  position: relative;
  z-index: 2;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 78px;
  height: 78px;

  margin-bottom: 22px;

  border-radius: 22px;

  color: #0d4e96;

  background: linear-gradient(135deg, #edf7ff, #dff1ff);

  font-size: 34px;

  transition:
    transform 0.45s ease,
    background 0.45s ease,
    color 0.45s ease;
}

.card:hover i {
  transform: scale(1.18) rotate(-4deg);

  color: white;

  background: linear-gradient(135deg, #0d4e96, #20a4eb);
}

/* =========================================================
   14. CARD TITLE
========================================================= */

.card h3 {
  position: relative;
  z-index: 2;

  color: #0d4e96;

  font-size: 21px;

  margin-bottom: 8px;
}

.card p {
  position: relative;
  z-index: 2;

  color: #667085;

  line-height: 1.7;
}

/* =========================================================
   15. FOOTER
========================================================= */

.simple-footer {
  padding: 35px 20px;

  text-align: center;

  color: rgba(255, 255, 255, 0.85);

  background: #0b3049;

  font-size: 14px;
}

/* =========================================================
   16. FLOATING WHATSAPP
========================================================= */

.whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;

  color: white;

  font-size: 31px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);

  z-index: 9998;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.whatsapp:hover {
  transform: scale(1.15) translateY(-5px);

  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
}

/* =========================================================
   17. WHATSAPP PULSE
========================================================= */

.whatsapp::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, 0.5);

  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* =========================================================
   18. SCROLL ANIMATION
========================================================= */

.hidden {
  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.show {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;

    padding: 18px 0;
  }

  .nav-menu {
    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;
  }

  .hero {
    min-height: auto;

    padding: 90px 20px 70px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  .navbar {
    gap: 18px;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .logo-text p {
    font-size: 9px;
  }

  .nav-menu {
    gap: 12px 18px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .hero {
    padding: 80px 15px 60px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero p {
    font-size: 18px;

    margin-bottom: 25px;
  }

  .slider-box {
    margin: 25px auto 30px;

    border-radius: 18px;
  }

  .slide {
    min-height: 110px;

    padding: 20px;

    font-size: 16px;
  }

  .hero-button {
    margin-bottom: 35px;
  }

  .hero-button .btn {
    width: 100%;

    min-width: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;

    gap: 12px;
  }

  .stat-box {
    padding: 23px 12px;

    border-radius: 18px;
  }

  .stat-box i {
    font-size: 26px;
  }

  .stat-box h2 {
    font-size: 27px;
  }

  .stat-box p {
    font-size: 12px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .card {
    min-height: 190px;
  }

  .whatsapp {
    width: 58px;
    height: 58px;

    right: 18px;
    bottom: 18px;

    font-size: 28px;
  }
}

/* =========================================================
   21. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }
}
.page-hero {
  padding: 120px 20px;

  text-align: center;

  color: white;

  background: linear-gradient(135deg, #0d4e96, #20a4eb);
}

.page-hero h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.about-card,
.vision-box,
.goal-card,
.value-card,
.mission-card {
  background: white;

  padding: 35px;

  border-radius: 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.about-card:hover,
.goal-card:hover,
.value-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
}

.bg-light {
  background: #f7fbff;
}

.mission-grid,
.goal-grid,
.value-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.mission-card i {
  font-size: 40px;

  margin-bottom: 20px;

  color: #0d4e96;
}

.vision-box {
  text-align: center;

  font-size: 24px;

  font-weight: 600;
}

.value-card {
  text-align: center;

  font-weight: 700;
}
.service-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.service-card {
  background: white;

  padding: 40px 30px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.service-card i {
  font-size: 55px;

  color: #0d4e96;

  margin-bottom: 25px;

  transition: 0.4s;
}

.service-card:hover i {
  transform: scale(1.2);
}

.service-card h3 {
  margin-bottom: 20px;

  color: #0d4e96;
}

.service-card p {
  line-height: 1.8;

  margin-bottom: 30px;
}

.service-card a {
  display: inline-block;

  padding: 14px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, #0d4e96, #20a4eb);

  color: white;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.service-card a:hover {
  transform: scale(1.05);
}
.doctor-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

.doctor-card {
  background: white;

  padding: 35px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.doctor-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.doctor-card i {
  font-size: 60px;

  margin-bottom: 20px;
}

.doctor-card h3 {
  color: #0d4e96;

  margin-bottom: 15px;
}

.doctor-card p {
  line-height: 1.8;

  margin-bottom: 25px;
}

.doctor-card a {
  display: inline-block;

  padding: 14px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, #0d4e96, #20a4eb);

  color: white;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.doctor-card a:hover {
  transform: scale(1.05);
}
