/* ═══════════════════════════════════════════════════════════════
   KIDNEY TRANSPLANT IN JAIPUR — Landing Page Stylesheet  (v2)
   Enhance Health Clinic · Dr. Ajay Pal Singh, Vaishali Nagar
   ───────────────────────────────────────────────────────────────
    1. Variables (EDIT COLOURS HERE)      14. Comparison Table
    2. Reset & Base                       15. Inset Pitch Card
    3. Typography & Section Commons       16. Process Steps
    4. Buttons                            17. Tests Required
    5. Topbar                             18. Donor & Law
    6. Header / Navigation                19. Hospital Association
    7. Hero (bg image) + Lead Form        20. Why Choose Us
    8. Ticker                             21. Google Reviews Wall
    9. Stats Strip                        22. Gallery
   10. Sticky Split (image + hover list)  23. FAQ
   11. Doctor Profile                     24. Contact & Map
   12. Conditions Grid                    25. Other Treatments
   13. Types of Transplant                26. Footer / Mobile Bar / Modal
═══════════════════════════════════════════════════════════════ */

/* ═══ 1. VARIABLES — EDIT COLOURS HERE ═══════════════════════ */
:root {
  --navy: #0C2658;
  /* sampled from logo wordmark */
  --navy-dark: #071A3E;
  --navy-mid: #17407F;
  --navy-light: #2B5AA8;
  --red: #C31E2C;
  /* sampled from logo kidney */
  --red-dark: #9A1622;
  --red-light: #E23443;
  --red-tint: #FCEEEF;
  --blue: #1D5FAE;
  --blue-tint: #EDF3FB;
  --ice: #F3F7FC;
  --paper: #F9FBFD;
  --white: #FFFFFF;
  --ink: #14213D;
  --grey: #5C6B85;
  --line: #E1E8F2;
  --green: #0E7C5A;
  --amber: #B4700A;

  --shadow-xs: 0 1px 3px rgba(12, 38, 88, .06);
  --shadow-sm: 0 3px 10px rgba(12, 38, 88, .07);
  --shadow-md: 0 8px 24px rgba(12, 38, 88, .10);
  --shadow-lg: 0 18px 46px rgba(12, 38, 88, .15);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1220px;
  --nav-height: 70px;
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ═══ 2. RESET & BASE ═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
  width: 100%
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

/* ═══ 3. TYPOGRAPHY & SECTION COMMONS ═══════════════════════ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.26;
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.14;
  font-weight: 800
}

h2 {
  font-size: clamp(21px, 2.15vw, 30px)
}

h3 {
  font-size: clamp(17px, 1.5vw, 21px)
}

h4 {
  font-size: 16px;
  line-height: 1.38
}

p {
  color: var(--grey)
}

strong {
  color: var(--ink);
  font-weight: 600
}

.text-red {
  color: var(--red)
}

.section {
  padding: 60px 0;
  position: relative;
  overflow-x: clip
}

.section-sm {
  padding: 44px 0
}

.bg-white {
  background: var(--white)
}

.bg-ice {
  background: var(--ice)
}

.bg-paper {
  background: var(--paper)
}

.bg-blue-tint {
  background: var(--blue-tint)
}

.bg-navy {
  background: var(--navy-dark);
  color: #fff
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: #fff
}

.bg-navy p {
  color: rgba(255, 255, 255, .75)
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center
}

.section-head.left {
  margin-inline: 0;
  text-align: left
}

.section-head p {
  margin-top: 11px;
  font-size: 15px;
  line-height: 1.72
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 11px
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

.section-head.left .section-tag::after {
  display: none
}

.bg-navy .section-tag {
  color: #FF9AA3
}

.bg-navy .section-tag::before,
.bg-navy .section-tag::after {
  background: #FF9AA3
}

/* ═══ 4. BUTTONS ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .25s ease;
  line-height: 1.2;
  text-align: center
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(195, 30, 44, .28)
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(195, 30, 44, .36)
}

.btn-navy {
  background: var(--navy);
  color: #fff
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 38, 88, .28)
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line)
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px)
}

.btn-glass {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px)
}

.btn-glass:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px)
}

.btn-whatsapp {
  background: #25D366;
  color: #07361C;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .28)
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  color: #fff;
  transform: translateY(-2px)
}

.btn-lg {
  padding: 14px 30px;
  font-size: 15.5px
}

.btn-sm {
  padding: 9px 17px;
  font-size: 13px
}

.btn-block {
  width: 100%
}

/* ═══ 5. TOPBAR ═════════════════════════════════════════════ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
  font-size: 12.6px;
  padding: 8px 0
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s
}

.topbar a:hover {
  color: #fff
}

.topbar svg {
  width: 13px;
  height: 13px;
  opacity: .72;
  flex-shrink: 0
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6)
}

/* ═══ 6. HEADER / NAVIGATION ════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s
}

.site-header.scrolled {
  box-shadow: 0 3px 20px rgba(12, 38, 88, .1)
}

.nav-wrap {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-menu a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
  transition: color .2s
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  transition: width .28s
}

.nav-menu a:hover {
  color: var(--red)
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%
}

.nav-menu a.active {
  color: var(--red);
  font-weight: 600
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-height: 75vh;
  overflow-y: auto
}

.mobile-nav.open {
  display: block
}

.mobile-nav a {
  display: block;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--ice)
}

.mobile-nav-cta {
  padding: 16px 22px;
  display: grid;
  gap: 9px
}

/* ═══ 7. HERO — background image + lead form ════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 62px;
  color: #fff;
  background-image: linear-gradient(105deg, rgba(7, 26, 62, .96) 0%, rgba(12, 38, 88, .9) 45%, rgba(12, 38, 88, .72) 100%), url('https://www.enhancehealthclinic.co/assets/Kidney-images/care/kidney.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(195, 30, 44, .22), transparent 55%);
  pointer-events: none
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 6px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25)
}

.hero h1 {
  color: #fff;
  margin-bottom: 16px
}

.hero h1 span {
  color: #FF8892
}

.hero-lead {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.74;
  max-width: 560px;
  margin-bottom: 26px
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 26px
}

.hero-doctor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.hero-doctor img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255, 255, 255, .3);
  background: var(--navy-mid)
}

.hero-doctor-name {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  display: block
}

.hero-doctor-role {
  font-size: 12.6px;
  color: rgba(255, 255, 255, .64)
}

/* Lead form — navy header, red only on the submit button */
.hero-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden
}

