body {
    font-family: 'inter', sans-serif;
    background-color: #f5f9ff;
    margin: 0;
    padding-top: 60px;
}

.logo {
    height: 40px;
}

.filter-bar {
    background-color: #e6f0ff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.filter-input {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #3e7bed;
    padding: 10px 15px;
    border-radius: 12px;
    flex: 1 1 250px;
}

.filter-input input {
    border: none;
    outline: none;
    font-size: 16px;
    flex: 1;
    margin-left: 10px;
}

.search-btn {
    background-color: #00379e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
    max-width: 130px;
}

.alert-bar {
    background-color: #e6f0ff;
    padding: 10px 20px;
    border-radius: 12px;
    color: #00379e;
    margin-bottom: 20px;
    font-size: 14px;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 55, 158, 0.1);
    padding: 20px;
    margin-bottom: 16px;
}

.job-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 600px) {
    .job-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.job-info h3 {
    margin: 0;
    color: #00379e;
    font-weight: 700;
    font-size: 1.2rem;
}

.job-info .date {
    font-size: 14px;
    color: #888;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.badge {
    background-color: #3e7bed;
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.tag {
    display: flex;
    align-items: center;
    background-color: #e6f0ff;
    color: #00379e;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    gap: 4px;
}

.detail-btn {
    background-color: #00379e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
}

.lamar-btn {
    background-color: #00379e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
}

.detail-content {
    display: none;
    margin-top: 15px;
    background: #e6f0ff;
    border-radius: 12px;
    padding: 15px;
    color: #444;
}

@media (max-width: 500px) {
    .detail-btn, .lamar-btn {
        width: 100%;
        text-align: center;
    }
    .job-info h3 {
        font-size: 1rem;
    }
}

.condition-urgent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: #3e7bed;
    border-radius: 20px;
    width: 92px;
    height: 35px;
    color: white;
}

.result-info {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
    padding: 4px 10px;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination button {
    background-color: #00379e;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    margin: 0 5px;
    margin-bottom: 12px;
    cursor: pointer;
}

/* Styles for detail menu & hidden */
.prose-sm-v2 p {
    margin-bottom: 0.75rem;
}

.hidden-v2 {
    display: none;
}

.job-card-v2 {
    transition: all 0.3s ease;
}

.detail-content-v2 {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.detail-content-v2:not(.hidden-v2) {
    max-height: 2000px;
}

.pagination .page-item.active .page-link {
    background-color: #00379e;
    border-color: #00379e;
}

.pagination .page-link {
    color: #00379e;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Mobile footer */
@media (max-width: 768px) {
    .mobile-footer {
        bottom: 40px;
        height: 180px;
        left: 0;
        right: 0;
        z-index: 10;
        margin: 0 0px;
        border-radius: 0px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Homepage cards */
.beranda-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 5px;
}

   .beranda-card-image {
            width: 100%;
            height: 200px;
            /* Atur tinggi gambar */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
          }

.beranda-card-link {
    text-decoration: none;
}

.beranda-card {
    background: transparent;
    box-shadow: 0px 8px 28px -9px rgba(0, 55, 158, 0.2);
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.beranda-card:hover {
    transform: scale(1.05);
}

.beranda-card-wave {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.09;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, #00379e, #ffffff 60%, #3e7bed);
    border-radius: 40%;
    animation: beranda-card-wave 5s infinite linear;
}

.beranda-card-wave:nth-child(2),
.beranda-card-wave:nth-child(3) {
    top: 210px;
}

@keyframes beranda-card-wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.beranda-card-icon {
    width: 3em;
    margin-top: -5em;
    padding-bottom: 1em;
}

.beranda-card-info {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 5.6em;
    left: 0;
    right: 0;
    color: #00379e;
    font-weight: 600;
}

.beranda-card-name {
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: 1em;
    text-transform: lowercase;
}

* {
    box-sizing: border-box;
}

.body-beranda-samuel {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f9ff;
}

section.card-beranda-samuel {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 7 / 4;
    background-color: #3e7bed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-beranda-samuel img.card-image-beranda-samuel {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.card-beranda-samuel:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 55, 158, 0.3);
}

.card__content-beranda-samuel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 55, 158, 0.9);
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-beranda-samuel:hover .card__content-beranda-samuel {
    transform: rotateX(0deg);
}

.card__title-beranda-samuel {
    margin: 0;
    padding-left: 5px;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.card__description-beranda-samuel {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
}

/* Button styles */
button-beranda {
    position: relative;
    padding: 13px 35px;
    font-size: 17px;
    font-weight: 900;
    color: #181818;
    border: none;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 55, 158, 0.2);
    transition: all .3s ease-in-out;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 400px) {
    .card__title-beranda-samuel {
        font-size: 1.2rem;
    }
    .card__description-beranda-samuel {
        font-size: 0.8rem;
    }
}




/* pencarian dokter=---------------------------------------- */
body.body-cari-jdwl-dokter {
    /* font-family: Arial, sans-serif; */
    background: #e20000;
    margin: 0;
    padding: 30px;
  }

  .search-card-cari-jdwl-dokter {
    background: hsl(0, 0%, 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 30px;
    max-width: 1000px;
    margin-top: -11130px;
    margin-bottom: 20px;
    z-index: 20;
  }

  .input-row-cari-jdwl-dokter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .input-wrapper-cari-jdwl-dokter {
    position: relative;
    flex: 1 1 32%;
    min-width: 200px;
  }

  .input-wrapper-cari-jdwl-dokter input {
    width: 100%;
    padding: 15px 40px 15px 15px;
    font-size: 16px;
    border: 2px solid rgb(163, 163, 165);
    border-radius: 10px;
    background: #ffffff;
    box-sizing: border-box;
    height: 60px;
  }

  .input-wrapper-cari-jdwl-dokter svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: #3399ff;
  }

  .button-row-cari-jdwl-dokter {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }

  .button-row-cari-jdwl-dokter button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .show-button-cari-jdwl-dokter {
    background: #014486;
    color: #fff;
    font-weight: bold;
  }

  .reset-button-cari-jdwl-dokter {
    background: #f53e3e;
    color: #fff;
    font-weight: bold;
  }

  .button-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }

  .doctor-list-cari-jdwl-dokter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .doctor-card-cari-jdwl-dokter {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 100px;
  }

  .doctor-card-cari-jdwl-dokter:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .doctor-info-cari-jdwl-dokter {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .doctor-info-cari-jdwl-dokter img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  }

  .doctor-text-cari-jdwl-dokter .name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .doctor-text-cari-jdwl-dokter .specialty,
  .doctor-text-cari-jdwl-dokter .schedule {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
  }

  .book-button-cari-jdwl-dokter {
    padding: 12px 24px;
    font-size: 16px;
    border: 2px solid #3399ff;
    background: #fff;
    color: #3399ff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    min-width: 120px;
  }

  .book-button-cari-jdwl-dokter:hover {
    background: #3399ff;
    color: #fff;
  }

  .schedule-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .schedule-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .schedule-title {
    font-size: 24px;
    font-weight: bold;
    color: #3399ff;
  }

  .close-schedule {
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }

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

  .weekly-schedule th {
    background: #3399ff;
    color: white;
    padding: 12px;
    text-align: center;
  }

  .weekly-schedule td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
  }

  .available {
    background: #e6f7e6;
    color: #2e7d32;
    font-weight: bold;
  }

  .not-available {
    background: #ffebee;
    color: #c62828;
  }

  @media (max-width: 768px) {
    .input-row-cari-jdwl-dokter {
      flex-direction: column;
    }

    .button-row-cari-jdwl-dokter {
      flex-direction: column;
      align-items: stretch;
    }

    .button-row-cari-jdwl-dokter button {
      width: 100%;
    }

    .schedule-content {
      width: 95%;
      padding: 15px;
    }
  }



  /* layanan Excellence---------------------------------------- */

    /* Excellence Base Styles */
    .excellence-body {
      background-color: #fcf8f8;
      padding: 30px 20px;
      max-width: 1200px;
      margin: 0 auto;
      margin-left: 200px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Excellence Header */
    .excellence-header {
      text-align: center;
      margin-bottom: 10px;
      margin-left: 100px;
      margin-right: 100px;

      padding: 0 5px;
    }

    .excellence-header h1 {
      color: #000000;
      font-size: clamp(26px, 5vw, 32px);
      margin-bottom: 12px;
      font-weight: 700;
      letter-spacing: -0.5px;
      /* background: #8fd0ee; */
    }

    .excellence-header p {
      color: #4b5563;
      font-size: clamp(14px, 3vw, 16px);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Excellence Slider Container */
    .excellence-slider {
      width: 100%;
      margin: 0 auto;
      padding: 10px 0;
      overflow: hidden;
    }

    /* Excellence Cards Wrapper */
    .excellence-cards {
      display: flex;
      gap: 20px;
      padding: 15px 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      scrollbar-color: #cbd5e1 #f1f5f9;
      cursor: grab;
    }

    .excellence-cards:active {
      cursor: grabbing;
    }

    .excellence-cards::-webkit-scrollbar {
      height: 6px;
    }

    .excellence-cards::-webkit-scrollbar-track {
      background: #f1f5f9;
      border-radius: 10px;
    }

    .excellence-cards::-webkit-scrollbar-thumb {
      background-color: #cbd5e1;
      border-radius: 10px;
    }

    /* Excellence Card */
    .excellence-card {
      min-width: 280px;
      max-width: 320px;
      width: calc(100vw - 60px);
      scroll-snap-align: start;
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      flex: 0 0 auto;
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .excellence-card {
        min-width: 300px;
        width: auto;
      }
    }

    .excellence-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
    }

    .excellence-card-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-bottom: 1px solid #e2e8f0;
    }

    .excellence-card-content {
      padding: 18px;
    }

    .excellence-card h3 {
      color: #1e40af;
      font-size: 16px;
      margin-bottom: 10px;
      font-weight: 600;
      line-height: 1.4;
    }

    .excellence-card p {
      color: #4b5563;
      font-size: 14px;
      margin-bottom: 16px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .excellence-readmore {
      display: inline-flex;
      align-items: center;
      color: #3b82f6;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .excellence-readmore:hover {
      color: #1d4ed8;
      text-decoration: underline;
    }

    .excellence-readmore::after {
      content: '→';
      margin-left: 6px;
      transition: transform 0.2s;
    }

    .excellence-readmore:hover::after {
      transform: translateX(3px);
    }

    /* Excellence CTA Button */
    .excellence-cta {
      display: block;
      width: 100%;
      max-width: 280px;
      margin: 40px auto 30px;
      padding: 14px;
      background-color: #3b82f6;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .excellence-cta:hover {
      background-color: #2563eb;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* Excellence View All */
    .excellence-viewall {
      text-align: center;
      margin-top: 30px;
    }

    .excellence-viewall a {
      color: #3b82f6;
      font-weight: 600;
      text-decoration: none;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
    }

    .excellence-viewall a:hover {
      text-decoration: underline;
    }

    .excellence-viewall a::after {
      content: '→';
      margin-left: 6px;
      transition: transform 0.2s;
    }

    .excellence-viewall a:hover::after {
      transform: translateX(3px);
    }
