/*
 * ============================================================
 * Bethsaida Hospital — Urology & Nephrology Clinic
 * WYSIWYG External Stylesheet
 * ============================================================
 *
 * File:
 * uro-nephrology-clinic-clean.css
 *
 * Dipanggil dari HTML WYSIWYG melalui:
 * https://www.bethsaidahospitals.com/assets/img/center/uro-nephrology-clinic-clean.css
 *
 * Seluruh section documentation dari source dipertahankan.
 */

/* =========================================================
   CSS SECTION 01 — DESIGN TOKENS / GLOBAL
   Brand color, typography color, shadow, dan radius.
========================================================= */

:root {
    --bethsaida-blue: #003d83;
    --bethsaida-blue-dark: #071a3a;
    --bethsaida-blue-2: #203e76;
    --bethsaida-red: #ed1c24;
    --bethsaida-soft: #f4f8ff;
    --bethsaida-soft-blue: #eaf3ff;
    --bethsaida-text: #1e2a3a;
    --bethsaida-muted: #6c7a89;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(0, 61, 131, 0.12);
    --shadow-hover: 0 28px 70px rgba(0, 61, 131, 0.22);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-pill: 999px;
  }
  body {
    color: var(--bethsaida-text);
  }


  /* =========================================================
   CSS SECTION 02 — SHARED HERO TYPOGRAPHY & BUTTONS
========================================================= */

.hvc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
  }
  .hvc-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bethsaida-red);
    box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.18);
  }
  .hvc-hero-title {
    font-size: clamp(42px, 6vw, 88px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2.8px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.9);
  }
  .hvc-hero-desc {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
  }
  .hvc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .hvc-btn-primary,
  .hvc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
  }
  .hvc-btn-primary {
    background: #fff;
    color: var(--bethsaida-blue);
  }
  .hvc-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }
  .hvc-btn-primary:hover,
  .hvc-btn-outline:hover {
    transform: translateY(-3px);
    color: var(--bethsaida-blue);
  }
  .hvc-btn-outline:hover {
    background: #fff;
  }
  .bethsaida-brand-line {
    height: 10px;
    width: 100%;
    background: linear-gradient(
      90deg,
      var(--bethsaida-blue) 0%,
      var(--bethsaida-blue) 42%,
      var(--bethsaida-red) 42%,
      var(--bethsaida-red) 58%,
      var(--bethsaida-blue) 58%,
      var(--bethsaida-blue) 100%
    );
  }
  .hvc-section {
    padding: 90px 0;
    background: var(--bethsaida-soft);
  }
  .hvc-section-white {
    background: #fff;
  }
  .hvc-section-header {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
  }
  .hvc-eyebrow {
    color: var(--bethsaida-red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
  }
  .hvc-section-title {
    color: var(--bethsaida-text);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.6px;
    margin-bottom: 16px;
  }
  .hvc-section-desc {
    color: var(--bethsaida-muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
  }
  /* =========================================================
   CSS SECTION 03 — CONDITIONS & SERVICES
========================================================= */

.hvc-condition-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;

    background-image: linear-gradient(
        90deg,
        rgba(7, 26, 58, 0.94),
        rgba(0, 61, 131, 0.86)
      ),

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .hvc-condition-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 85% 20%,
        rgba(255, 255, 255, 0.18),
        transparent 26%
      ),
      radial-gradient(circle at 15% 80%, rgba(237, 28, 36, 0.26), transparent 25%);
  }
  .hvc-condition-section .container {
    position: relative;
    z-index: 2;
  }
  .hvc-condition-section .hvc-section-title,
  .hvc-condition-section .hvc-section-desc {
    color: #fff;
  }
  .hvc-condition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .hvc-condition-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: 0.25s ease;
  }
  .hvc-condition-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.15);
  }
  .hvc-condition-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bethsaida-blue);
    font-size: 28px;
    margin-bottom: 18px;
  }
  .hvc-condition-card h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 14px;
  }
  .hvc-condition-card ul {
    padding-left: 18px;
    margin: 0;
  }
  .hvc-condition-card li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 7px;
  }
  /* =========================================================
   CSS SECTION 04 — GENERIC MODAL SYSTEM
   Dipakai oleh Doctor Modal dan Facility Modal.
========================================================= */