.hero-form-head {
  background: linear-gradient(125deg, var(--navy), var(--navy-mid));
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  position: relative
}

.hero-form-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red)
}

.hero-form-head h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 3px
}

.hero-form-head p {
  color: rgba(255, 255, 255, .78);
  font-size: 12.6px;
  margin: 0
}

.hero-form-body {
  padding: 20px 22px 22px
}

.hero-form .form-group {
  margin-bottom: 12px
}

.hero-form-note {
  font-size: 11.4px;
  color: var(--grey);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5
}

.hero-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11.4px;
  color: var(--grey);
  font-weight: 500
}

.hero-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.hero-form-trust svg {
  width: 13px;
  height: 13px;
  color: var(--green)
}

/* Shared form controls */
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12.2px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px
}

.form-group label .req {
  color: var(--red)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: all .22s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 95, 174, .12)
}

.form-group textarea {
  resize: vertical;
  min-height: 80px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 13px
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy)
}

.form-success {
  background: #E6F5EF;
  border: 1px solid #A8DCC6;
  color: #0A5D42;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 13.6px;
  font-weight: 600;
  margin-top: 12px;
  display: none
}

.form-success.show {
  display: block
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0
}

/* ═══ 8. TICKER ═════════════════════════════════════════════ */
.ticker {
  background: var(--red);
  padding: 11px 0;
  overflow: hidden;
  position: relative
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--red), transparent)
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--red), transparent)
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  width: max-content
}

.ticker-item {
  padding: 0 30px;
  font-family: var(--font-head);
  font-size: 12.4px;
  font-weight: 600;
  color: rgba(255, 255, 255, .94);
  letter-spacing: .09em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0
}

.ticker-item .dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .6);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══ 9. STATS STRIP — redesigned with hover ════════════════ */
.stats {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 5
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: -34px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line)
}

