/* ========================================
   Dr. Sireesha M.U.R.S — Landing Page CSS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables — Scheme A: Deep Navy & Warm Gold ── */
:root {
  --navy: #028879;
  --teal: #26A498;
  --teal-light: #4BB2A9;
  --gold: #f0ca89;
  --gold-light: #f5d49a;
  --cream: #f0f5ff;
  --white: #ffffff;
  --text-dark: #0c1a3a;
  --text-mid: #000000;
  --text-muted: #000000;
  --border: rgba(232, 168, 56, 0.25);
  --shadow-sm: 0 4px 20px rgba(15, 35, 81, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 35, 81, 0.13);
  --shadow-lg: 0 20px 60px rgba(15, 35, 81, 0.20);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}

p {
  color: var(--text-mid);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   SECTION SPACING IMPROVEMENTS
======================================== */

.section-title {
  margin-bottom: 1.3rem;
}

.section-subtitle {
  max-width: 900px;
  margin-inline: auto;
}

.about,
.services-section,
.advantage-section,
.second-opinion-section,
.precision-section,
.bleeding-section {
  position: relative;
}

.about .container,
.services-section .container,
.advantage-section .container,
.second-opinion-section .container,
.precision-section .container,
.bleeding-section .container {
  position: relative;
  z-index: 2;
}

.section-label {
  margin-bottom: 1rem;
}

.btn-primary-custom {
  margin-top: 0.4rem;
}

.text-center.mt-5 {
  margin-top: 4rem !important;
}

.services-section::after,
.advantage-section::after,
.precision-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: rgba(15, 35, 81, 0.1);
}