.hvc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .hvc-modal.active {
    display: flex;
  }
  .hvc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 31, 0.72);
    backdrop-filter: blur(8px);
  }
  .hvc-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1080px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35);
  }
  .hvc-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--bethsaida-blue);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hvc-modal-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 620px;
  }
  .hvc-modal-photo {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(0, 61, 131, 0.08),
        rgba(0, 61, 131, 0.18)
      ),
      #eaf3ff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
  .hvc-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .hvc-modal-content {
    padding: 54px 54px 44px;
  }
  .hvc-modal-content h2 {
    color: var(--bethsaida-text);
    font-size: 34px;
    line-height: 1.22;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }
  .hvc-modal-specialty {
    color: var(--bethsaida-blue);
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 30px;
  }
  .hvc-modal-content h4 {
    font-size: 18px;
    font-weight: 850;
    color: var(--bethsaida-text);
    margin-bottom: 14px;
  }
  .hvc-modal-list {
    padding-left: 18px;
    margin: 0;
  }
  .hvc-modal-list li {
    color: var(--bethsaida-muted);
    line-height: 1.65;
    margin-bottom: 9px;
    font-size: 15.5px;
  }
  .hvc-modal-action {
    margin-top: 28px;
  }
  .hvc-modal-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    background: var(--bethsaida-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 14px 30px rgba(0, 61, 131, 0.22);
  }
  .hvc-modal-appointment:hover {
    background: var(--bethsaida-red);
    color: #fff;
    transform: translateY(-3px);
  }
  .hvc-cta {
    padding: 80px 0;
    background: linear-gradient(
      135deg,
      var(--bethsaida-blue),
      var(--bethsaida-blue-dark)
    );
    color: #fff;
  }
  .hvc-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .hvc-cta h2 {
    color: #eaf3ff;
    font-size: 36px;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .hvc-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    margin: 0;
  }
  @media (max-width: 991px) {
    .hvc-hero {
      min-height: 74vh;
      background-attachment: scroll;

      background-position: center center;
    }
    .hvc-condition-section {
      background-attachment: scroll;
    }
    .hvc-condition-grid {
      grid-template-columns: 1fr;
    }
    .hvc-modal-grid {
      grid-template-columns: 1fr;
    }
    .hvc-modal-photo {
      height: 420px;
    }
    .hvc-cta-box {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media (max-width: 767px) {
    .hvc-section,
    .hvc-condition-section {
      padding: 64px 0;
    }
    .hvc-hero-title {
      letter-spacing: -1.4px;
    }
    .hvc-modal-content {
      padding: 36px 26px;
    }
    .hvc-modal-content h2 {
      font-size: 27px;
    }
  }
  /* =========================================================
   CSS SECTION 05 — UROLOGY HERO
   Hero existing dipertahankan sesuai source.
========================================================= */

.uro-hero-new {
    margin-top: 3px;
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: #071a3a;
    background-image: linear-gradient(
        90deg,
        rgba(7, 26, 58, 0.98) 0%,
        rgba(7, 26, 58, 0.92) 23%,
        rgba(0, 61, 131, 0.62) 46%,
        rgba(0, 61, 131, 0.14) 72%,
        rgba(7, 26, 58, 0.08) 100%
      ),
      url("https://www.bethsaidahospitals.com/assets/img/center/uro-nephro-hero-team.jpeg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: scroll;
    isolation: isolate;
  }
  .uro-hero-overlay {
    /* position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle at 18% 78%,
        rgba(237, 28, 36, 0.24),
        transparent 24%
      ),
      radial-gradient(
        circle at 58% 36%,
        rgba(203, 235, 251, 0.18),
        transparent 34%
      ),
      linear-gradient(
        180deg,
        rgba(7, 26, 58, 0.04) 0%,
        rgba(7, 26, 58, 0.32) 100%
      ); */
  }
  .uro-hero-new .container {
    position: relative;
    z-index: 2;
  }
  .uro-hero-content {
    width: min(720px, 100%);
    padding: 96px 0 88px;
  }
  .uro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  }
  .uro-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ed1c24;
    box-shadow: 0 0 0 7px rgba(237, 28, 36, 0.2);
  }
  .uro-hero-title {
    color: #fff;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -3.4px;
    margin: 0 0 28px;
    text-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  }
  .uro-hero-desc {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 650;
    margin: 0 0 36px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }
  .uro-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .uro-btn-primary,
  .uro-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    transition: 0.25s ease;
  }
  .uro-btn-primary {
    background: #fff;
    color: #003d83;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  }
  .uro-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
  }
  .uro-btn-primary:hover,
  .uro-btn-outline:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #003d83;
  }
  @media (max-width: 1199px) {
    .uro-hero-new {
      min-height: 720px;
      background-position: 62% center;
    }
    .uro-hero-content {
      width: min(620px, 100%);
    }
    .uro-hero-title {
      font-size: clamp(46px, 7vw, 78px);
    }
    .uro-hero-desc {
      font-size: 17px;
    }
  }
  @media (max-width: 991px) {
    .uro-hero-new {
      min-height: auto;
      align-items: flex-start;
      background-image: linear-gradient(
          180deg,
          rgba(7, 26, 58, 0.96) 0%,
          rgba(7, 26, 58, 0.86) 42%,
          rgba(0, 61, 131, 0.46) 70%,
          rgba(7, 26, 58, 0.72) 100%
        ),
        url("https://www.bethsaidahospitals.com/assets/img/center/uro-nephro-hero-team.jpeg");
      background-size: cover;
      background-position: center bottom;
    }
    .uro-hero-content {
      width: 100%;
      padding: 78px 0 420px;
    }
    .uro-hero-title {
      font-size: clamp(44px, 10vw, 72px);
      letter-spacing: -2.2px;
    }
    .uro-hero-desc {
      max-width: 620px;
      font-size: 16px;
      line-height: 1.75;
    }
  }
  @media (max-width: 767px) {
    .uro-hero-new {
      background-position: 64% bottom;
    }
    .uro-hero-content {
      padding: 64px 0 360px;
    }
    .uro-kicker {
      font-size: 12px;
      padding: 8px 15px;
      margin-bottom: 18px;
    }
    .uro-hero-title {
      font-size: clamp(40px, 13vw, 58px);
      line-height: 1.05;
      letter-spacing: -1.6px;
      margin-bottom: 20px;
    }
    .uro-hero-desc {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .uro-hero-actions {
      gap: 12px;
    }
    .uro-btn-primary,
    .uro-btn-outline {
      min-height: 48px;
      padding: 12px 22px;
      font-size: 14px;
    }
  }
  @media (max-width: 575px) {
    .uro-hero-new {
      background-position: 68% bottom;
    }
    .uro-hero-content {
      padding: 96px 0 88px;
    }
    .uro-hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }
    .uro-btn-primary,
    .uro-btn-outline {
      width: auto;
    }
  }
  @media (max-width: 420px) {
    .uro-hero-content {
      padding: 96px 0 88px;
    }
    .uro-hero-desc {
      font-size: 14.5px;
    }
  }
  /* =========================================================
   CSS SECTION 06 — OVERVIEW / SERVICE JOURNEY
========================================================= */