.stat {
  padding: 24px 18px 22px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--line);
  transition: background .3s ease;
  overflow: hidden
}

.stat:last-child {
  border-right: none
}

.stat::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .35s ease
}

.stat:hover {
  background: var(--paper)
}

.stat:hover::before {
  transform: scaleX(1)
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 11px;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: all .35s ease
}

.stat-icon svg {
  width: 19px;
  height: 19px
}

.stat:hover .stat-icon {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px) scale(1.06)
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color .3s
}

.stat:hover .stat-num {
  color: var(--red)
}

.stat-label {
  display: block;
  font-size: 11.8px;
  font-weight: 600;
  color: var(--grey);
  margin-top: 7px;
  letter-spacing: .02em
}

/* ═══ 10. STICKY SPLIT — image sticks, points hover ═════════ */
.sticky-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start
}

.sticky-split.reverse {
  grid-template-columns: 1.08fr .62fr;
}

.sticky-split.reverse .sticky-media {
  order: 2
}

.sticky-media {
  position: sticky;
  top: calc(var(--nav-height) + 24px)
}

.sticky-media-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.sticky-media-inner img {
  width: 100%;
  aspect-ratio: 4/4.2;
  object-fit: cover;
  transition: transform .6s ease
}

.sticky-media-inner:hover img {
  transform: scale(1.04)
}

.sticky-media-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 62, .72));
  pointer-events: none
}

.sticky-media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 20px;
  color: #fff
}

.sticky-media-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  color: #fff;
}

.sticky-media-caption span {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
  display: block
}

.hover-list {
  display: grid;
  gap: 11px;
  margin-top: 20px
}

.hover-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--line);
  transition: all .3s ease;
  cursor: default
}

.hover-item:hover {
  border-left-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(6px)
}

.hover-item .hi-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ice);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s ease
}

.hover-item .hi-icon svg {
  width: 18px;
  height: 18px
}

.hover-item:hover .hi-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(-6deg) scale(1.05)
}

.hover-item h4 {
  margin-bottom: 4px;
  transition: color .3s
}

.hover-item:hover h4 {
  color: var(--red)
}

.hover-item p {
  font-size: 13.6px;
  line-height: 1.62;
  margin: 0
}

/* ═══ 11. DOCTOR PROFILE ════════════════════════════════════ */
.doctor-section {
  background: linear-gradient(155deg, var(--ice) 0%, var(--blue-tint) 100%);
  position: relative;
}

.doctor-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 95, 174, .1), transparent 68%)
}

.doctor-section .container {
  position: relative;
  z-index: 2
}

.doctor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
}

.doctor-photo {
  position: sticky;
  top: 100px;
}

.doctor-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy), var(--navy-mid));
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease
}

.doctor-photo-frame:hover {
  transform: translateY(-5px)
}

.doctor-photo-frame img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  object-position: top center
}

.doctor-photo-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 12.6px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 3
}

.degree-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 16px
}

.degree-chips span {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 6px;
  transition: all .25s
}

.degree-chips span:hover {
  background: var(--red);
  transform: translateY(-2px)
}

.doctor-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0
}

.doctor-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  transition: all .3s ease
}

.doctor-point:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.doctor-point .icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s
}

.doctor-point:hover .icon {
  background: var(--red);
  color: #fff
}

.doctor-point .icon svg {
  width: 16px;
  height: 16px
}

.doctor-point h4 {
  font-size: 14px;
  margin-bottom: 2px
}

.doctor-point p {
  font-size: 12.6px;
  line-height: 1.52
}

.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0
}

.doctor-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 13px;
  text-align: center;
  transition: all .3s ease
}

.doctor-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red)
}

.doctor-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 800;
  color: var(--red);
  line-height: 1
}

.doctor-stat span {
  display: block;
  font-size: 11.6px;
  font-weight: 500;
  color: var(--grey);
  margin-top: 6px;
  line-height: 1.35
}

