/* ==========================================================================
   Dr. Mayur Goklani - Premium Medical Hair Transplant Stylesheet
   Plastic Surgery & Hand Surgery Superspeciality Clinic, Aurangabad
   ========================================================================== */

:root {
  --primary-teal: #16989d;
  --teal-dark: #0d7074;
  --teal-light: #e6f7f8;
  --teal-glow: rgba(22, 152, 157, 0.18);

  --accent-pink: #e43f8b;
  --pink-dark: #b82367;
  --pink-light: #fdf0f6;
  --pink-glow: rgba(228, 63, 139, 0.15);

  --accent-gold: #c89b3c;
  --gold-light: #fbf5e8;

  --lux-bg: #fcfdfd;
  --lux-pearl: #f6f9fa;
  --lux-card: #ffffff;
  --text-main: #1c2430;
  --text-muted: #556272;
  --text-light: #8896a6;
  --border-color: #e6ecf0;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px rgba(22, 152, 157, 0.12);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-widget: 0 15px 35px rgba(22, 152, 157, 0.14);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Scoped Base & Container Settings for Hair Transplant Sections
   ========================================================================== */

.hero-section *,
.doctor-section *,
.tech-ref-showcase-section *,
.journey-ref-section *,
.res-rec-showcase-section *,
.why-choose-showcase-section *,
.faq-luxury-section *,
.cta-luxury-section *,
.candidacy-showcase * {
  box-sizing: border-box;
}

.hero-section .container,
.doctor-section .container,
.tech-ref-showcase-section .container,
.journey-ref-section .container,
.res-rec-showcase-section .container,
.why-choose-showcase-section .container,
.faq-luxury-section .container,
.cta-luxury-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.max-w-800 {
  max-width: 860px;
}

/* Top Notification Bar */
.top-bar {
  background: #0d2229;
  color: #cfe4e6;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(22, 152, 157, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-link {
  color: #8ce2e6;
  text-decoration: none;
  font-weight: 600;
}

.top-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(22, 152, 157, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(228, 63, 139, 0.04) 0%,
      transparent 60%
    );
}

.hero-bg-shapes .teal-glow {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-shapes .pink-glow {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.badge-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(22, 152, 157, 0.2);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 8px rgba(228, 63, 139, 0.8);
}

.hero-top-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.18;
  color: #0e1726;
  text-align: center;
  margin: 0 auto;
}

.highlight-serif {
  color: var(--primary-teal);
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-pink);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 26px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.highlight-item:hover {
  border-color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.teal-icon {
  background: var(--teal-light);
  color: var(--primary-teal);
}
.pink-icon {
  background: var(--pink-light);
  color: var(--accent-pink);
}

.highlight-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.highlight-text span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--accent-pink) 100%
  );
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(22, 152, 157, 0.28);
  transition: var(--transition);
}

.btn-primary-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(228, 63, 139, 0.35);
}

.btn-secondary-luxury {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary-luxury:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background: var(--teal-light);
}

/* ==========================================================================
   TASK 1: Exact Consultation Booking Card Component from Image 1
   ========================================================================== */
.consultation-card-widget {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid rgba(22, 152, 157, 0.3);
  box-shadow:
    0 20px 45px rgba(22, 152, 157, 0.12),
    0 4px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  max-width: 440px;
  margin-left: auto;
}

.consultation-card-header {
  background: linear-gradient(135deg, #16989d 0%, #0e7c81 100%);
  color: #ffffff;
  padding: 22px 24px;
}

.consultation-card-header h3 {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.consultation-card-header p {
  font-size: 0.85rem;
  color: #e2fbfb;
  line-height: 1.4;
  font-weight: 400;
}

.consultation-card-body {
  padding: 24px 24px 20px;
  background: #ffffff;
}

.consult-form-group {
  margin-bottom: 14px;
}

.consult-form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d5dee5;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1e293b;
  background: #ffffff;
  transition: var(--transition);
  outline: none;
}

.consult-form-group input::placeholder {
  color: #8896a6;
  font-weight: 400;
}

.consult-form-group input:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(22, 152, 157, 0.15);
}

.btn-hero-consult {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(216, 27, 96, 0.35);
  transition: var(--transition);
  margin-top: 6px;
}