.un-overview {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background: radial-gradient(
        circle at 10% 12%,
        rgba(203, 235, 251, 0.75),
        transparent 28%
      ),
      radial-gradient(circle at 90% 20%, rgba(0, 61, 131, 0.08), transparent 26%),
      linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
  }
  .un-overview .container {
    position: relative;
    z-index: 2;
  }
  .un-overview .hvc-section-header {
    max-width: 860px;
    margin-bottom: 42px;
  }
  .un-row {
    margin-bottom: 24px;
  }
  .un-who-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 34px 32px 26px;
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(0, 61, 131, 0.96),
        rgba(7, 26, 58, 0.97)
      ),
      url("https://www.bethsaidahospitals.com/assets/img/center/urology-bg.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(0, 61, 131, 0.24);
  }
  .un-who-card::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
  .un-who-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 14%;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0.35;
    pointer-events: none;
  }
  .un-who-content {
    position: relative;
    z-index: 2;
  }
  .un-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }
  .un-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bethsaida-red);
    box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.2);
  }
  .un-who-title {
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
  }
  .un-who-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 26px;
    max-width: 1050px;
  }
  .un-symptom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .un-symptom-col {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    min-height: 100%;
  }
  .un-symptom-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
  }
  .un-symptom-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
  }
  .un-dark-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .un-dark-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.55;
  }
  .un-dark-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  }
  .un-highlight-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
  .un-highlight-box strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
  }
  .un-bridge-card {
    position: relative;
    min-height: 210px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 61, 131, 0.14);
  }
  .un-bridge-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
  }
  .un-bridge-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(7, 26, 58, 0.35) 0%,
      rgba(7, 26, 58, 0.08) 45%,
      rgba(7, 26, 58, 0.18) 100%
    );
  }
  .un-bridge-caption {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
    max-width: 520px;
  }
  .un-bridge-caption h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
  }
  .un-bridge-caption p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    margin: 0;
  }
  .un-service-threecol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .un-service-col {
    background: #fff;
    border-radius: 28px;
    padding: 26px 24px;
    border: 1px solid rgba(0, 61, 131, 0.07);
    box-shadow: 0 18px 45px rgba(0, 61, 131, 0.1);
    transition: 0.25s ease;
  }
  .un-service-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 61, 131, 0.16);
  }
  .un-service-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .un-service-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bethsaida-blue), #4b6bd6);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 61, 131, 0.18);
  }
  .un-service-head h4 {
    color: var(--bethsaida-blue);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 6px 0;
  }
  .un-service-head p {
    color: var(--bethsaida-muted);
    font-size: 14px;

    margin: 0;
  }
  .un-chip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .un-chip {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    background: #eef5ff;
    border: 1px solid rgba(0, 61, 131, 0.07);
  }
  .un-chip-title {
    display: block;
    color: var(--bethsaida-blue);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 3px;
    line-height: 1.35;
  }
  .un-chip-desc {
    display: block;
    color: var(--bethsaida-muted);
    font-size: 12px;
  }
  @media (max-width: 1199px) {
    .un-symptom-grid {
      grid-template-columns: 1fr;
    }
    .un-service-threecol {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 767px) {
    .un-overview {
      padding: 70px 0;
    }
    .un-who-card {
      padding: 28px 22px 22px;
      border-radius: 26px;
    }
    .un-who-title {
      font-size: 34px;
    }
    .un-who-subtitle {
      font-size: 15px;
    }
    .un-bridge-card {
      min-height: 180px;
    }
    .un-bridge-card img {
      height: 180px;
    }
    .un-bridge-caption {
      left: 18px;
      right: 18px;
      bottom: 18px;
    }
    .un-bridge-caption h4 {
      font-size: 20px;
    }
    .un-service-col {
      padding: 22px 18px;
    }
    .un-service-head h4 {
      font-size: 21px;
    }
  }
  /* =========================================================
   CSS SECTION 07 — DOCTOR SHOWCASE
========================================================= */

.hvc-doctor-showcase {
    position: relative;
    padding: 80px 0 130px;
    overflow: hidden;
    color: #fff;
    background-image: url("https://www.bethsaidahospitals.com/assets/img/center/bethsaida-serang-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .hvc-doctor-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 33, 75, 0.28);
    z-index: 1;
  }
  .hvc-doctor-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 15% 30%,
        rgba(255, 255, 255, 0.08),
        transparent 25%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 13, 35, 0.38) 100%);
    z-index: 1;
  }
  .hvc-doctor-showcase .container {
    position: relative;
    z-index: 2;
  }
  .hvc-doctor-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 0 0 10px 10px;
    background: rgba(42, 108, 184, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -80px;
    left: 15px;
  }
  .hvc-doctor-heading {
    margin-bottom: 38px;
  }
  .hvc-doctor-heading h2 {
    color: #fff;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -1.8px;
    margin: 0;
  }
  .hvc-doctor-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    max-width: 100%;
  }
  .hvc-doctor-item {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
  }
  .hvc-doctor-thumb {
    width: 118px;
    height: 118px;
    min-width: 118px;
    background: #fff;
    border-radius: 22px 0 22px 0;
    overflow: hidden;
    box-shadow: 7px 8px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.96);
  }
  .hvc-doctor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hvc-doctor-info {
    max-width: 350px;
  }
  .hvc-doctor-info h3 {
    color: #fff;
    font-size: 16.5px;
    line-height: 1.28;
    font-weight: 850;
    margin-bottom: 7px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
  .hvc-doctor-info p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14.5px;
    line-height: 1.35;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 11px;
  }
  .hvc-doctor-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
    padding-bottom: 4px;
    transition: 0.25s ease;
  }
  .hvc-doctor-more:hover {
    color: #fff;
    transform: translateX(5px);
    border-bottom-color: var(--bethsaida-red);
  }
  @media (max-width: 991px) {
    .hvc-doctor-showcase {
      background-attachment: scroll;
      padding: 70px 0 100px;
    }
    .hvc-doctor-list {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .hvc-doctor-badge {
      position: relative;
      top: auto;
      left: auto;
      margin-bottom: 24px;
      border-radius: 999px;
    }
  }
  @media (max-width: 575px) {
    .hvc-doctor-item {
      align-items: flex-start;
      gap: 16px;
    }
    .hvc-doctor-thumb {
      width: 104px;
      height: 104px;
      min-width: 104px;
    }
    .hvc-doctor-info h3 {
      font-size: 15px;
    }
    .hvc-doctor-info p {
      font-size: 13px;
    }
    .hvc-doctor-more {
      font-size: 12px;
    }
  }
  /* =========================================================
   CSS SECTION 08 — MEDIA / EDUCATION / PACKAGE
========================================================= */

.hvc-media2 {
    --gap: 20px;
    padding: 70px 0;
    background: #f8f9fb;
    overflow: hidden;
  }
  .hvc-media2-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
  }
  .hvc-media2-eyebrow {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .hvc-media2-title {
    margin: 0;
    color: #1e2a3a;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: -0.8px;
  }
  .hvc-media2-desc {
    margin: 8px 0 0;
    max-width: 620px;
    color: #6c7a89;
    font-size: 15px;
    line-height: 1.65;
  }
  .hvc-media2-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .hvc-media2-pill {
    border: 1.5px solid #39a935;
    background: #fff;
    color: #39a935;
    border-radius: 999px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
  }
  .hvc-media2-pill.active,
  .hvc-media2-pill:hover {
    background: #39a935;
    color: #fff;
    box-shadow: 0 10px 22px rgba(57, 169, 53, 0.16);
  }
  .hvc-media2-slider {
    position: relative;
  }
  .hvc-media2-track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 12px;
    scrollbar-width: none;
  }
  .hvc-media2-track::-webkit-scrollbar {
    display: none;
  }
  .hvc-media2-card {
    flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(0, 61, 131, 0.07);
    box-shadow: 0 5px 10px rgba(0, 61, 131, 0.08);
    transition: 0.25s ease;
  }
  .hvc-media2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 10px rgba(0, 61, 131, 0.14);
  }
  .hvc-media2-card.is-hidden {
    display: none;
  }
  .hvc-media2-image {
    position: relative;
    height: 190px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
  }
  .hvc-media2-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .hvc-media2-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.2px;
  }
  .hvc-media2-label.video {
    background: #003d83;
  }
  .hvc-media2-label.testimoni {
    background: #203e76;
  }
  .hvc-media2-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #003d83;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
  .hvc-media2-body {
    padding: 20px 22px 22px;
  }
  .hvc-media2-body h3 {
    margin: 0 0 10px;
    color: #303642;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.2px;
  }
  .hvc-media2-body p {
    margin: 0 0 16px;
    color: #6f7784;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 500;
  }
  .hvc-media2-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #003d83;
    font-size: 14px;
    font-weight: 850;
  }
  .hvc-media2-more span {
    color: #39a935;
    font-size: 22px;
    line-height: 1;
  }
  .hvc-media2-nav {
    position: absolute;
    top: 36%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #003d83;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 61, 131, 0.16);
    transition: 0.25s ease;
  }
  .hvc-media2-nav:hover {
    background: #003d83;
    color: #fff;
  }
  .hvc-media2-prev {
    left: -18px;
  }
  .hvc-media2-next {
    right: -18px;
  }
  .hvc-media2-empty {
    flex: 0 0 100%;
    min-height: 260px;
    border-radius: 22px;
    background: #fff;
    border: 1px dashed rgba(0, 61, 131, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 24px;
    box-shadow: 0 5px 10px rgba(0, 61, 131, 0.06);
  }
  .hvc-media2-empty.is-hidden {
    display: none;
  }
  .hvc-media2-empty h3 {
    color: #1e2a3a;
    font-size: 22px;
    font-weight: 850;
    margin: 0 0 10px;
  }
  .hvc-media2-empty p {
    color: #6c7a89;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 480px;
  }
  .hvc-media2-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: #003d83;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
  }
  .hvc-media2-empty a:hover {
    background: #ed1c24;
    color: #fff;
    transform: translateY(-3px);
  }
  @media (max-width: 991px) {
    .hvc-media2-head {
      flex-direction: column;
      align-items: flex-start;
    }
    .hvc-media2-pills {
      justify-content: flex-start;
    }
    .hvc-media2-card {
      flex-basis: calc((100% - var(--gap)) / 2);
    }
  }
  @media (max-width: 767px) {
    .hvc-media2 {
      --gap: 14px;
      padding: 56px 0;
    }
    .hvc-media2-title {
      font-size: 28px;
    }
    .hvc-media2-desc {
      font-size: 14px;
    }
    .hvc-media2-pills {
      width: 100%;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }
    .hvc-media2-pills::-webkit-scrollbar {
      display: none;
    }
    .hvc-media2-pill {
      flex: 0 0 auto;
      white-space: nowrap;
      padding: 8px 18px;
      font-size: 13px;
    }
    .hvc-media2-card {
      flex: 0 0 86%;
    }
    .hvc-media2-image {
      height: 180px;
    }
    .hvc-media2-body {
      padding: 18px 18px 20px;
    }
    .hvc-media2-body h3 {
      font-size: 17px;
    }
    .hvc-media2-body p {
      font-size: 13px;
    }
    .hvc-media2-nav {
      width: 36px;
      height: 36px;
      font-size: 24px;
      top: 34%;
    }
    .hvc-media2-prev {
      left: 6px;
    }
    .hvc-media2-next {
      right: 6px;
    }
  }
  /* =========================================================
   CSS SECTION 09 — FACILITY GALLERY
========================================================= */