/* ═══ 12. CONDITIONS GRID ═══════════════════════════════════ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.condition-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .32s ease;
  display: flex;
  flex-direction: column
}

.condition-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.condition-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden
}

.condition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease
}

.condition-card:hover .condition-image img {
  transform: scale(1.09)
}

.condition-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 26, 62, .55))
}

.condition-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 9.6px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  display: none;
}

.condition-body {
  padding: 15px 17px 17px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.condition-body h4 {
  margin-bottom: 6px;
  transition: color .28s
}

.condition-card:hover .condition-body h4 {
  color: var(--red)
}

.condition-body p {
  font-size: 13.2px;
  line-height: 1.6;
  flex: 1
}

.condition-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 12.4px;
  font-weight: 600;
  color: var(--red);
  margin-top: 12px
}

.condition-link svg {
  width: 13px;
  height: 13px;
  transition: transform .25s
}

.condition-card:hover .condition-link svg {
  transform: translateX(5px)
}

/* ═══ 13. TYPES OF TRANSPLANT ═══════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 21px;
  transition: all .3s ease;
  border-top: 3px solid var(--line)
}

.type-card:hover {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.type-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 11px
}

.badge-green {
  background: #E6F5EF;
  color: var(--green)
}

.badge-blue {
  background: var(--blue-tint);
  color: var(--blue)
}

.badge-red {
  background: var(--red-tint);
  color: var(--red)
}

.badge-amber {
  background: #FDF3E0;
  color: var(--amber)
}

.type-card h4 {
  margin-bottom: 7px;
  transition: color .28s
}

.type-card:hover h4 {
  color: var(--red)
}

.type-card p {
  font-size: 13.6px;
  line-height: 1.62
}

/* ═══ 14. COMPARISON TABLE ══════════════════════════════════ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  min-width: 0
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 14px
}

.compare-table thead th {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  padding: 13px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600
}

.compare-table thead th:first-child {
  width: 26%
}

.compare-table tbody th {
  padding: 13px 18px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: left;
  font-family: var(--font-head);
  font-size: 13.6px;
  font-weight: 600;
  color: #fff;
  vertical-align: top;
  line-height: 1.5
}

.compare-table tbody td {
  padding: 13px 18px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
  vertical-align: top;
  transition: background .25s
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: rgba(255, 255, 255, .06)
}

.compare-table td.positive {
  color: #9DEBC2
}

.swipe-hint {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 9px
}

.swipe-hint svg {
  width: 14px;
  height: 14px;
  animation: swipe-nudge 1.8s ease-in-out infinite
}

@keyframes swipe-nudge {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(6px)
  }
}

/* ═══ 15. INSET PITCH CARD — contained, with image ══════════ */
.pitch-card {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 30px;
  align-items: center;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative
}

.pitch-card.light {
  background: linear-gradient(120deg, #fff 0%, var(--ice) 100%);
  border: 1px solid var(--line)
}

.pitch-media {
  position: relative;
  align-self: stretch;
  min-height: 190px;
  overflow: hidden
}

.pitch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.pitch-card:hover .pitch-media img {
  transform: scale(1.06)
}

.pitch-body {
  padding: 26px 0
}

.pitch-body h3 {
  color: #fff;
  margin-bottom: 7px;
  font-size: clamp(18px, 1.8vw, 23px)
}

.pitch-body p {
  color: rgba(255, 255, 255, .8);
  font-size: 14.2px;
  line-height: 1.65;
  margin: 0;
  max-width: 480px
}

.pitch-card.light .pitch-body h3 {
  color: var(--navy)
}

.pitch-card.light .pitch-body p {
  color: var(--grey)
}

.pitch-actions {
  padding: 26px 30px 26px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 210px
}

.pitch-actions .btn {
  width: 100%
}

/* ═══ 16. PROCESS STEPS ═════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 19px;
  position: relative;
  transition: all .3s ease;
  overflow: hidden
}

.process-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.process-card:hover::before {
  transform: scaleY(1)
}

.process-number {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--navy), var(--navy-mid));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all .3s
}

.process-card:hover .process-number {
  background: var(--red);
  transform: scale(1.06)
}

.process-time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px
}

.process-card h4 {
  margin-bottom: 6px
}

.process-card p {
  font-size: 13.2px;
  line-height: 1.6
}

.process-card.process-cta {
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  border-color: transparent
}

.process-card.process-cta h4 {
  color: #fff
}

.process-card.process-cta p {
  color: rgba(255, 255, 255, .75)
}

.process-card.process-cta .process-number {
  background: var(--red)
}

.process-card.process-cta .process-time {
  background: rgba(255, 255, 255, .14);
  color: #FF9AA3
}

/* ═══ 17. TESTS REQUIRED ════════════════════════════════════ */
.test-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px;
  transition: all .3s ease
}