.btn-hero-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(216, 27, 96, 0.5);
  background: linear-gradient(135deg, #e43f8b 0%, #ad1457 100%);
}

.arrow-sym {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-trust-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: #64748b;
}

.hero-trust-indicator svg {
  color: #16989d;
}

.hero-form-status {
  display: none;
  margin-top: 12px;
  font-size: 0.84rem;
  padding: 10px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   TASK 2: Doctor Profile Section Matching Image 2
   ========================================================================== */
.doctor-profile-showcase {
  width: 100%;
}

.doctor-profile-showcase .row {
  align-items: center;
  row-gap: 30px;
}

.doctor-arch-column,
.doctor-info-column {
  width: 100%;
}

.doctor-arch-composition {
  position: relative;
  width: 340px;
  height: 440px;
  margin: 0 auto;
}

/* Teal Arch Frame */
.teal-arch-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 380px;
  background: linear-gradient(180deg, #16989d 0%, #0a3c3e 100%);
  border-radius: 160px 160px 24px 24px;
  z-index: 1;
}

/* Decorative Circles */
.gold-deco-ring {
  position: absolute;
  top: 25px;
  right: -10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 14px solid #c89b3c;
  z-index: 2;
  pointer-events: none;
}

.pink-deco-circle {
  position: absolute;
  top: 100px;
  right: 25px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #e43f8b;
  box-shadow: 0 4px 15px rgba(228, 63, 139, 0.4);
  z-index: 3;
  pointer-events: none;
}

/* Doctor Image */
.doctor-image-holder {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 300px;
  height: 390px;
  z-index: 4;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* DNB Golden Badge */
.dnb-gold-badge {
  position: absolute;
  bottom: 30px;
  right: -15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a359 0%, #b88630 100%);
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 5;
  border: 3px solid #ffffff;
  text-align: center;
  padding: 6px;
}

.dnb-main-txt {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.dnb-sub-txt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1f2937;
  margin-top: 2px;
}

/* Right Doctor Info */
.surgeon-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.surgeon-name {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: #0e1726;
  line-height: 1.1;
  margin-bottom: 18px;
}

.qualifications-accent-block {
  border-left: 3.5px solid #e06d53;
  padding-left: 16px;
  margin-bottom: 22px;
}

.qual-line {
  font-size: 1rem;
  font-weight: 700;
  color: #0e7c81;
  line-height: 1.5;
}

.surgeon-text {
  font-size: 0.98rem;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 16px;
}

.arrange-assessment-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-decoration: none;
  margin-top: 10px;
  transition: var(--transition);
}

.arrange-assessment-link:hover {
  color: var(--accent-pink);
  transform: translateX(4px);
}

.link-arrow {
  font-size: 1.2rem;
}

/* ==========================================================================
   TASK 3: Modern Structure for "What Your Consultation Covers"
   ========================================================================== */
.section-luxury {
  padding: 30px 0;
}

.bg-pearl {
  background-color: var(--lux-pearl);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.sub-heading-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-pink);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
  font-weight: 400;
}

.ornament-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-pink));
  margin: 16px auto 0;
  border-radius: 2px;
}

.modern-consultation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}

.modern-c-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modern-c-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-number-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 50px;
}

.c-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.teal-tint {
  background: var(--teal-light);
  color: var(--primary-teal);
}
.pink-tint {
  background: var(--pink-light);
  color: var(--accent-pink);
}
.gold-tint {
  background: var(--gold-light);
  color: var(--accent-gold);
}

.modern-c-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.modern-c-card p {
  font-size: 1rem;
  color: #4c4c4c;

  line-height: 1.6;
}

/* Candidacy Modern Showcase */
.candidacy-showcase {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 48px;
}

.candidacy-media-col {
  display: flex;
  height: 100%;
}

.candidacy-media-wrapper {
  position: relative;
  width: 100%;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(22, 152, 157, 0.22);
  background: #f1f8f8;
}

.candidacy-img {
  width: 100%;
  height: 100%;

  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.candidacy-media-wrapper:hover .candidacy-img {
  transform: scale(1.04);
}

.candidacy-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 251, 0.05) 45%,
    rgba(15, 23, 42, 0.65) 100%
  );
  pointer-events: none;
}