.hvc-gallery-section {
    padding: 90px 0;
    background: #f8f9fb;
  }
  .hvc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
  }
  .hvc-gallery-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 768px) {
    .hvc-gallery-grid,
    .hvc-gallery-grid-bottom {
      grid-template-columns: repeat(2,1fr);
    }
  }
  .hvc-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
  }
  .hvc-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
  }
  .hvc-gallery-item:hover img {
    transform: scale(1.05);
  }
  .hvc-gallery-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;

    padding: 4px 8px;

    color: #1f4e8c;
    font-size: 18px;
    font-weight: 700;
    text-align: center;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);

    overflow: hidden;
  }
  .hvc-section {
    padding: 90px 0;
    background: #f5f7fa;
  }
  .hvc-section-white {
    background: #ffffff;
  }
  .hvc-condition-section {
    background: linear-gradient(
        90deg,
        rgba(3, 20, 55, 0.95),
        rgba(0, 61, 131, 0.86)
      ),
      url("https://www.bethsaidahospitals.com/assets/img/center/urology-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  /* =========================================================
   CSS SECTION 10 — LASER MAGNETO FEATURE
========================================================= */

.laser-magneto-section {
    padding: 70px 0;
    background: #f4f8ff;
  }
  .laser-magneto-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 45px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 61, 131, 0.12);
  }
  .laser-magneto-image {
    height: 100%;
    min-height: 420px;
  }
  .laser-magneto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .laser-magneto-content {
    padding: 45px 45px 45px 0;
  }
  .laser-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #003d83;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  .laser-magneto-content h2 {
    font-size: 46px;
    font-weight: 900;
    color: #003d83;
    margin: 0 0 5px;
  }
  .laser-magneto-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e2a3a;
    margin-bottom: 15px;
  }
  .laser-magneto-content p {
    color: #66758a;
    line-height: 1.7;
  }
  .laser-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 28px 0;
  }
  .laser-feature {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(0, 61, 131, 0.08);
  }
  .laser-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #003d83;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .laser-feature h4 {
    font-size: 15px;
    font-weight: 850;
    margin: 0 0 5px;
    color: #003d83;
  }
  .laser-feature p {
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
  }
  @media (max-width: 991px) {
    .laser-magneto-wrapper {
      grid-template-columns: 1fr;
    }
    .laser-magneto-content {
      padding: 35px;
    }
    .laser-feature-grid {
      grid-template-columns: 1fr;
    }
  }