.test-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--red)
}

.test-card h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line)
}

.test-card h4 svg {
  width: 19px;
  height: 19px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .3s
}

.test-card:hover h4 svg {
  transform: scale(1.12)
}

.test-card li {
  font-size: 13.4px;
  color: var(--grey);
  padding: 5px 0 5px 17px;
  position: relative;
  line-height: 1.5
}

.test-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

/* ═══ 18. DONOR & LAW ═══════════════════════════════════════ */
.law-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 25px;
  transition: all .3s ease
}

.law-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.law-card.dark {
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  border-color: transparent;
  color: #fff
}

.law-card.dark h3,
.law-card.dark strong {
  color: #fff
}

.law-card.dark p,
.law-card.dark li {
  color: rgba(255, 255, 255, .78)
}

.law-card.dark .check-list svg {
  color: #6EE7A8
}

.law-card h3 {
  margin-bottom: 11px
}

.relation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px
}

.relation-chips span {
  background: var(--blue-tint);
  color: var(--navy);
  font-size: 12.6px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 6px;
  border: 1px solid #D6E4F6;
  transition: all .25s
}

.relation-chips span:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px)
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.4px;
  color: var(--grey);
  line-height: 1.62
}

.check-list svg {
  width: 19px;
  height: 19px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px
}

.check-list strong {
  color: var(--ink);
  font-weight: 600
}

/* Notices */
.notice {
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 20px
}

.notice svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 1px
}

.notice p {
  font-size: 14px;
  line-height: 1.66
}

.notice-warning {
  background: #FFF8E8;
  border: 1px solid #F0DCAA;
  border-left: 4px solid var(--amber)
}

.notice-warning svg {
  color: var(--amber)
}

.notice-warning p {
  color: #6B4A08
}

.notice-info {
  background: var(--blue-tint);
  border: 1px solid #D3E2F5;
  border-left: 4px solid var(--blue)
}

.notice-info svg {
  color: var(--blue)
}

.notice-info p {
  color: var(--navy)
}

/* ═══ 19. HOSPITAL ASSOCIATION ══════════════════════════════ */
.hospital-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s ease
}

.hospital-box:hover {
  box-shadow: var(--shadow-lg)
}

.hospital-media {
  position: relative;
  overflow: hidden;
  min-height: 330px
}

.hospital-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease
}

.hospital-box:hover .hospital-media img {
  transform: scale(1.05)
}

.hospital-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 62, .35), transparent 60%)
}

.hospital-logo-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 11.4px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm)
}

.hospital-body {
  padding: 34px 36px
}

.hospital-body h3 {
  margin-bottom: 11px
}

.hospital-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px
}

.hospital-feature {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13.2px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  padding: 9px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .28s ease
}

.hospital-feature:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateX(4px)
}

.hospital-feature svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  transition: color .28s
}

.hospital-feature:hover svg {
  color: #6EE7A8
}

/* ═══ 20. WHY CHOOSE US — rows, not boxes ═══════════════════ */
.why-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: start
}

.why-visual {
  position: sticky;
  top: calc(var(--nav-height) + 24px)
}

.why-visual-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.why-visual-inner img {
  width: 100%;
  aspect-ratio: 4/4.3;
  object-fit: cover;
  transition: transform .6s ease
}

.why-visual-inner:hover img {
  transform: scale(1.04)
}

.why-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 62, .15) 0%, rgba(7, 26, 62, .8) 100%)
}

.why-visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px
}

.why-visual-overlay strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px
}

.why-visual-overlay span {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
  display: block
}

.why-rows {
  display: grid
}