.candidacy-floating-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.candidacy-floating-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 152, 157, 0.35);
}

.candidacy-floating-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.candidacy-floating-badge .badge-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.candidacy-floating-badge .badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.candidacy-luxury-box {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfd 100%);
  border: 1px solid rgba(22, 152, 157, 0.22);
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.candidacy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  width: fit-content;
  border: 1px solid rgba(22, 152, 157, 0.22);
}

.candidacy-kicker .kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-teal);
  box-shadow: 0 0 0 0 rgba(22, 152, 157, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 152, 157, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(22, 152, 157, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 152, 157, 0);
  }
}

.candidacy-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 8px;
}

.candidacy-header p {
  font-size: 1rem;
  color: #4c4c4c;
  margin-bottom: 22px;
  line-height: 1.55;
}

.candidacy-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.c-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(22, 152, 157, 0.22);
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.c-pill .pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--primary-teal);
  flex-shrink: 0;
  transition: var(--transition);
}

.c-pill:hover {
  background: var(--teal-light);
  border-color: var(--primary-teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(22, 152, 157, 0.15);
}

.c-pill:hover .pill-icon {
  background: var(--primary-teal);
  color: #ffffff;
}

.candidacy-notice {
  background: linear-gradient(135deg, rgba(253, 240, 246, 0.95), #fff6fa);
  border: 1px solid rgba(228, 63, 139, 0.22);
  border-left: 4px solid var(--accent-pink);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(228, 63, 139, 0.05);
}

.candidacy-notice .notice-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(228, 63, 139, 0.12);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.candidacy-notice .notice-text {
  font-size: 1rem;
  color: #631238;
  line-height: 1.55;
}

.candidacy-notice strong {
  color: var(--pink-dark);
  font-weight: 700;
}

/* ==========================================================================
   Image Matched: "Hair Transplant Techniques" Showcase
   ========================================================================== */
.tech-ref-showcase-section {
  padding: 30px 0 30px;
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(254, 242, 246, 0.95) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 88%,
      rgba(237, 251, 248, 0.9) 0%,
      transparent 45%
    ),
    #faf8f7;
  position: relative;
  overflow: hidden;
}

/* Background Decorative Elements */
.tech-bg-dots {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 140px;
  height: 95px;
  background-image: radial-gradient(
    rgba(16, 28, 61, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

.tech-bg-wave-rings {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 70, 126, 0.1);
  box-shadow:
    0 0 0 25px rgba(224, 70, 126, 0.05),
    0 0 0 55px rgba(224, 70, 126, 0.03),
    0 0 0 90px rgba(224, 70, 126, 0.015);
  pointer-events: none;
  z-index: 1;
}

.tech-bg-follicle-watermark {
  position: absolute;
  bottom: 25px;
  left: 25px;
  pointer-events: none;
  z-index: 1;
}

.tech-ref-container {
  position: relative;
  z-index: 2;
}

/* Header */
.tech-ref-header {
  text-align: center;
  margin-bottom: 48px;
}

.tech-ref-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.kicker-rule {
  width: 38px;
  height: 1.5px;
  background: #e0467e;
  opacity: 0.55;
  display: inline-block;
}

.kicker-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e0467e;
  text-transform: uppercase;
}

.tech-ref-main-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: #101c3d;
  letter-spacing: -0.01em;
  margin: 6px 0 16px;
  line-height: 1.1;
}

.tech-ref-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ref-divider-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pill-dot.dot-pink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0467e;
}

.pill-bar {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #e0467e, #16989d);
  border-radius: 4px;
}

.pill-dot.dot-teal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16989d;
}

/* 4-Card Grid */
.tech-ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 42px;
}

/* Individual Card */
.tech-ref-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 28, 61, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  background: linear-gradient(180deg, var(--card-tint) 0%, #ffffff 36%);
}

.tech-ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px var(--card-glow);
  border-color: var(--card-primary);
}

/* Card Themes */
.tech-ref-card.theme-blue {
  --card-primary: #1c73c2;
  --card-tint: #eef6fd;
  --card-border: #d7e9f9;
  --card-ring: rgba(28, 115, 194, 0.12);
  --card-glow: rgba(28, 115, 194, 0.16);
}