/* =========================================================
   CSS SECTION 11 — FACILITY MODALS / PEDIATRIC STYLE
   ---------------------------------------------------------
   Scope:
   - Hemodialisa
   - CT Scan
   - MRI
   - ESWL
   - Kamar Rawat Inap
   - URS
   - RIRS

   Doctor Modal tetap memakai layout generic.
========================================================= */


/* Desktop — dialog compact */
:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-dialog{
    width:40%;
}


/* Vertical layout: image di atas, content di bawah */
:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-grid{
    display:contents;
    min-height:0;
}


/* Facility image area */
:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-photo{
    min-height:0;
    height:auto;
    align-items:stretch;
    background:#f3f7fb;
}


/* Image mengikuti pola Facility Modal Pediatric */
:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-photo img{
    display:block;
    width:100%;
    height:auto;
    max-height:420px;
    aspect-ratio:16 / 10;
    object-fit:cover;
    object-position:center;
}


/* Content */
:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-content{
    padding:38px 42px 42px;
}


:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-content h2{
    font-size:30px;
    line-height:1.18;
    margin-bottom:8px;
}


:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-specialty{
    margin-bottom:24px;
}


:is(
    #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
) .hvc-modal-list li{
    margin-bottom:8px;
    line-height:1.6;
}


/* Tablet landscape */
@media(max-width:1199px){
    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-dialog{
        width:55%;
    }
}


