/* ============================================================
   NAMASTE NETWORK — Find a Healer Section (Dark)
   File: assets/css/sections/mob-find-healer.css
   Handle: mob-find-healer | Depends on: mob-app-css
   ============================================================ */

/* ── Section ── */
.mob-fh-section {
  font-family: var(--mob-font-sans);
  background: var(--mob-primary-dark);
  color: #cddde3;
  padding: clamp(72px, 10vw, 110px) 0;
  position: relative;
  overflow: hidden;
}

.mob-fh-section * {
  box-sizing: border-box;
}

/* Decorative radial glows */
.mob-fh-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 150, 0.38), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.mob-fh-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Two-column grid ── */
.mob-fh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   LEFT — COPY
   ═══════════════════════════════════════ */

/* Eyebrow badge */
.mob-fh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8e7ec;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
  font-family: var(--mob-font-sans);
  white-space: nowrap;
}

.mob-fh-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mob-success, #3dc98e);
  flex-shrink: 0;
}

/* Title */
.mob-fh-title {
  margin: 0 0 28px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  font-family: var(--mob-font-sans);
}

.mob-fh-title span {
  color: var(--mob-accent);
}

/* Bullet points */
.mob-fh-points {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mob-fh-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mob-fh-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mob-accent);
  color: var(--mob-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.mob-fh-check svg {
  width: 14px;
  height: 14px;
}

.mob-fh-point p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #9fb6bf;
  font-family: var(--mob-font-sans);
}

.mob-fh-point strong {
  color: #ffffff;
  font-weight: 700;
}

/* CTA row */
.mob-fh-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.mob-fh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mob-accent);
  color: var(--mob-primary-dark);
  font-family: var(--mob-font-sans);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: background var(--mob-transition), transform var(--mob-transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.mob-fh-btn:hover {
  background: #f0c09a;
  transform: translateY(-2px);
  color: var(--mob-primary-dark);
  text-decoration: none;
}

.mob-fh-btn svg {
  width: 18px;
  height: 18px;
}

.mob-fh-assure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: #7e98a2;
  font-family: var(--mob-font-sans);
}

.mob-fh-assure svg {
  width: 15px;
  height: 15px;
  stroke: var(--mob-accent);
  fill: none;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RIGHT — PROVIDER STAGE
   ═══════════════════════════════════════ */

.mob-fh-stage {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Radial halo behind card */
.mob-fh-halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 122, 150, 0.45), transparent 66%);
  z-index: 0;
  pointer-events: none;
}

/* ── Provider card ── */
.mob-fh-card {
  position: relative;
  z-index: 2;
  width: 320px;
  background: var(--mob-surface);
  border: 1px solid var(--mob-border);
  border-radius: var(--mob-radius-lg);
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.mob-fh-photo {
  position: relative;
  height: 290px;
  border-radius: 14px;
  overflow: hidden;
}

.mob-fh-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mob-fh-verified {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--mob-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 100px;
  font-family: var(--mob-font-sans);
}

.mob-fh-verified svg {
  width: 13px;
  height: 13px;
  stroke: var(--mob-success, #3dc98e);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mob-fh-meta {
  padding: 16px 8px 6px;
}

.mob-fh-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.mob-fh-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mob-text);
  font-family: var(--mob-font-sans);
}

.mob-fh-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mob-text);
  font-family: var(--mob-font-sans);
}

.mob-fh-rating svg {
  width: 15px;
  height: 15px;
  color: #f0a830;
}

.mob-fh-role {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--mob-text-muted);
  font-family: var(--mob-font-sans);
  line-height: 1.5;
}

.mob-fh-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.mob-fh-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--mob-primary);
  background: var(--mob-primary-light);
  padding: 5px 11px;
  border-radius: 100px;
  font-family: var(--mob-font-sans);
}

/* ── Floating: rating chip ── */
.mob-fh-float-rating {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: 0;
  background: var(--mob-surface);
  border: 1px solid var(--mob-border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 11px;
}

.mob-fh-float-rating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fdf3e7;
  color: #f0a830;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mob-fh-float-rating-icon svg {
  width: 18px;
  height: 18px;
}

.mob-fh-float-rating-text b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--mob-text);
  line-height: 1.15;
  font-family: var(--mob-font-sans);
}

.mob-fh-float-rating-text span {
  font-size: 11.5px;
  color: var(--mob-text-muted);
  font-family: var(--mob-font-sans);
}

/* ── Floating: community chip ── */
.mob-fh-float-comm {
  position: absolute;
  z-index: 3;
  bottom: 124px;
  left: -28px;
  background: var(--mob-surface);
  border: 1px solid var(--mob-border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.mob-fh-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.mob-fh-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  display: block;
  flex-shrink: 0;
}

.mob-fh-avatars span:first-child {
  margin-left: 0;
}

.mob-fh-avatars span.mob-fh-avatars-more {
  background: var(--mob-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mob-font-sans);
}

.mob-fh-float-comm-text b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mob-text);
  font-family: var(--mob-font-sans);
  line-height: 1.3;
}

.mob-fh-float-comm-text span {
  font-size: 11.5px;
  color: var(--mob-text-muted);
  font-family: var(--mob-font-sans);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 960px) {
  .mob-fh-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .mob-fh-stage {
    order: -1;
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .mob-fh-card {
    width: 280px;
  }

  .mob-fh-photo {
    height: 250px;
  }

  .mob-fh-float-rating {
    right: -4px;
    top: 20px;
  }

  .mob-fh-float-comm {
    left: -12px;
    bottom: 20px;
  }

  .mob-fh-btn {
    font-size: 15px;
    padding: 14px 24px;
  }
}

@media (max-width: 420px) {
  .mob-fh-float-comm {
    left: 0;
  }

  .mob-fh-float-rating {
    right: 0;
  }
}