.tech-ref-card.theme-pink {
  --card-primary: #e0467e;
  --card-tint: #fef2f7;
  --card-border: #fbd6e6;
  --card-ring: rgba(224, 70, 126, 0.12);
  --card-glow: rgba(224, 70, 126, 0.16);
}

.tech-ref-card.theme-teal {
  --card-primary: #16989d;
  --card-tint: #edfbf8;
  --card-border: #cef1ec;
  --card-ring: rgba(22, 152, 157, 0.12);
  --card-glow: rgba(22, 152, 157, 0.16);
}

.tech-ref-card.theme-purple {
  --card-primary: #6c469b;
  --card-tint: #f6f0fb;
  --card-border: #e6daf7;
  --card-ring: rgba(108, 70, 155, 0.12);
  --card-glow: rgba(108, 70, 155, 0.16);
}

/* Floating Number Badge */
.tech-ref-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--card-primary);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Top Image Wrap */
.tech-ref-top-image-wrap {
  padding: 24px 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tech-ref-circle-frame {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  padding: 4px;
  background: #ffffff;
  border: 3px solid var(--card-primary);
  box-shadow: 0 8px 24px var(--card-glow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.tech-ref-circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.tech-ref-card:hover .tech-ref-circle-frame {
  transform: scale(1.05);
}

.tech-ref-card:hover .tech-ref-circle-frame img {
  transform: scale(1.08);
}

/* Content */
.tech-ref-content {
  padding: 8px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tech-ref-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #101c3d;
  line-height: 1.25;
  margin-bottom: 8px;
  padding-top: 15px;
  min-height: 28px;
  display: flex;
  align-items: flex-end;
}

.tech-ref-title-line {
  width: 34px;
  height: 2.5px;
  background: var(--card-primary);
  border-radius: 2px;
  margin-bottom: 14px;
}

.tech-ref-desc {
  font-size: 1rem;
  color: #000000;
  line-height: 1.62;
  margin-bottom: 11px;
}

/* Bottom Strip */
.tech-card-bottom-strip {
  height: 5px;
  width: 100%;
  background: var(--card-primary);
}

/* Bottom Consultation Banner */
.tech-bottom-consult-banner {
  background: #ffffff;
  border: 1.5px solid rgba(22, 152, 157, 0.2);
  border-radius: 50px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 6px 24px rgba(16, 28, 61, 0.05);
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

.consult-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fef2f7;
  color: #e0467e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-bottom-consult-banner p {
  font-size: 0.92rem;
  color: #101c3d;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1100px) {
  .tech-ref-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .tech-ref-grid {
    grid-template-columns: 1fr;
  }
  .tech-ref-main-title {
    font-size: 2.4rem;
  }
  .tech-bottom-consult-banner {
    border-radius: 20px;
    padding: 14px 18px;
    text-align: left;
  }
}

/* ==========================================================================
   Reference Image Matched: "A Clear, Three-Step Hair Transplant Journey"
   ========================================================================== */
.journey-ref-section {
  padding: 30px 0 30px;
  background: #fcfdfe;
  position: relative;
  overflow: hidden;
}

/* Header */
.journey-ref-header {
  text-align: center;
  margin-bottom: 50px;
}

.journey-kicker-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.kicker-line {
  width: 45px;
  height: 1.5px;
  background: #e43f8b;
  display: inline-block;
}

.kicker-dot {
  width: 5px;
  height: 5px;
  background: #e43f8b;
  border-radius: 50%;
  display: inline-block;
}

.journey-kicker-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: #e43f8b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-ref-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1e293b;
  margin-bottom: 0;
}

.title-top {
  display: block;
  color: #1e293b;
}

.title-bottom {
  display: block;
  margin-top: 4px;
}

.word-teal {
  color: #16989d;
}

.word-slate {
  color: #334155;
}

.word-pink {
  color: #e43f8b;
}

.journey-gradient-bar {
  width: 55px;
  height: 3.5px;
  background: linear-gradient(90deg, #16989d 0%, #e43f8b 100%);
  border-radius: 4px;
  margin: 16px auto 18px;
}

.journey-ref-lead {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* 3 Connected Cards Wrapper */
.journey-cards-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 45px;
}

.journey-ref-card {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6ecf0;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.journey-ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(22, 152, 157, 0.1);
}

.card-pink-theme {
  border: 1.5px solid #fbcfe8;
  box-shadow: 0 10px 30px rgba(228, 63, 139, 0.06);
}

.card-pink-theme:hover {
  border-color: #f472b6;
  box-shadow: 0 16px 35px rgba(228, 63, 139, 0.14);
}

/* Top Subtle Wave Background */
.card-wave-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 0;
}

.teal-wave {
  background: radial-gradient(
    circle at 100% 0%,
    rgba(22, 152, 157, 0.07) 0%,
    transparent 65%
  );
}

.pink-wave {
  background: radial-gradient(
    circle at 100% 0%,
    rgba(228, 63, 139, 0.07) 0%,
    transparent 65%
  );
}

/* Card Top Bar */
.card-ref-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.ref-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teal-num {
  background: #0d8f96;
}

.pink-num {
  background: #e43f8b;
}

.ref-phase-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.teal-pill {
  background: #e0f7f8;
  color: #0d8f96;
}

.pink-pill {
  background: #fce7f3;
  color: #db2777;
}

/* Icon Halo */
.card-ref-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.icon-circle-halo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teal-halo {
  background: #f0fdfe;
  border: 2px solid #ccf2f4;
}

.pink-halo {
  background: #fff1f7;
  border: 2px solid #fce7f3;
}

/* Card Titles and Text */
.card-ref-title {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.card-ref-body {
  font-size: 1rem;
  color: #000000;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

/* Bottom Tag */
.card-ref-bottom-tag {
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.teal-bottom-tag {
  background: #e6f7f8;
  color: #0e7c81;
}

.pink-bottom-tag {
  background: #fdf2f8;
  color: #be185d;
}

.tag-check-circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.teal-check {
  background: #0d8f96;
}

.pink-check {
  background: #e43f8b;
}

/* Chevron Connectors */
.journey-chevron-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.chevron-teal {
  color: #90e2e5;
}

.chevron-pink {
  color: #f8b4d9;
}

/* Bottom Milestones Bar */
.journey-bottom-milestones {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 15px 0 5px;
}

.milestones-line {
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #d1e5e7;
  transform: translateY(-50%);
  z-index: 1;
}

.milestones-nodes {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}

.milestone-node {
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-outer {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-teal .node-outer {
  border: 3px solid #0d8f96;
}

.node-teal .node-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d8f96;
}

.node-pink .node-outer {
  border: 3px solid #e43f8b;
}

.node-pink .node-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e43f8b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .journey-ref-section {
    padding: 30px 0;
  }
  .journey-ref-header {
    margin-bottom: 28px;
  }
  .journey-ref-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }
  .journey-cards-wrapper {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    align-items: center;
  }
  .journey-ref-card {
    flex: none;
    width: 100%;
    max-width: 540px;
    padding: 24px 20px;
    border-radius: 18px;
    height: auto;
  }
  .card-ref-icon-wrap {
    margin-bottom: 15px;
  }
  .icon-circle-halo {
    width: 66px;
    height: 66px;
  }
  .card-ref-title {
    font-size: 1.15rem;
    min-height: auto;
    margin-bottom: 10px;
  }
  .card-ref-body {
    font-size: 0.94rem;
    line-height: 1.6;
    min-height: auto;
    color: #475569;
  }
  .journey-chevron-connector {
    transform: rotate(90deg);
    margin: 4px 0;
  }
  .journey-chevron-connector svg {
    width: 26px;
    height: 26px;
  }
  .journey-bottom-milestones {
    display: none;
  }
}

@media (max-width: 576px) {
  .journey-ref-title {
    font-size: 1.85rem;
  }
  .journey-ref-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .card-ref-title {
    font-size: 1.05rem;
  }
  .card-ref-body {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .icon-circle-halo {
    width: 58px;
    height: 58px;
  }
  .icon-circle-halo svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   Image 1 Matched: Results & Recovery Showcase
   ========================================================================== */
.res-rec-showcase-section {
  padding: 30px 0 30px;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(237, 251, 248, 0.8) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(254, 242, 246, 0.85) 0%,
      transparent 45%
    ),
    #faf9f8;
  position: relative;
  overflow: hidden;
}

.res-bg-dots {
  position: absolute;
  bottom: 25px;
  left: 30px;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(
    rgba(16, 28, 61, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 15px 15px;
  pointer-events: none;
  z-index: 1;
}

.res-bg-wave-rings {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 70, 126, 0.1);
  box-shadow:
    0 0 0 25px rgba(224, 70, 126, 0.05),
    0 0 0 55px rgba(224, 70, 126, 0.03);
  pointer-events: none;
  z-index: 1;
}

.results-recovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Base Card */
.res-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 36px 34px;
  box-shadow: 0 12px 36px rgba(16, 28, 61, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.res-card.theme-teal {
  border-color: rgba(22, 152, 157, 0.16);
}

.res-card.theme-pink {
  border-color: rgba(224, 70, 126, 0.16);
}

/* Card Header */
.res-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  min-height: 140px;
}

.res-header-left {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.res-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.res-badge-icon.teal-badge {
  background: #edfbf8;
  color: #16989d;
  border: 1.5px solid rgba(22, 152, 157, 0.25);
  box-shadow: 0 4px 12px rgba(22, 152, 157, 0.15);
}

.res-badge-icon.pink-badge {
  background: #fef2f7;
  color: #e0467e;
  border: 1.5px solid rgba(224, 70, 126, 0.25);
  box-shadow: 0 4px 12px rgba(224, 70, 126, 0.15);
}

.res-card-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  color: #101c3d;
  line-height: 1.18;
  margin-bottom: 12px;
}

.res-card-title.pink-title {
  color: #581832;
}

.res-title-bar {
  width: 44px;
  height: 3px;
  border-radius: 2px;
}

.res-title-bar.teal-bar {
  background: #16989d;
}

.res-title-bar.pink-bar {
  background: #e0467e;
}

.res-header-img-fade {
  position: absolute;
  top: -38px;
  right: -36px;
  width: 200px;
  height: 180px;
  overflow: hidden;
  border-radius: 0 28px 0 0;
  z-index: 1;
}

.res-header-img-fade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.res-img-gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.res-img-gradient-overlay.teal-overlay {
  background:
    linear-gradient(
      90deg,
      #ffffff 12%,
      rgba(255, 255, 255, 0.45) 45%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 55%, #ffffff 100%);
}

.res-img-gradient-overlay.pink-overlay {
  background:
    linear-gradient(
      90deg,
      #ffffff 12%,
      rgba(255, 255, 255, 0.45) 45%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 55%, #ffffff 100%);
}

.res-card-intro {
  font-size: 1rem;
  color: #000000;
  line-height: 1.62;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* Checklist items in white pill boxes */
.res-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.res-check-pill {
  background: #fbfdfe;
  border: 1px solid #e7eff3;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(16, 28, 61, 0.02);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.res-check-pill:hover {
  transform: translateX(4px);
  border-color: #16989d;
  background: #ffffff;
}

.pill-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-check-icon.teal-icon {
  background: #16989d;
  color: #ffffff;
}

/* Results Emphasis Box */
.res-emphasis-card {
  margin-top: auto;
  background: #f0faf9;
  border: 1px solid rgba(22, 152, 157, 0.25);
  border-left: 4.5px solid #16989d;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.emphasis-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #16989d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emphasis-text p {
  font-size: 1rem;
  color: #1a4d4f;
  line-height: 1.5;
  margin-bottom: 6px;
}

.emphasis-text strong {
  font-size: 1rem;
  color: #0b5c60;
  display: block;
  font-weight: 700;
  line-height: 1.45;
}

/* Recovery Guidance Grid */
.rec-guidance-section {
  margin-bottom: 24px;
}

.rec-guidance-title {
  font-weight: 700;
  font-size: 1rem;
  color: #101c3d;
  margin-bottom: 14px;
}

.rec-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rec-grid-item {
  background: #ffffff;
  border: 1px solid #f6dbe6;
  border-radius: 16px;
  padding: 16px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(224, 70, 126, 0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.rec-grid-item:hover {
  transform: translateY(-3px);
  border-color: #e0467e;
  box-shadow: 0 8px 18px rgba(224, 70, 126, 0.12);
}

.rec-grid-item.rec-span-center {
  grid-column: 2;
  padding: 12px 14px;
  flex-direction: row;
}

.rec-item-icon {
  color: #e0467e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rec-grid-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #2b3342;
  line-height: 1.3;
}

/* Recovery Warning Card */
.rec-warning-card {
  margin-top: auto;
  background: #fef4f8;
  border: 1px solid rgba(224, 70, 126, 0.25);
  border-left: 4.5px solid #e0467e;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.rec-warn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fde2ed;
  color: #e0467e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-warn-text p {
  font-size: 1rem;
  color: #631438;
  line-height: 1.52;
  margin-bottom: 0;
}

/* ==========================================================================
   Image 2 Matched: Why Choose Dr. Mayur Goklani
   ========================================================================== */
.why-choose-showcase-section {
  padding: 30px 0 30px;
  background: #fbf9f8;
  position: relative;
  overflow: hidden;
}

.why-bg-dots {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(
    rgba(16, 28, 61, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 15px 15px;
  pointer-events: none;
  z-index: 1;
}

.why-bg-wave-rings {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 70, 126, 0.1);
  box-shadow:
    0 0 0 25px rgba(224, 70, 126, 0.05),
    0 0 0 55px rgba(224, 70, 126, 0.03);
  pointer-events: none;
  z-index: 1;
}

.why-showcase-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.why-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.why-kicker .kicker-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e0467e;
  text-transform: uppercase;
}

.why-main-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: #101c3d;
  margin: 6px 0 16px;
  line-height: 1.1;
}

.why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 6 Feature Cards Grid (3 Columns x 2 Rows) */
.why-cards-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

.why-feature-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e7eff2;
  padding: 34px 24px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(16, 28, 61, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(16, 28, 61, 0.08);
}

.why-feature-card.theme-teal:hover {
  border-color: #16989d;
}

.why-feature-card.theme-pink:hover {
  border-color: #e0467e;
}

/* Top Arch Overlapping Badge */
.why-arch-badge-wrap {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-arch-line {
  position: absolute;
  top: -3px;
  width: 60px;
  height: 30px;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  border-top: 2.5px solid transparent;
}

.why-arch-line.teal-arch {
  border-top-color: #16989d;
}

.why-arch-line.pink-arch {
  border-top-color: #e0467e;
}

.why-arch-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.why-arch-badge.teal-bg {
  border: 1.5px solid rgba(22, 152, 157, 0.3);
  color: #16989d;
}

.why-arch-badge.pink-bg {
  border: 1.5px solid rgba(224, 70, 126, 0.3);
  color: #e0467e;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.38;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
}

.why-card-title.teal-title {
  color: #16989d;
}

.why-card-title.pink-title {
  color: #e0467e;
}

.why-card-text {
  font-size: 0.86rem;
  color: #556272;
  line-height: 1.62;
  margin: 0;
}

/* Bottom Highlight Full-Width Banner */
.why-bottom-highlight-banner {
  background: #ffffff;
  border: 1.5px solid rgba(22, 152, 157, 0.28);
  border-radius: 20px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 6px 20px rgba(16, 28, 61, 0.04);
  position: relative;
  z-index: 2;
}

.banner-medal-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edfbf8;
  border: 1.5px solid rgba(22, 152, 157, 0.3);
  color: #16989d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-highlight-text {
  flex-grow: 1;
}

.banner-highlight-text p {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.5;
}

.banner-highlight-text strong {
  font-size: 0.94rem;
  color: #16989d;
  font-weight: 700;
  line-height: 1.5;
}

.banner-doctor-sketch {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries for New Showcases */
@media (max-width: 992px) {
  .results-recovery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-cards-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-cards-showcase-grid {
    grid-template-columns: 1fr;
  }
  .why-main-title {
    font-size: 2.3rem;
  }
  .rec-guidance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rec-grid-item.rec-span-center {
    grid-column: span 2;
  }
  .why-bottom-highlight-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-doctor-sketch {
    display: none;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
}

.faq-toggle-icon {
  font-size: 1.3rem;
  color: var(--primary-teal);
  transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: var(--lux-pearl);
}

.faq-answer p {
  padding: 10px 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Final CTA Section (Logo Color Theme)
   ========================================================================== */
.cta-luxury-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f0fafb 0%, #e6f6f7 40%, #fdf2f7 100%);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.cta-luxury-card {
  background: #ffffff;
  border: 1px solid rgba(22, 152, 157, 0.22);
  border-radius: 28px;
  padding: 46px 44px;
  box-shadow:
    0 16px 45px rgba(22, 152, 157, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.cta-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  border: 1px solid rgba(228, 63, 139, 0.25);
  color: var(--accent-pink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.cta-kicker-badge .sparkle-icon {
  color: var(--accent-pink);
  font-size: 0.85rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 0.95rem;
  color: #4c4c4c;
  line-height: 1.7;
  margin-bottom: 24px;
}

.clinic-address-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--teal-light);
  border: 1px solid rgba(22, 152, 157, 0.22);
  border-left: 4px solid var(--primary-teal);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.clinic-address-badge:hover {
  background: #def4f5;
  border-color: var(--primary-teal);
}

.clinic-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22, 152, 157, 0.35);
}

.clinic-badge-details strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.clinic-badge-details span {
  font-size: 0.84rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.cta-action-wrap {
  margin-top: 8px;
}

.btn-cta-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--teal-dark) 100%
  );
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(22, 152, 157, 0.32);
  transition: var(--transition);
}

.btn-cta-luxury:hover {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--primary-teal) 100%
  );
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 152, 157, 0.45);
}

.btn-cta-luxury svg {
  transition: transform 0.3s ease;
}

.btn-cta-luxury:hover svg {
  transform: translateX(4px);
}

.cta-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f8fbfb;
  border: 1px solid rgba(22, 152, 157, 0.2);
  color: #1e293b;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 30px;
  transition: var(--transition);
}

.cta-feat-chip:hover {
  background: var(--teal-light);
  border-color: var(--primary-teal);
  color: var(--teal-dark);
}

.cta-feat-chip svg {
  color: var(--primary-teal);
}

.cta-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-img-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 152, 157, 0.22);
  box-shadow: 0 16px 40px rgba(22, 152, 157, 0.1);
  background: #f1f8f8;
}

.cta-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-img-card:hover .cta-img {
  transform: scale(1.03);
}

.cta-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 251, 0.05) 50%,
    rgba(13, 112, 116, 0.3) 100%
  );
  pointer-events: none;
}

.cta-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(22, 152, 157, 0.14);
  z-index: 2;
}