.why-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 20px 20px 4px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s ease
}

.why-row:last-child {
  border-bottom: none
}

.why-row:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  padding-left: 18px;
  border-bottom-color: transparent
}

.why-count {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  background: var(--red-tint);
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  transition: all .3s ease
}

.why-row:hover .why-count {
  background: var(--red);
  color: #fff;
  transform: scale(1.07)
}

.why-row h4 {
  margin-bottom: 5px;
  transition: color .28s
}

.why-row:hover h4 {
  color: var(--red)
}

.why-row p {
  font-size: 13.8px;
  line-height: 1.65;
  margin: 0
}

/* ═══ 21. GOOGLE REVIEWS WALL — profile look, auto-scroll ═══ */
.gprofile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 26px
}

.gprofile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  flex-shrink: 0;
  background: var(--ice)
}

.gprofile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

.gprofile-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px
}

.gprofile-verified {
  width: 16px;
  height: 16px;
  color: #4285F4;
  flex-shrink: 0
}

.gprofile-meta {
  font-size: 12.8px;
  color: var(--grey);
  line-height: 1.5
}

.gprofile-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 26px;
  border-left: 1px solid var(--line)
}

.gprofile-score-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums
}

.gprofile-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1
}

.gprofile-count {
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
  display: block
}

.google-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 5px
}

.google-logo .b {
  color: #4285F4
}

.google-logo .r {
  color: #EA4335
}

.google-logo .y {
  color: #FBBC05
}

.google-logo .g {
  color: #34A853
}

.reviews-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 400px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent)
}

.reviews-col {
  overflow: hidden
}

.reviews-track {
  display: grid;
  gap: 16px;
  animation: review-up 34s linear infinite
}

.reviews-col.down .reviews-track {
  animation: review-down 34s linear infinite
}

.reviews-wall:hover .reviews-track {
  animation-play-state: paused
}

@keyframes review-up {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-50%)
  }
}

@keyframes review-down {
  from {
    transform: translateY(-50%)
  }

  to {
    transform: translateY(0)
  }
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 19px;
  transition: all .28s ease
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red)
}

.review-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.review-name {
  font-family: var(--font-head);
  font-size: 13.8px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.3
}

.review-date {
  font-size: 11.4px;
  color: var(--grey)
}

.review-gicon {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0
}

.review-stars {
  color: #F5A623;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  margin-bottom: 8px
}

.review-card p {
  font-size: 13.4px;
  line-height: 1.66;
  color: var(--ink);
  margin: 0
}