/* ── Utility ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8a838;
  display: block;
  margin-bottom: 0.75rem;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 1.75rem;
}

.gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.8;
}

/* ── Navbar ── */
.navbar-custom {
  background: var(--navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 168, 56, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand-custom {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: #fddb96;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-link-custom {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition) !important;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link-custom:hover {
  color: var(--white) !important;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  border: none;
  border-radius: var(--radius);
  padding: 0.45rem 1.2rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.jbsjdknadj {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e8a838, #f0c060);
  color: var(--navy) !important;
  border: none;
  border-radius: var(--radius);
  padding: 0.45rem 1.2rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.dsegdeeqwer img{
    width: 70%;
    margin-left: auto;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 168, 56, 0.4);
}

.navbar-toggler-custom {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
}

.navbar-toggler-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: linear-gradient(160deg, rgba(3, 105, 91, 1) 55%, #0a1a40 100%, #0a1a40 0%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(36, 74, 199, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 1) 60px, rgba(255, 255, 255, 1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 1) 60px, rgba(255, 255, 255, 1) 61px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232, 168, 56, 0.12);
  border: 1px solid rgba(232, 168, 56, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.4rem;
  margin-top: 3.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-description {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-description strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #e8a838, #f0c060);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(232, 168, 56, 0.3);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.hero-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-image-accent::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: 50%;
}

.hero-hospital-badge {
  position: absolute;
  top: -52px;
  right: -16px;
  z-index: 3;
  background: var(--navy);
  border: 1px solid rgba(232, 168, 56, 0.4);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}

/* ========================================
   WIGGLE ANIMATION — hero-hospital-badge
======================================== */

@keyframes wiggle {
  0%   { transform: translate(0px, 0px); }
  8%   { transform: translate(2px, -5px); }
  13%  { transform: translate(-3px, -3px); }
  21%  { transform: translate(1px, -7px); }
  29%  { transform: translate(-2px, -2px); }
  35%  { transform: translate(3px, -6px); }
  42%  { transform: translate(0px, -4px); }
  50%  { transform: translate(-3px, -8px); }
  57%  { transform: translate(2px, -3px); }
  63%  { transform: translate(-1px, -6px); }
  71%  { transform: translate(3px, -2px); }
  78%  { transform: translate(-2px, -7px); }
  85%  { transform: translate(1px, -4px); }
  92%  { transform: translate(-3px, -2px); }
  100% { transform: translate(0px, 0px); }
}

.hero-hospital-badge {
  animation: wiggle 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-origin: center;
}

.hospital-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hospital-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.3;
}

.hospital-loc {
  font-size: 0.68rem;
  color: var(--gold-light);
  display: block;
}

/* ── About / Qualifications ── */
.about {
  background: var(--white);
  padding: 90px 5%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left column — photo + name */
.about-photo-col {
  position: sticky;
  top: 40px;
}

.about-photo-box {
  background: var(--cream);
  border: 2px dashed rgba(36, 74, 199, 0.25);
  border-radius: 14px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
  margin-top: 3.6rem;
}

.about-photo-box:hover {
  border-color: rgba(232, 168, 56, 0.5);
}

.about-photo-box i {
  font-size: 2.5rem;
  color: var(--teal-light);
  opacity: 0.5;
}

.about-photo-box p {
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-muted);
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.about-title-tag {
  font-size: 0.83rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Credential chips below name */
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.about-chip {
  display: inline-block;
  background: rgba(36, 74, 199, 0.07);
  border: 1px solid rgba(36, 74, 199, 0.18);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Right column — content */
.about-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* Qualifications table */
.qual-section-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(15, 35, 81, 0.08);
}

.qual-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.qual-table tr {
  border-bottom: 1px solid rgba(15, 35, 81, 0.06);
  transition: background var(--transition);
}

.qual-table tr:last-child {
  border-bottom: none;
}

.qual-table tr:hover {
  background: var(--cream);
}

.qual-table td {
  padding: 0.9rem 0.5rem;
  font-size: 0.9rem;
  vertical-align: top;
}

.qual-table td:first-child {
  width: 38px;
  color: var(--gold);
  font-size: 1.05rem;
  padding-right: 1rem;
  padding-top: 1rem;
}

.qual-degree {
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
}

.qual-inst {
  color: var(--text-muted);
  font-size: 0.83rem;
  display: block;
}

.qual-badge {
  display: inline-block;
  margin-top: 0.4rem;
  background: rgba(232, 168, 56, 0.12);
  color: #8a5a00;
  border: 1px solid rgba(232, 168, 56, 0.35);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Memberships */
.memberships-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.memberships-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(15, 35, 81, 0.05);
  transition: color var(--transition);
}

.memberships-list li:last-child {
  border-bottom: none;
}

.memberships-list li:hover {
  color: var(--navy);
}

.memberships-list i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Doctor quote */
.doctor-quote {
  border-left: 4px solid var(--teal);
  background: linear-gradient(135deg, rgba(15, 35, 81, 0.03) 0%, rgba(36, 74, 199, 0.04) 100%);
  padding: 1.4rem 1.6rem;
  border-radius: 0 10px 10px 0;
  margin-top: 0.5rem;
  position: relative;
}

.doctor-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(232, 168, 56, 0.15);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}

.doctor-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.doctor-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-col {
    position: static;
  }

  .about-photo-box {
    aspect-ratio: 16/9;
    max-height: 260px;
  }

  .advantage-pillar {
    height: auto;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 5%;
  }
}

/* ── Specialist Advantage ── */
.advantage-section {
  padding: 100px 0;
  background: var(--cream);
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 35, 81, 0.07);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comparison-card.featured {
  border-color: var(--teal);
  position: relative;
}

.comparison-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--teal);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 6px 6px;
}

.card-role-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}

.card-role-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.card-feature-list {
  list-style: none;
  padding: 0;
}

.card-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: #000;
  border-bottom: 1px solid rgba(15, 35, 81, 0.05);
}

.card-feature-list li:last-child {
  border-bottom: none;
}

.card-feature-list li i {
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.li-check i {
  color: var(--teal);
}

.li-neutral i {
  color: var(--text-muted);
}

.advantage-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
  height: auto;
  min-height: 14rem;
}

.advantage-pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pillar-text {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.7;
}

/* ── Services ── */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(15, 35, 81, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon i {
  color: white;
  font-size: 1.4rem;
}

.service-focus {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-content {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.service-benefit {
  display: none;
  font-size: 0.84rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: rgba(36, 74, 199, 0.06);
  border-radius: var(--radius);
  border-left: 2px solid var(--teal-light);
}

.dashnfdgfae.btn-primary-custom {
  background: var(--navy) !important;
  color: #fff !important;
}

/* ========================================
   SERVICES SECTION STRUCTURE IMPROVEMENTS
======================================== */

.services-section .section-title {
  margin-bottom: 1.2rem;
}

.services-section .section-subtitle {
  max-width: 850px;
  margin-inline: auto;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.services-section .row {
  row-gap: 2rem;
}

.service-card {
  padding: 2.3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-name {
  min-height: 65px;
  display: flex;
  align-items: center;
}

.service-content {
  margin-top: 0.8rem;
  line-height: 1.9;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* ========================================
   RECOVERY CTA STRIP
======================================== */

.recovery-cta-strip {
  padding: 85px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2f55 100%);
}

.recovery-cta-strip .strip-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.recovery-cta-strip h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.recovery-cta-strip p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 720px;
}

/* ── Second Opinions ── */
.second-opinion-section {
  padding: 100px 0;
  background: var(--cream);
}

.so-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

.so-step:hover {
  transform: translateX(4px);
}

.so-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.so-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.so-step-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.reason-item {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.reason-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.reason-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tele-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(36, 74, 199, 0.1), rgba(74, 111, 212, 0.1));
  border: 1px solid rgba(36, 74, 199, 0.25);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1.5rem;
}

/* ── Robotic Surgery ── */
.robotic-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a40 100%);
  position: relative;
  overflow: hidden;
}

.robotic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(36, 74, 199, 0.25) 0%, transparent 65%);
}

