
/* ==========================================================================
   Top Preview Toolbar
   ========================================================================== */
   .mhpro-preview-toolbar {
    width: 100%;
    background: #0F172A;
    color: #F8FAFC;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .mhpro-preview-toolbar .mhpro-logo-text {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .mhpro-preview-toolbar .mhpro-logo-badge {
    background: var(--primary-red);
    font-size: 10px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
  }
  
  .mhpro-preview-buttons {
    display: flex;
    gap: 8px;
    background: #1E293B;
    padding: 4px;
    border-radius: 8px;
  }
  
  .mhpro-btn-preview {
    background: transparent;
    border: none;
    color: #94A3B8;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .mhpro-btn-preview:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .mhpro-btn-preview.mhpro-active {
    background: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(238, 53, 67, 0.4);
  }
  
  /* ==========================================================================
     Hero Wrapper
     ========================================================================== */
  /* ==========================================================================
     Hero Wrapper
     ========================================================================== */
  .mhpro-hero-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  /* ==========================================================================
     Main Banner Container
     ========================================================================== */
  .mhpro-banner-container {
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
  }
  
  .mhpro-banner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 68.75%; /* Covers mhpro-banner-left and mhpro-banner-center only */
    height: 100%;
    background-image: url("/static/indigo/images/banner/bg_map_desktop.b061c5f336ba.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75%; /* Reduced from contain */
    z-index: 0;
  }
  
  .mhpro-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 36px 40px 0 100px; /* Removed bottom padding so image can touch bottom */
  }
  
  /* Base Red Color Highlight */
  .mhpro-text-red {
    color: var(--primary-red);
    font-weight: 800;
  }
  
  /* ==========================================================================
     Desktop / Laptop Layout (Grid: Left - Center - Right)
     ========================================================================== */
  .mhpro-banner-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: stretch; /* Make columns stretch full height */
    min-height: 650px; /* Increased height for desktop/laptop */
    gap: 0.5rem; /* 0.5rem gap for desktop/laptop */
  }
  
  /* --- Left Column --- */
  .mhpro-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-bottom: 36px; /* Restore bottom padding since we removed it from mhpro-banner-content */
  }
  
  .mhpro-headline-main {
    font-size: 39px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
  }
  
  .mhpro-subheadline {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--text-body);
  }
  
  .mhpro-course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  .mhpro-course-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    transition: transform 0.2s ease;
  }
  
  .mhpro-course-item:hover {
    transform: translateX(3px);
  }
  
  .mhpro-course-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .mhpro-btn-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(238, 53, 67, 0.35);
    transition: all 0.25s ease;
    width: fit-content;
    margin-top: 10px;
  }
  .mhpro-btn-enroll a{
    color: #FFFFFF !important;
    text-decoration: none !important;
  }
  
  .mhpro-btn-enroll:hover {
    background: #D32533;    ;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(238, 53, 67, 0.45);
  }
  
  .mhpro-btn-enroll:mhpro-active {
    transform: translateY(0);
  }
  
  .mhpro-btn-enroll-mobile {
    display: none;
  }
  
  /* --- Center Column (Doctors Image) --- */
  .mhpro-banner-center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
  }
  
  .mhpro-doctors-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.06));
    transition: transform 0.3s ease;
    display: block;
  }
  
  .mhpro-doctors-img:hover {
    transform: scale(1.02);
  }
  
  /* --- Right Column --- */
  .mhpro-banner-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 16px;
    padding-bottom: 36px; /* Restore bottom padding */
  }
  
  /* Coupon Card Styling */
  .mhpro-coupon-card-container {
    position: relative;
    width: 100%;
    max-width: 440px; /* Increased from 360px */
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
    border-radius: 12px;
  }
  
  .mhpro-coupon-card-container:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 20px rgba(238, 53, 67, 0.2));
  }
  
  .mhpro-coupon-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  
  .mhpro-coupon-copy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(238, 53, 67, 0.88);
    color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-weight: 700;
    font-size: 18px; /* Increased from 14px */
    gap: 8px;
    backdrop-filter: blur(2px);
  }
  
  .mhpro-coupon-card-container:hover .mhpro-coupon-copy-overlay {
    opacity: 1;
  }
  
  .mhpro-coupon-copy-overlay svg {
    width: 32px; /* Increased from 24px */
    height: 32px;
  }
  
  /* Status Indicator Bar */
  .mhpro-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 21px; /* Increased from 18px */
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 6px;
  }
  
  .mhpro-status-dot {
    width: 14px; /* Increased from 12px */
    height: 14px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
  }
  
  /* Accreditation Logos Footer */
  .mhpro-logos-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    width: 100%;
  }
  
  .mhpro-logo-item {
    height: 140px; /* Restored user's manual preference */
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .mhpro-logo-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  /* Toast Notification */
  .mhpro-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0F172A;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border-left: 4px solid var(--primary-red);
  }
  
  .mhpro-toast.mhpro-show {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Enrollment Modal */
  .mhpro-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
    padding: 20px;
  }
  
  .mhpro-modal-overlay.mhpro-active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .mhpro-modal-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  
  .mhpro-modal-overlay.mhpro-active .mhpro-modal-card {
    transform: scale(1);
  }
  
  .mhpro-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F1F5F9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mhpro-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
  }
  
  .mhpro-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  
  .mhpro-modal-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .mhpro-form-group {
    margin-bottom: 14px;
  }
  
  .mhpro-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  
  .mhpro-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
  }
  
  .mhpro-form-input:focus {
    border-color: var(--primary-red);
  }
  
  .mhpro-btn-submit {
    width: 100%;
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease;
  }
  
  .mhpro-btn-submit:hover {
    background: var(--primary-red-hover);
  }
  
  /* ==========================================================================
     RESPONSIVE MEDIA QUERIES (Shift to Vertical Stack on Tablet & Mobile)
     ========================================================================== */
  
  /* Laptop / Smaller Desktop adjustments */
  @media (max-width: 1200px) and (min-width: 1024px) {
    .mhpro-banner-grid {
      grid-template-columns: 1fr 1.3fr 1fr;
    }
    .mhpro-headline-main {
      font-size: 36px;
    }
    .mhpro-subheadline {
      font-size: 19px;
    }
    .mhpro-course-item {
      font-size: 17px;
    }
    .mhpro-banner-content {
      padding: 30px 24px;
    }
    .mhpro-coupon-card-container {
      max-width: 380px;
    }
    .mhpro-status-bar {
      font-size: 18px;
    }
  }
  
  /* Mobile & Tablet Vertical Layout Breakpoint (< 1024px) */
  @media (max-width: 1023px) {
    .mhpro-bg-icon {
      display: none;
    }
  
    .mhpro-banner-container {
      background-image: none;
    }
  
    .mhpro-banner-container::before {
      display: none;
    }
  
    .mhpro-banner-content {
      padding: 36px 20px 30px 20px;
    }
  
    .mhpro-banner-grid {
      grid-template-columns: 1fr;
      gap: 0;
      text-align: center;
      min-height: auto;
    }
  
    /* Centered Header Section */
    .mhpro-banner-left {
      align-items: center;
      gap: 16px;
    }
  
    .mhpro-headline-main {
      font-size: 32px;
      line-height: 1.3;
      max-width: 600px;
      margin: 0 auto;
    }
  
    .mhpro-subheadline {
      font-size: 19px;
      line-height: 1.4;
      max-width: 550px;
      margin: 0 auto;
    }
  
    .mhpro-course-list {
      justify-content: center;
      max-width: 600px;
      gap: 12px 20px;
    }
  
    .mhpro-course-item {
      font-size: 17px;
    }
  
    .mhpro-btn-enroll-desktop {
      display: none; /* Hide in left column on mobile/tablet */
    }
  
    .mhpro-btn-enroll-mobile {
      display: inline-flex; /* Show in right column on mobile/tablet */
      margin: 16px auto 0 auto; /* Center it */
    }
  
    /* Center Doctors Image */
    .mhpro-banner-center {
      order: 2;
      background-image: url("/static/indigo/images/banner/bg_map_desktop.b061c5f336ba.png"); /* User specifically requested this image */
      background-size: 100%; /* Full width for mobile/tablet */
      background-position: center bottom;
      background-repeat: no-repeat;
      width: 100%;
      padding: 20px 0 0 0; /* Removed bottom padding to pull coupon closer */
    }
  
    .mhpro-doctors-img {
      max-width: 360px; /* Reduced from 440px */
      margin: 0 auto;
    }
  
    /* Right Section (Coupon & Logos) stacked underneath */
    .mhpro-banner-right {
      order: 3;
      gap: 18px;
      margin: 0 auto;
      width: 100%;
      align-items: center;
      justify-content: center;
    }
  
    .mhpro-coupon-card-container {
      max-width: 380px;
      margin: 0 auto;
    }
  
    .mhpro-status-bar {
      font-size: 17px;
      justify-content: center;
    }
  
    .mhpro-logos-container {
      gap: 20px;
      justify-content: center;
    }
  
    .mhpro-logo-item {
      height: 110px; /* Scaled from 140px desktop */
    }
  }
  
  /* Small Mobile Phones (< 480px) */
  @media (max-width: 480px) {
    .mhpro-preview-toolbar {
      padding: 10px 12px;
      flex-direction: column;
      gap: 8px;
    }
  
    .mhpro-preview-buttons {
      width: 100%;
      justify-content: center;
    }
  
    .mhpro-btn-preview {
      padding: 5px 8px;
      font-size: 11px;
    }
  
    .mhpro-viewport-wrapper {
      padding: 12px 8px;
    }
  
    .mhpro-banner-content {
      padding: 24px 16px 20px 16px;
    }
  
    .mhpro-headline-main {
      font-size: 26px;
    }
  
    .mhpro-subheadline {
      font-size: 16px;
    }
  
    .mhpro-course-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 14px;
    }
  
    .mhpro-course-item {
      font-size: 15.5px;
    }
  
    .mhpro-doctors-img {
      max-width: 260px; /* Reduced from 340px */
    }
  
    .mhpro-coupon-card-container {
      max-width: 310px;
      margin: 0 auto;
    }
  
    .mhpro-status-bar {
      font-size: 15px;
      justify-content: center;
    }
  
    .mhpro-logo-item {
      height: 90px; /* Scaled from 140px desktop */
    }
  }
  
  /* ==========================================================================
     Floating Background Icons
     ========================================================================== */
  .mhpro-bg-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
  }
  .mhpro-icon-tl {
    /* top: 2%; */
    left: 2%;
    width: 60px;
  }
  .mhpro-icon-tr {
    /* top: 2%; */
    right: 12%;
    width: 60px;
  }
  .mhpro-icon-bl {
    bottom: 0.1%;
    left: 8%;
    width: 60px;
  }
  .mhpro-icon-br {
    bottom: 0.1%;
    right: 28%;
    width: 60px;
  }
  
  .mhpro-icon-tr-plus {
    top: 10%;
    right: 15%;
    width: 30px;
  }
  .mhpro-map-overlay-top {
    top: 0%;
    right: 16%;
    width: 500px;
    max-width: 40%;
    object-fit: contain;
    opacity: 0.6;
    pointer-events: none;
  }
  .mhpro-icon-bl-plus {
    bottom: 10%;
    left: 15%;
    width: 30px;
  }
  