/* ═══ 22. GALLERY ═══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-xs);
  transition: all .3s ease
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease
}

.gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(7, 26, 62, .92), transparent);
  color: #fff;
  padding: 20px 10px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3
}

/* ═══ 23. FAQ ═══════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .28s
}

.faq-item:hover {
  border-color: var(--navy-light)
}

.faq-item[open] {
  border-color: var(--red);
  box-shadow: var(--shadow-sm)
}

.faq-item summary {
  padding: 16px 44px 16px 19px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  list-style: none;
  line-height: 1.42;
  transition: color .2s
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary:hover {
  color: var(--red)
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 19px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-right: 2.4px solid var(--red);
  border-bottom: 2.4px solid var(--red);
  transform: rotate(45deg);
  transition: transform .28s
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  top: 25px
}

.faq-answer {
  padding: 0 19px 17px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--grey)
}

.faq-answer p+p {
  margin-top: 9px
}

.faq-answer a {
  color: var(--red);
  font-weight: 600
}

/* ═══ 24. CONTACT & MAP — simplified form beside info ═══════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.contact-info-list {
  display: grid;
  gap: 11px;
  margin-bottom: 16px
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  transition: all .28s ease
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red)
}

.contact-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .28s
}

.contact-card:hover .icon {
  background: var(--red)
}

.contact-card .icon svg {
  width: 17px;
  height: 17px
}

.contact-card h4 {
  font-size: 13.6px;
  margin-bottom: 3px
}

.contact-card p,
.contact-card a {
  font-size: 13.2px;
  color: var(--grey);
  line-height: 1.55
}

.contact-card a {
  color: var(--red);
  font-weight: 600
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  box-shadow: var(--shadow-xs)
}

.map-embed iframe {
  width: 100%;
  height: 236px;
  border: 0;
  display: block
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm)
}

.contact-form h3 {
  margin-bottom: 4px
}

.contact-form>p {
  font-size: 14px;
  margin-bottom: 20px
}

/* ═══ 25. OTHER TREATMENTS ══════════════════════════════════ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.treatment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: all .34s ease
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.treatment-card:hover img {
  transform: scale(1.09)
}

.treatment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 62, .1) 30%, rgba(7, 26, 62, .9) 100%);
  transition: background .34s
}

.treatment-card:hover::after {
  background: linear-gradient(180deg, rgba(195, 30, 44, .25) 20%, rgba(7, 26, 62, .94) 100%)
}

.treatment-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 16px;
  color: #fff
}

.treatment-overlay h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.3
}

.treatment-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  transition: all .3s
}

.treatment-card:hover .treatment-overlay span {
  color: #FF9AA3;
  gap: 9px
}

.treatment-overlay svg {
  width: 13px;
  height: 13px
}

/* ═══ 26. FOOTER / MOBILE BAR / MODAL ═══════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .62);
  padding: 46px 0 0;
  font-size: 13.8px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.footer-brand img {
  height: 52px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 9px;
  margin-bottom: 14px
}

.footer-brand p {
  font-size: 13.2px;
  line-height: 1.72;
  color: rgba(255, 255, 255, .58)
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px
}

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .6);
  transition: all .24s
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px)
}

.footer-social svg {
  width: 15px;
  height: 15px
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11.4px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px
}

.footer-col li {
  margin-bottom: 9px
}

.footer-col a,
.footer-col span {
  font-size: 13.2px;
  color: rgba(255, 255, 255, .58);
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.55;
  transition: all .22s
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px)
}

.footer-col svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .55
}

.footer-disclaimer {
  font-size: 11.4px;
  color: rgba(255, 255, 255, .34);
  line-height: 1.66;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.4px;
  color: rgba(255, 255, 255, .42)
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 880;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  box-shadow: 0 -5px 22px rgba(0, 0, 0, .25)
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 9px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: #fff
}

.mobile-bar svg {
  width: 18px;
  height: 18px
}

.mobile-bar .mb-call {
  background: var(--red)
}

.mobile-bar .mb-whatsapp {
  background: #25D366;
  color: #07361C
}

.mobile-bar .mb-book {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2)
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 26, 62, .74);
  backdrop-filter: blur(5px)
}

.modal.open {
  display: flex
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-pop .3s cubic-bezier(.2, .9, .3, 1.15)
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.modal-head {
  background: linear-gradient(130deg, var(--navy), var(--navy-mid));
  color: #fff;
  padding: 22px 24px
}

.modal-head h3 {
  color: #fff;
  margin-bottom: 3px
}

.modal-head p {
  color: rgba(255, 255, 255, .72);
  font-size: 13.2px
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: all .24s;
  line-height: 1
}

.modal-close:hover {
  background: var(--red);
  transform: rotate(90deg)
}

.modal-body {
  padding: 22px 24px 24px
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* Opacity-only reveal — used on sections with position:sticky children,
   because a transform on an ancestor breaks sticky positioning. */
.reveal-fade {
  opacity: 0;
  transition: opacity .6s ease
}

.reveal-fade.visible {
  opacity: 1
}