.robotic-section .section-label {
  color: #e8a838;
}

.robotic-section .section-title {
  color: var(--white);
}

.robotic-section .section-subtitle {
  color: rgba(255, 255, 255, 1);
}

.robotic-section .gold-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.robotic-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2rem;
}

.robotic-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.robotic-feature:last-of-type {
  border-bottom: none;
}

.rf-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 168, 56, 0.15);
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rf-icon i {
  color: var(--gold-light);
  font-size: 1rem;
}

.rf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.rf-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
}

.patient-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pb-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: background var(--transition);
}

.pb-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pb-card i {
  font-size: 1.4rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}

.pb-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.pb-card span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}

/* ── Fertility ── */
.fertility-section {
  padding: 100px 0;
  background: var(--white);
}

.fert-protocol {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(15, 35, 81, 0.06);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.fert-protocol:hover {
  border-color: var(--teal-light);
}

.fert-protocol-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fert-protocol-title i {
  color: var(--teal);
  font-size: 0.9rem;
}

.fert-protocol-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.candidate-box {
  background: linear-gradient(135deg, var(--navy), #0d1e48);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
}

.candidate-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.candidate-box strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy), #0a1a40);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(36, 74, 199, 0.35) 0%, transparent 70%);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}

.cta-actions {
  position: relative;
}

/* ── Footer ── */
.footer-custom {
  background: var(--navy);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(232, 168, 56, 0.15);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(36, 74, 199, 0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
  border: none;
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(36, 74, 199, 0.55);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-image-frame img,
  .hero-image-placeholder {
    height: 380px;
  }

  .hero-hospital-badge {
    display: none;
  }

  .about-section,
  .advantage-section,
  .services-section,
  .second-opinion-section,
  .robotic-section,
  .fertility-section,
  .cta-section {
    padding: 70px 0;
  }

  .patient-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-image-wrap {
    margin-top: 3rem;
  }

  .hero-image-frame img,
  .hero-image-placeholder {
    height: auto;
  }

  .patient-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .so-step,
  .reason-item,
  .fert-protocol {
    padding: 1rem 1.1rem;
  }

  .philosophy-card {
    padding: 1.75rem;
  }

  .philosophy-text {
    font-size: 1.05rem;
  }
  
  .guidance-headline.text-center{
      text-align: left !important;
  }
  
  .aefhyuytgre.justify-content-center{
      justify-content: left !important;
  }
  
  .guidance-chip {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .patient-benefit-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.65rem;
  }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #0f2351;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0f2351;
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.hero-image-placeholder .appointment-form {
  flex: 1.2;
  padding: 30px;
}

/* ========================================
   FADE-IN ANIMATION — appointment-form
======================================== */

@keyframes formFadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0px); }
}

.hero-image-frame {
  animation: formFadeIn 1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.appointment-form  {
  animation: formFadeIn 1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-image-placeholder .appointment-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000;
}

.hero-image-placeholder .form-group {
  margin-bottom: 20px;
}

.hero-image-placeholder .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
  font-size: 0.8rem;
}

.dhbndhfjdfserer button {
  background: var(--navy);
  color: #fff;
}

.hero-image-placeholder input,
.hero-image-placeholder select,
.hero-image-placeholder textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--primary-blue);
  border-radius: 10px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.hero-image-placeholder input:focus,
.hero-image-placeholder select:focus,
.hero-image-placeholder textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Mobile Fix */
@media (max-width: 768px) {

  .hero-image-placeholder .contact-info,
  .hero-image-placeholder .appointment-form {
    padding: 40px 20px;
  }
}


@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 1.25rem;
    bottom: 5.5rem;
    width: 50px;
    height: 50px;
  }
}







.section-title {
  margin-bottom: 50px;
}

.section-title span {
  color: #ff6b00;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
  color: var(--navy);
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  margin: 10px;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
}

.quote-icon {
  font-size: 70px;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: bold;
  height: 35px;
}

