/* ================================
   CTA CENTER SECTION
================================ */
.section-cta-center {
    background: linear-gradient(180deg, #001b37 0%, #00152a 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.section-cta-center .section_wrapper {
    width: 100%;
}

.cta-center-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.cta-title {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-desc {
    color: #b7c3d1;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-title {
        font-size: 34px;
    }

    .cta-desc {
        font-size: 16px;
    }
}


/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/home_clinic3_slider_bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(2, 25, 68, 0.92),
        rgba(2, 25, 68, 0.75),
        rgba(2, 25, 68, 0.4)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: #fff;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9adfe0;
    /* margin-bottom: 1px; */
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: #00f1c7;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #e4ecf7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2f80ed;
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1c6ed5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.6);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 15px;
    }
}



/* ================= CLINIC CARD ================= */
.clinic-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.clinic-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.clinic-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Hover effect */
.clinic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Accent line */
.clinic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00f1c7;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.clinic-card:hover::before {
    transform: scaleX(1);
}

/* Highlight card */
.clinic-card.highlight {
    background: linear-gradient(135deg, #003366, #005fa3);
    color: #fff;
}

.clinic-card.highlight p {
    color: #e6f7ff;
}

/* Button */
.clinic-card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    background: #00f1c7;
    color: #003366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.clinic-card-btn:hover {
    background: #fff;
    color: #003366;
}


/* Fix mobile menu hidden by overflow */
/* #Wrapper {
    overflow-x: visible !important;
}
#Header_wrapper {
    overflow: visible !important;
} */


/* ===== Force simple mobile menu ===== */
/* @media (max-width: 768px) { */

  /* sembunyikan menu default */
  /* #Top_bar #menu {
      display: none !important;
      position: fixed !important;
      top: 60px;
      right: 0;
      width: 260px;
      background: #020e1b;
      z-index: 99999;
      padding-bottom: 20px;
  } */

  /* tampilkan saat active */
  /* #Top_bar #menu.mobile-active {
      display: block !important;
  } */

  /* pastikan hamburger terlihat */
  /* a.responsive-menu-toggle {
      display: block !important;
      z-index: 100000;
  }

  #Top_bar #menu ul li a span {
      color: #fff;
  }
} */


/* Stop body shifting when mobile menu opens */
body.side-slide-opened {
    transform: none !important;
    margin-left: 0 !important;
    overflow: hidden;
}

/* Keep Side_slide fixed overlay */
#Side_slide {
    position: fixed !important;
    right: -300px;
    top: 0;
    height: 100%;
    width: 300px;
    z-index: 9999;
    transition: right 0.3s ease;
}

/* When opened */
body.side-slide-opened #Side_slide {
    right: 0;
}

/* Prevent page wrapper shifting */
#Wrapper {
    transform: none !important;
}


body.side-slide-opened:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}


/* ===== FIX MOBILE SIDE SLIDE MENU (CLINIC3) ===== */

/* Stop content shifting */
body.side-slide-opened,
body.side-slide-opened #Wrapper,
body.side-slide-opened #Header_wrapper,
body.side-slide-opened #Content,
body.side-slide-opened #Footer {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Side slide overlay mode */
#Side_slide {
    position: fixed !important;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    background: #111;
    transition: right 0.3s ease;
}

/* When menu open */
#Side_slide.active {
    right: 0 !important;
}

/* Optional overlay background */
body.side-slide-opened:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
}






