/* ============================================================
   SMC Diagnostic Center — Hero Banner v5
   Content column (badge, heading, description, feature chips,
   CTA row, service marquee, trust row) uses the original classes
   already defined in smc-redesign.css and is unchanged here.
   This file only styles the right-side visual: your doctor-wave
   PNG (its own pre-cut wave silhouette + outline) sized to run
   the full height of the hero content, no play button, with the
   floating service badges + accuracy medallion positioned around it.
============================================================ */

/* ---------- subtle diagonal accent wash behind the whole hero ---------- */
.smc-hero-v2 { position: relative; overflow: hidden; }
.smc-hero-v2::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, var(--theme) 0%, #ff7a45 100%);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 8% 100%);
  opacity: .06;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   FULL-HEIGHT DOCTOR IMAGE
   .smc-hero-top wraps the row so this absolutely-positioned
   layer can stretch top:0 → bottom:0 of that wrapper — i.e. the
   full height of the text column beside it, top to bottom.
============================================================ */
.smc-hero-top { position: relative; z-index: 1; }

.smc-hero-photo-full {
  display: none; /* shown from xl up */
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 48%;
  z-index: 1;
}
.smc-hero-photo-img {
  width: 100%;
  height: 100%;
  background-image: url("../images/smc/doctor-cutout.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  filter: drop-shadow(-16px 18px 44px rgba(2,10,26,.45));
}

@media (min-width: 1200px) {
  .smc-hero-photo-full { display: block; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .smc-hero-photo-full { width: 44%; }
}

/* floating service badges + accuracy medallion, positioned
   around the doctor image (they sit outside the image itself
   so they're never cropped by it) */
.orbit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px 10px 12px;
  border-radius: 40px;
  box-shadow: 0 16px 34px rgba(4,16,40,.28);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--header);
  white-space: nowrap;
  z-index: 4;
}
.orbit-badge i {
  color: var(--theme);
  font-size: 14px;
  flex-shrink: 0;
}
.badge-1 { top: 6%; left: 8%; }
.badge-2 { top: 46%; right: 2%; transform: translateY(-50%); }
.badge-3 { bottom: 10%; left: 4%; }

.orbit-medallion {
  position: absolute;
  top: 2%; right: 14%;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme) 0%, #ff7a45 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(255,75,8,.4);
  border: 4px solid rgba(255,255,255,.9);
  z-index: 4;
  text-align: center;
  line-height: 1.1;
}
.orbit-medallion strong { font-size: 21px; font-weight: 800; }
.orbit-medallion span { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }

@media (max-width: 1399px) {
  .badge-1 { left: 0; }
  .badge-3 { left: 0; }
  .orbit-medallion { right: 6%; }
}

/* ============================================================
   SERVICE MARQUEE — scrolling strip under the CTA buttons
============================================================ */
.smc-hero-marquee {
  position: relative;
  z-index: 2;
  margin: 6px 0 40px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.smc-hero-marquee .marquee-left {
  white-space: nowrap;
}
.smc-hero-marquee .mq-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.smc-hero-marquee .mq-item i {
  color: var(--theme);
  font-size: 13px;
}
.smc-hero-marquee .mq-sep {
  display: inline-block;
  margin: 0 22px;
  color: rgba(255,255,255,.3);
}

@media (max-width: 575px) {
  .smc-hero-marquee { margin-bottom: 30px; }
}