.review-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background-color: var(--avatar-color, #e8701a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: inherit;
  user-select: none;
}

.review-footer h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 4px;
}

.review-footer span {
  color: #777;
  font-size: 14px;
}

/* Owl Nav */
.review-slider .owl-nav {
  margin-top: 35px;
  text-align: center;
}

.review-slider .owl-nav button.owl-prev,
.review-slider .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 8px;
  font-size: 22px !important;
  transition: 0.3s;
}

.review-slider .owl-nav button.owl-prev:hover,
.review-slider .owl-nav button.owl-next:hover {
  background: #ff6b00 !important;
  color: #fff !important;
}

/* Dots */
.review-slider .owl-dots {
  margin-top: 20px;
}

.review-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: #d0d0d0 !important;
}

.review-slider .owl-dot.active span {
  background: #ff6b00 !important;
}

@media(max-width:768px) {
  .section-title h2 {
    font-size: 30px;
  }

  .review-card {
    padding: 25px;
  }
}







/* ══════════════════════════════════════
   NEW SECTIONS — CONTENT UPDATE
   ══════════════════════════════════════ */

/* ── Expert Guidance Strip ── */
.expert-guidance-strip {
  background: var(--navy);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(232, 168, 56, 0.2);
  border-bottom: 1px solid rgba(232, 168, 56, 0.2);
}

.guidance-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.guidance-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 168, 56, 0.12);
  border: 1px solid rgba(232, 168, 56, 0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}

.guidance-chip img {
  height: 2rem;
}

/* ── Precision Oncology Section ── */
.precision-section {
  padding: 100px 0;
  background: var(--cream);
}

.precision-sub {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}

.precision-highlight-box {
  background: linear-gradient(135deg, var(--navy), #0d2a60);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 0.5rem;
}

.precision-highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.precision-highlight-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.consult-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 35, 81, 0.07);
}

.consult-item:last-child {
  border-bottom: none;
}

.consult-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-icon img {
  height: 1.5rem;
}

.consult-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.consult-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── Heavy Bleeding Section ── */
.bleeding-section {
  padding: 100px 0;
  background: var(--white);
}

.bleeding-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 0.5rem;
}

.symptoms-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.symptoms-list {
  list-style: none;
  padding: 0;
}

.symptoms-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 35, 81, 0.06);
}

.symptoms-list li:last-child {
  border-bottom: none;
}

.symptoms-list i {
  color: #c0392b;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-choose-box {
  background: linear-gradient(135deg, var(--cream), rgba(232, 168, 56, 0.08));
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.why-choose-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 35, 81, 0.07);
  font-size: 0.93rem;
  color: var(--white);
  font-weight: 500;
}

.why-choose-item:last-of-type {
  border-bottom: none;
}

.why-choose-item img {
  width: 2rem;
}

/* ── Infrastructure Section ── */
.infrastructure-section {
  padding: 100px 0 30px 0;
  background: var(--white);
}

.infra-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(15, 35, 81, 0.06);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.infra-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.infra-icon img {
  height: 2.3rem;
}

.infra-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.infra-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.trust-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.trust-card:hover {
  border-left-color: var(--gold);
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Warning Signs Section ── */
.warning-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a40 100%);
}

.warning-section .section-label {
  color: var(--gold-light);
}

.warning-section .section-title {
  color: var(--white);
}

.warning-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.warning-section .gold-line.centered {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.warning-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.warning-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.warning-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 57, 43, 0.2);
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.warning-icon i {
  font-size: 1.5rem;
  color: #e74c3c;
}

.warning-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.warning-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* ── Treatment Journey Section ── */
.journey-section {
  padding: 100px 0;
  background: var(--cream);
}

.journey-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 35, 81, 0.06);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.treatment-step,
.journey-step,
.process-step {
  position: relative;
  overflow: hidden;
}