/* Tablet */
@media(max-width:991px){
    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-dialog{
        width:100%;
        max-width:680px;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-photo{
        height:auto;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-photo img{
        height:auto;
        max-height:360px;
    }
}


/* Mobile */
@media(max-width:575px){
    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ){
        padding:14px;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-dialog{
        width:100%;
        max-height:92vh;
        border-radius:24px;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-photo img{
        max-height:260px;
        aspect-ratio:4 / 3;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-content{
        padding:28px 22px 30px;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-content h2{
        font-size:26px;
    }

    :is(
        #modalHemodialisa,
    #modalCtscan,
    #modalMri,
    #modalEswl,
    #modalSuperVip,
    #modalUrs,
    #modalRirs
    ) .hvc-modal-specialty{
        font-size:15px;
        margin-bottom:20px;
    }
}


/* =========================================================
   CSS SECTION 12 — CTA / PEDIATRIC STYLE
   ---------------------------------------------------------
   Desktop:
   - Content kiri.
   - Doctor image kanan.

   Mobile:
   - Doctor pindah ke bawah content.
========================================================= */

.hvc-cta{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        var(--bethsaida-blue),
        var(--bethsaida-blue-dark)
    );
    color:#fff;
    overflow:hidden;
}


.hvc-cta-box{
    position:relative;
    min-height:310px;
    display:flex;
    align-items:center;
    padding:50px 390px 50px 55px;
    border-radius:28px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 25px 60px rgba(0,40,100,.22);
    overflow:visible;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
}


.hvc-cta-box::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    right:100px;
    top:-130px;
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(107,190,255,.26) 0%,
            rgba(107,190,255,.08) 45%,
            transparent 72%
        );
    pointer-events:none;
}


.hvc-cta-content{
    position:relative;
    z-index:3;
    max-width:610px;
}


.hvc-cta h2{
    color:#EAF3FF;
    font-size:36px;
    line-height:1.15;
    font-weight:850;
    letter-spacing:-1px;
    margin:0 0 14px;
}


.hvc-cta p{
    color:rgba(255,255,255,.82);
    font-size:17px;
    line-height:1.7;
    max-width:560px;
    margin:0 0 28px;
}


.hvc-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:auto;
    margin:0;
}


.hvc-cta-button span{
    font-size:20px;
    line-height:1;
    transition:transform .25s ease;
}


.hvc-cta-button:hover span{
    transform:translateX(4px);
}


.hvc-cta-doctor{
    position:absolute;
    right:35px;
    bottom:0;
    width:320px;
    height:370px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    z-index:2;
    pointer-events:none;
}


.hvc-cta-doctor img{
    display:block;
    width:auto;
    height:100%;
    max-width:100%;
    object-fit:contain;
    object-position:center bottom;
    filter:drop-shadow(0 20px 25px rgba(0,30,80,.20));
}


.hvc-cta-doctor::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(149,214,255,.24),
            rgba(149,214,255,.05) 50%,
            transparent 72%
        );
    z-index:-1;
}


@media(max-width:991px){
    .hvc-cta{
        padding:65px 0;
    }

    .hvc-cta-box{
        min-height:300px;
        padding:42px 300px 42px 42px;
    }

    .hvc-cta-doctor{
        width:270px;
        height:330px;
        right:15px;
    }

    .hvc-cta h2{
        font-size:32px;
    }
}


@media(max-width:767px){
    .hvc-cta{
        padding:50px 0;
    }

    .hvc-cta-box{
        min-height:auto;
        display:block;
        padding:38px 28px 0;
        border-radius:24px;
        overflow:hidden;
    }

    .hvc-cta-content{
        max-width:100%;
        position:relative;
        z-index:5;
    }

    .hvc-cta h2{
        font-size:29px;
        line-height:1.18;
        margin-bottom:12px;
    }

    .hvc-cta p{
        font-size:16px;
        line-height:1.65;
        margin-bottom:24px;
    }

    .hvc-cta-button{
        margin-bottom:10px;
    }

    .hvc-cta-doctor{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        height:310px;
        margin:15px auto 0;
        justify-content:center;
    }

    .hvc-cta-doctor img{
        height:100%;
    }

    .hvc-cta-doctor::before{
        width:260px;
        height:260px;
        bottom:5px;
    }
}