/* ═══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width:1100px) {
  .hero-grid {
    grid-template-columns: 1fr 330px;
    gap: 32px
  }

  .conditions-grid,
  .grid-4,
  .process-grid,
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .nav-menu {
    gap: 17px
  }

  .nav-menu a {
    font-size: 13px
  }

  .doctor-grid {
    grid-template-columns: 290px 1fr;
    gap: 34px
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .stat:nth-child(3) {
    border-right: none
  }

  .stat:nth-child(n+4) {
    border-top: 1px solid var(--line)
  }

  .sticky-split,
  .why-layout {
    gap: 34px
  }
}

@media (max-width:980px) {
  :root {
    --nav-height: 62px
  }

  .nav-menu,
  .nav-actions {
    display: none
  }

  .nav-toggle {
    display: flex
  }

  .nav-logo img {
    height: 38px
  }

  .topbar .hide-mobile {
    display: none
  }

  .topbar .container {
    justify-content: center
  }

  .hero {
    padding: 38px 0 44px;
    background-position: center
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .hero-lead {
    max-width: none
  }

  .sticky-split,
  .sticky-split.reverse .sticky-media,
  .why-layout {
    grid-template-columns: 1fr;
    order: 0
  }

  .sticky-media,
  .why-visual {
    position: static
  }

  .sticky-media-inner img,
  .why-visual-inner img {
    aspect-ratio: 16/9
  }

  .why-visual {
    max-width: 520px;
    margin-inline: auto
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .doctor-photo {
    max-width: 320px;
    margin-inline: auto
  }

  .grid-3,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr
  }

  .grid-2,
  .hospital-box {
    grid-template-columns: 1fr
  }

  .hospital-media {
    min-height: 240px
  }

  .pitch-card {
    grid-template-columns: 200px 1fr;
    gap: 22px
  }

  .pitch-actions {
    grid-column: 1/-1;
    flex-direction: row;
    padding: 0 26px 26px
  }

  .pitch-body {
    padding: 24px 26px 0 0
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .mobile-bar {
    display: grid
  }

  body {
    padding-bottom: 66px
  }

  .reviews-wall {
    height: 440px
  }
}

@media (max-width:768px) {
  .stats {
    margin-top: 30px;
  }

  .doctor-photo {
    position: inherit;
  }

  .doctor-grid {
    flex-direction: column-reverse;
    display: flex;
  }

  .sticky-split,
  .sticky-split.reverse .sticky-media,
  .why-layout {
    grid-template-columns: 1fr !important;
    order: 0;
  }
}

@media (max-width:640px) {
  body {
    font-size: 15px
  }

  .container {
    padding-inline: 16px
  }

  .section {
    padding: 40px 0
  }

  .section-sm {
    padding: 30px 0
  }

  .conditions-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .process-grid,
  .contact-grid,
  .faq-grid,
  .doctor-points,
  .hospital-features,
  .form-row,
  .footer-grid,
  .treatments-grid,
  .reviews-wall {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -24px
  }

  .stat {
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line)
  }

  .stat:nth-child(2n) {
    border-right: none
  }

  .stat:nth-child(-n+2) {
    border-top: none
  }

  .stat:last-child {
    grid-column: 1/-1
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .doctor-stats {
    grid-template-columns: 1fr
  }

  .doctor-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 13px 17px
  }

  .doctor-stat span {
    margin-top: 0
  }

  .gprofile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    justify-items: center
  }

  .gprofile-score {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    width: 100%;
    justify-content: center
  }

  .reviews-wall {
    height: 480px
  }

  .reviews-col.down {
    display: none
  }

  .pitch-card {
    grid-template-columns: 1fr
  }

  .pitch-media {
    min-height: 170px
  }

  .pitch-body {
    padding: 22px 22px 0
  }

  .pitch-actions {
    flex-direction: column;
    padding: 16px 22px 22px;
    min-width: 0
  }

  .hospital-body,
  .contact-form {
    padding: 24px 22px
  }

  .why-row {
    grid-template-columns: 44px 1fr;
    gap: 14px
  }

  .swipe-hint {
    display: flex
  }

  .footer-bottom {
    justify-content: center;
    text-align: center
  }

  .faq-item summary {
    font-size: 14.2px;
    padding: 14px 40px 14px 16px
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .reveal,
  .reveal-fade {
    opacity: 1;
    transform: none
  }

  .reviews-track {
    animation: none !important
  }
}

@media print {

  .site-header,
  .topbar,
  .mobile-bar,
  .modal,
  .ticker,
  .hero-buttons,
  .pitch-actions {
    display: none !important
  }

  body {
    padding-bottom: 0
  }

  .section {
    padding: 16px 0;
    break-inside: avoid
  }

  .sticky-media,
  .why-visual {
    position: static
  }
}