.treatment-step::before,
.journey-step::before,
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.treatment-step,
.journey-step,
.process-step {
  padding: 2rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.treatment-step:hover,
.journey-step:hover,
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.journey-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(2, 136, 121, 0.7);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.journey-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.journey-why-box {
  background: linear-gradient(135deg, var(--navy), #0d2a60);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-top: 1.5rem;
  /* width: 105%;
  margin: 1.5rem auto auto auto; */
}

.jbdjabd {
  font-size: 0.72rem !important;
}

/* ========================================
   FERTILITY SPARING CALLOUT (Journey Section)
======================================== */

.fertility-callout {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(var(--teal-rgb, 0, 128, 128), 0.08);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.fsc-icon {
  font-size: 1.8rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.fsc-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.fsc-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted, #555);
  margin: 0;
}

.journey-why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.journey-why-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin: 0;
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(2, 136, 121, 0.12);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open {
  border-color: rgba(2, 136, 121, 0.4);
  box-shadow: 0 6px 32px rgba(2, 136, 121, 0.09);
  background: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--teal);
}

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-collapse {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
}

@media (max-width: 767.98px) {
  .faq-section { padding: 70px 0; }
  .faq-question { font-size: 0.95rem; padding: 1.15rem 1.25rem; }
  .faq-answer { padding: 0 1.25rem 1.2rem; }
}

/* ========================================
   FAQ IMPROVEMENTS
======================================== */

.accordion-item,
.faq-item {
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 35, 81, 0.08) !important;
}

.accordion-button {
  padding: 1.4rem 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.accordion-body {
  line-height: 1.9;
  padding: 1.5rem;
}

@media (max-width: 767.98px) {

  .precision-section,
  .bleeding-section,
  .infrastructure-section,
  .warning-section,
  .journey-section,
  .faq-section {
    padding: 70px 0;
  }

  .journey-why-box {
    padding: 1.75rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

/* ── Reviews Section Padding ── */
.reviews-section {
  padding: 100px 0;
  background: var(--cream);
}


/* ══════════════════════════════════════
   CONTENT UPDATE — ADDITIONAL STYLES
   ══════════════════════════════════════ */

/* ── Issues CTA Strip (Are You Struggling) ── */
.issues-cta-strip {
  background: linear-gradient(135deg, var(--navy), #034d44);
  padding: 70px 0;
  border-top: 1px solid rgba(232, 168, 56, 0.2);
  border-bottom: 1px solid rgba(232, 168, 56, 0.2);
}

.issues-cta-strip .strip-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}

.issues-cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.issues-cta-strip .strip-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.issues-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.issues-cta-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.issues-cta-list li:last-child {
  border-bottom: none;
}

.issues-cta-list li img {
  width: 1.5rem;
}

/* ── Precision explore box ── */
.precision-explore-box {
  background: linear-gradient(135deg, rgba(2, 136, 121, 0.07), rgba(232, 168, 56, 0.07));
  border: 1px solid rgba(2, 136, 121, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.precision-explore-box .explore-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.precision-explore-box .explore-text p {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── Precision closing paragraph ── */
.precision-closing-text {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 35, 81, 0.08);
}

/* ── Pelvic pain teaser ── */
.pelvic-pain-teaser {
  background: rgba(192, 57, 43, 0.06);
  border-left: 4px solid #c0392b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
  color: #7b1c10;
  font-weight: 600;
}

.pelvic-pain-teaser span {
  font-weight: 400;
  color: var(--text-mid);
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

/* ── World-Class banner ── */
.world-class-banner {
  background: linear-gradient(90deg, var(--teal), var(--navy));
  padding: 1.1rem 2rem;
  text-align: center;
  overflow: hidden;
}

.world-class-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ── Specialized Women's Cancer Care banner ── */
.womens-cancer-banner {
  background: linear-gradient(135deg, #e8a838, #f0c060);
  padding: 1.25rem 0;
  text-align: center;
}

.womens-cancer-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ── Advanced Cancer Care CTA strip ── */
.advanced-care-cta {
  background: var(--cream);
  padding: 55px 0;
  border-top: 1px solid rgba(15, 35, 81, 0.07);
  border-bottom: 1px solid rgba(15, 35, 81, 0.07);
}

.advanced-care-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.advanced-care-cta p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── Fertility section desc ── */
.fertility-section .fertility-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ── Hero chip list ── */
.hero-chip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.hero-chip-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.hero-chip-list li img {
    width: 2rem;
}

/* ── Appointment form desc ── */
.appointment-form .form-desc {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .issues-cta-strip {
    padding: 50px 0;
  }

  .advanced-care-cta {
    padding: 40px 0;
  }

  .hero-chip-list {
    grid-template-columns: 1fr;
  }

  .precision-explore-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Features list (advantage pillars) ── */
.features-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.features-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.65;
}

/* ── Precision Treatment sub-heading ── */
.precision-treatment-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  font-style: italic;
}


/* ========================================
   STICKY — why-choose-box inside bleeding-section
======================================== */

.why-choose-col {
  position: sticky;
  top: 80px; /* matches navbar height */
  align-self: flex-start;
}

@media (max-width: 991px) {
  .why-choose-col {
    position: static;
  }
  
  .doiewjrer.d-none{
      display: block !important;
  }
  
  .shdegwrqwe{
      margin-top: 0 !important;
  }
}