.cta-floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-pink), #b82367);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(228, 63, 139, 0.35);
}

.cta-floating-badge .badge-head {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  display: block;
}

.cta-floating-badge .badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .consultation-card-widget {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }
  .candidacy-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .candidacy-media-wrapper {
    min-height: 380px;
    max-height: 440px;
  }
  .journey-cards-grid,
  .aesthetic-journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .results-recovery-grid {
    grid-template-columns: 1fr;
  }
  .cta-luxury-card {
    padding: 34px 28px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .surgeon-name {
    font-size: 2.4rem;
  }
  .candidacy-luxury-box {
    padding: 28px 20px;
  }
  .candidacy-media-wrapper {
    min-height: 280px;
  }
  .candidacy-floating-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 14px;
    gap: 10px;
  }
  .c-pill {
    padding: 7px 13px;
    font-size: 0.82rem;
  }
  .cta-luxury-card {
    padding: 26px 18px;
    border-radius: 20px;
  }
  .cta-title {
    font-size: 1.85rem;
  }
  .cta-img-card {
    min-height: 280px;
  }
  .cta-img {
    min-height: 280px;
  }
  .cta-floating-badge {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 10px 14px;
    gap: 10px;
  }
  .doctor-arch-composition {
    width: 290px;
    height: 380px;
  }
  .teal-arch-bg {
    width: 270px;
    height: 330px;
  }
  .doctor-image-holder {
    width: 260px;
    height: 340px;
  }
}

@media (max-width: 576px) {
  .btn-cta-luxury {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
    font-size: 0.88rem;
  }
  .cta-img-card,
  .cta-img {
    min-height: 220px;
    max-height: 280px;
  }
}
