/* ============================================================
   NOIDADOC — MASTER STYLESHEET  v3  (Clean Medical Theme)
   Mobile-first. Pure CSS. No frameworks.
   Target: Lighthouse mobile 90+ | Load < 300KB
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ──────────────────────────────────────────────────────────── */
:root {
  /* ── Colors ─────────────────────────────────────────────── */
  --color-primary:      #111827;   /* dark gray — headings, main text  */
  --color-blue:         #1d4ed8;   /* medical blue — primary accent     */
  --color-blue-light:   #dbeafe;   /* light blue — subtle backgrounds   */
  --color-white:        #ffffff;   /* pure white — page background      */
  --color-bg-alt:       #f9fafb;   /* light gray — alternate sections   */
  --color-bg-cream:     #fdfaf6;   /* warm cream — how-it-works         */
  --color-bg-peach:     #fff7f5;   /* soft peach — testimonials         */
  --color-bg-sky:       #f0f6ff;   /* pale sky blue — areas/services    */
  --color-text-body:    #374151;   /* body text                         */
  --color-text-sec:     #6b7280;   /* secondary / meta text             */
  --color-border:       #e5e7eb;   /* borders and dividers              */
  --color-call:         #dc2626;   /* urgent red — call CTA             */
  --color-whatsapp:     #16a34a;   /* WhatsApp green — WA CTA           */

  /* Compatibility aliases (used throughout older components) */
  --color-gold:         #1d4ed8;   /* was gold — now medical blue       */
  --color-gold-light:   #dbeafe;   /* was warm beige — now light blue   */
  --color-gold-border:  #e5e7eb;   /* was gold border — now gray border */
  --color-text-sec:     #6b7280;

  /* ── Typography ─────────────────────────────────────────── */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;

  /* ── Spacing (8px base unit) ─────────────────────────────── */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-8:  64px;
  --space-10: 80px;
  --space-12: 96px;

  /* ── Section padding ─────────────────────────────────────── */
  --section-pad-mobile:  60px;
  --section-pad-desktop: 100px;

  /* ── Component sizing ────────────────────────────────────── */
  --header-height-mobile:  60px;
  --header-height-desktop: 100px; /* 36px topbar + 64px nav */
  --sticky-bar-height:     120px; /* two stacked buttons + padding     */

  /* ── Misc ────────────────────────────────────────────────── */
  --radius-card:   4px;
  --radius-btn:    8px;
  --shadow-card:   0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-sticky: 0 -2px 12px rgba(0, 0, 0, 0.12);
  --transition:    200ms ease;
}

/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-white);
  overflow-x: hidden;
  /* Space for sticky bottom bar (2 stacked buttons) */
  padding-bottom: var(--sticky-bar-height);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ────────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
   ──────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #1d4ed8;
}

h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
}

h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #111827;
}

p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #374151;
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   4. UTILITY CLASSES
   ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.text-blue    { color: var(--color-blue); }
.text-white   { color: var(--color-white); }
.text-center  { text-align: center; }
/* Legacy alias */
.text-gold    { color: var(--color-blue); }

.section {
  padding: var(--section-pad-mobile) 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ────────────────────────────────────────────────────────────
   5. BUTTON STYLES
   ──────────────────────────────────────────────────────────── */

/* ── Base button ─────────────────────────────────────────── */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  cursor: pointer;
  min-height: 52px;
  line-height: 1.3;
}

/* ── Primary CTA: Call Now → urgent red ───────────────────── */
.btn-call,
.btn-primary {
  background-color: var(--color-call);
  color: #ffffff;
  border: none;
}
.btn-call:hover,
.btn-primary:hover {
  background-color: #b91c1c;
  color: #ffffff;
}

/* ── Secondary CTA: WhatsApp → green ─────────────────────── */
.btn-whatsapp,
.btn-wa,
.btn-secondary {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border: none;
}
.btn-whatsapp:hover,
.btn-wa:hover,
.btn-secondary:hover {
  background-color: #15803d;
  color: #ffffff;
}

/* ── Legacy gold button → maps to blue ───────────────────── */
.btn-gold {
  background-color: var(--color-blue);
  color: #ffffff;
  border: 2px solid var(--color-blue);
}
.btn-gold:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  color: #ffffff;
}

/* ── Outline variants ─────────────────────────────────────── */
.btn-outline-blue,
.btn-outline-gold {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.btn-outline-blue:hover,
.btn-outline-gold:hover {
  background-color: var(--color-blue);
  color: #ffffff;
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* ── Inline / auto-width variant ─────────────────────────── */
.btn-inline {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ────────────────────────────────────────────────────────────
   6. HEADER — MOBILE
   ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

/* Mobile header bar */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-mobile);
  padding: 0 var(--space-2);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-wordmark .logo-noida {
  color: var(--color-primary);
  font-weight: 700;
}

.logo-wordmark .logo-doc {
  color: var(--color-blue);
  font-weight: 400;
}

/* Logo Animation */
.pulse {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%   { stroke-dashoffset: 260; opacity: 1; }
  55%  { stroke-dashoffset: 0;   opacity: 1; }
  80%  { stroke-dashoffset: 0;   opacity: 1; }
  100% { stroke-dashoffset: 0;   opacity: 0.15; }
}

/* Mobile header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.header-icon-btn[href^="tel:"] {
  background-color: var(--color-call);
}

.header-icon-btn[href^="https://wa.me"] {
  background-color: var(--color-whatsapp);
}

.header-icon-btn:hover {
  opacity: 0.85;
}

.header-icon-btn svg {
  width: 22px;
  height: 22px;
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-btn .bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 300ms ease;
  transform-origin: center;
  display: block;
}

/* Hamburger → X transform when menu open */
.hamburger-btn.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ────────────────────────────────────────────────────────────
   7. FULLSCREEN OVERLAY MENU
   ──────────────────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: #1e293b;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-3);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-overlay.is-open {
  transform: translateX(0);
}

/* Overlay top bar */
.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.overlay-logo .logo-wordmark .logo-noida {
  color: #ffffff;
}

.overlay-logo .logo-wordmark .logo-doc {
  color: #93c5fd;
}

/* Close button */
.overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.overlay-close:hover {
  color: #93c5fd;
}

/* Overlay nav links */
.overlay-nav {
  flex: 1;
  padding: var(--space-4) 0;
}

.overlay-nav-list {
  display: flex;
  flex-direction: column;
}

.overlay-nav-list > li > a,
.overlay-nav-list > li > button {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
  background: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.overlay-nav-list > li > a:hover,
.overlay-nav-list > li > button:hover {
  color: #93c5fd;
}

/* Sectors submenu toggle */
.sectors-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sectors-toggle svg {
  width: 20px;
  height: 20px;
  color: #93c5fd;
  transition: transform 300ms ease;
  flex-shrink: 0;
}

.sectors-toggle.is-open svg {
  transform: rotate(180deg);
}

/* Sectors submenu */
.sectors-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}

.sectors-submenu.is-open {
  max-height: 400px;
  overflow-y: auto;
}

.sectors-submenu-list {
  padding: var(--space-1) 0 var(--space-2) var(--space-2);
}

.sectors-submenu-list li a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-1) 0;
  transition: color var(--transition);
}

.sectors-submenu-list li a:hover {
  color: #93c5fd;
}

.sectors-view-all {
  color: #93c5fd !important;
  font-weight: 600;
}

/* Overlay bottom CTA — stacked vertically, Call on top */
.overlay-cta {
  padding: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.overlay-cta .btn {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

/* ────────────────────────────────────────────────────────────
   8. HEADER — DESKTOP (1024px+)
   ──────────────────────────────────────────────────────────── */
.header-desktop {
  display: none;
}

.header-desktop-topbar {
  background-color: #1e293b;
  height: 36px;
  display: flex;
  align-items: center;
}

.header-desktop-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #93c5fd;
  letter-spacing: 0.04em;
}

.topbar-phone {
  font-family: var(--font-body);
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.topbar-phone:hover {
  color: #93c5fd;
}

.header-desktop-nav {
  background-color: var(--color-white);
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.header-desktop-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  justify-content: center;
}

.desktop-nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.desktop-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-blue);
  transition: width var(--transition);
}

.desktop-nav-links a:hover {
  color: var(--color-blue);
}

.desktop-nav-links a:hover::after {
  width: 100%;
}

/* Desktop dropdown trigger */
.desktop-nav-links .has-dropdown {
  position: relative;
}

.desktop-nav-links .has-dropdown > a::after {
  display: none;
}

/* Desktop WhatsApp CTA */
.desktop-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  letter-spacing: 0.02em;
  transition: background-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.desktop-cta-btn:hover {
  background-color: #15803d;
  color: #ffffff;
}

/* ────────────────────────────────────────────────────────────
   9. STICKY BOTTOM BAR — VERTICAL STACK, MOBILE-ONLY PRIORITY
   ──────────────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sticky);
}

.sticky-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: background-color var(--transition);
}

/* Call button — urgent red, first/top */
.sticky-bar-btn:first-child {
  background-color: var(--color-call);
  color: #ffffff;
}
.sticky-bar-btn:first-child:hover {
  background-color: #b91c1c;
  color: #ffffff;
}

/* WhatsApp button — green, last/bottom */
.sticky-bar-btn:last-child {
  background-color: var(--color-whatsapp);
  color: #ffffff;
}
.sticky-bar-btn:last-child:hover {
  background-color: #15803d;
  color: #ffffff;
}

/* Hide the old horizontal divider */
.sticky-bar-divider {
  display: none;
}

/* ────────────────────────────────────────────────────────────
   10. TRUST BAR
   ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #f0f6ff 0%, #f5f3ff 100%);
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
  padding: var(--space-3) 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: var(--space-3);
  width: max-content;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - var(--space-3)/2)); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.trust-separator {
  width: 1px;
  height: 32px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   11. HOW IT WORKS
   ──────────────────────────────────────────────────────────── */
.how-it-works {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--color-bg-cream);
  border-top: 3px solid #f0e8d8;
}

.how-it-works .section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-2);
}

.how-it-works .section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: var(--space-5);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
}

.step-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-sec);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   12. FOOTER
   ──────────────────────────────────────────────────────────── */
.site-footer {
  background-color: #1e293b;
  color: #ffffff;
  padding: var(--space-8) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-logo .logo-wordmark .logo-noida {
  color: #ffffff;
}

.footer-logo .logo-wordmark .logo-doc {
  color: #93c5fd;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: var(--space-2);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer-col-links a:hover {
  color: #93c5fd;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-3) 0;
  margin-top: 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .footer-tagline-bottom {
  font-family: var(--font-body);
  font-size: 12px;
  color: #93c5fd;
  font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   13. CARD COMPONENTS
   ──────────────────────────────────────────────────────────── */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.card-body {
  padding: var(--space-3);
}

/* ────────────────────────────────────────────────────────────
   14. SCROLL LOCK (when menu open)
   ──────────────────────────────────────────────────────────── */
body.menu-open {
  overflow: hidden;
}

/* ────────────────────────────────────────────────────────────
   15. RESPONSIVE — TABLET (768px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 19px; }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar-inner {
    gap: var(--space-5);
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ────────────────────────────────────────────────────────────
   16. RESPONSIVE — DESKTOP (1024px)
   ──────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  /* Show desktop header, hide mobile header */
  .header-mobile {
    display: none;
  }
  .header-desktop {
    display: block;
  }
  /* Hide hamburger overlay on desktop */
  .nav-overlay {
    display: none;
  }

  .how-it-works {
    padding: var(--section-pad-desktop) 0;
  }

  .section {
    padding: var(--section-pad-desktop) 0;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* Unwrap cols wrapper on desktop — handled by footer-top grid */
  .footer-top > .footer-cols {
    display: contents;
  }

  /* Trust bar larger */
  .trust-text {
    font-size: 14px;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
  }
}

/* ────────────────────────────────────────────────────────────
   17. FONT LOADING — async via preload trick (see HTML)
   ──────────────────────────────────────────────────────────── */
/* Font-display swap is set in Google Fonts URL with &display=swap */

/* ────────────────────────────────────────────────────────────
   18. HERO SECTION (shared base)
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1d4ed8; /* medical blue — replaces dark black/navy */
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.12; /* subtle texture — blue bg does the heavy lifting */
}

/* Old dark rgba overlay — hidden; blue bg replaces it */
.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) 0;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-2);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-4);
  max-width: 520px;
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-card);
  padding: 8px 16px;
  margin-bottom: var(--space-4);
}

.hero-price-badge span {
  font-family: var(--font-body);
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

/* ────────────────────────────────────────────────────────────
   19. TESTIMONIALS (shared)
   ──────────────────────────────────────────────────────────── */
.testimonials {
  background-color: var(--color-bg-peach);
  border-top: 3px solid #fde0d8;
  padding: var(--section-pad-mobile) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-1);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-sec);
  line-height: 1.7;
  margin-bottom: var(--space-2);
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-location {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-blue);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials {
    padding: var(--section-pad-desktop) 0;
  }
}

/* ────────────────────────────────────────────────────────────
   20. SECTION HEADER (shared)
   ──────────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-5);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-1);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #1d4ed8;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-sec);
  line-height: 1.7;
  margin-top: var(--space-1);
  max-width: 600px;
}

/* ────────────────────────────────────────────────────────────
   END OF STYLESHEET
   ──────────────────────────────────────────────────────────── */


/* ═══ AUTO-APPENDED: Hero V3 + Sector page components ═══ */

/* ═══════════════════════════════════════════════════════════════
   HERO V3 — Availability bar + white conversion hero
   Used on: sector pages, society pages
   ═══════════════════════════════════════════════════════════════ */
.hero-avail-bar {
  width: 100%;
  background-color: #dc2626;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
  padding: 6px 16px;
  text-align: center;
}
.hero-v3 {
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}
.hero-v3-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-v3-inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 500px;
  }
}
.hero-v3-content {
  padding: 24px 16px 28px;
}
@media (min-width: 1024px) {
  .hero-v3-content {
    padding: 48px 40px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
  }
}
.hero-v3-h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 10px;
}
@media (min-width: 768px) { .hero-v3-h1 { font-size: 56px; } }
.hero-v3-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero-v3-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 6px;
}
.hero-v3-check {
  font-family: var(--font-body);
  font-size: 15px;
  color: #16a34a;
  margin-bottom: 20px;
}
.hero-v3-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.btn-v3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 200ms ease;
}
.btn-v3:hover { opacity: 0.92; }
.btn-v3-call { background-color: #dc2626; color: #ffffff !important; }
.btn-v3-wa   { background-color: #16a34a; color: #ffffff !important; }
.hero-v3-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-v3-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.badge-top {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #1d4ed8;
  line-height: 1.2;
}
.badge-bot {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7280;
  line-height: 1.2;
  margin-top: 2px;
}
/* Image col — hidden mobile, visible desktop */
.hero-v3-image { display: none; }
@media (min-width: 1024px) {
  .hero-v3-image {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .hero-v3-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
}

/* ── Local trust paragraph ─────────────────────────────────── */
.local-trust-para {
  font-family: var(--font-body);
  font-size: 14px;
  color: #374151;
  background: #f9fafb;
  border-left: 3px solid #1d4ed8;
  padding: 12px 14px;
  margin: 0;
  line-height: 1.65;
}
.local-trust-wrap {
  padding: 20px 0 0;
}

/* ── Health concerns cards (redesigned) ───────────────────── */
.concerns-section {
  padding: 48px 0;
  background: #f0fdf4;
  background-image: radial-gradient(circle, #bbf7d0 1px, transparent 1px);
  background-size: 24px 24px;
}
@media (min-width: 1024px) { .concerns-section { padding: 72px 0; } }

.concern-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 640px) { .concern-cards { grid-template-columns: repeat(4, 1fr); } }

.concern-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #d1fae5;
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: float-card 4s ease-in-out infinite;
}

/* Stagger the float timings so cards feel organic */
.concern-card:nth-child(2)  { animation-delay: 0.4s; }
.concern-card:nth-child(3)  { animation-delay: 0.8s; }
.concern-card:nth-child(4)  { animation-delay: 1.2s; }
.concern-card:nth-child(5)  { animation-delay: 1.6s; }
.concern-card:nth-child(6)  { animation-delay: 0.2s; }
.concern-card:nth-child(7)  { animation-delay: 0.6s; }
.concern-card:nth-child(8)  { animation-delay: 1.0s; }
.concern-card:nth-child(9)  { animation-delay: 1.4s; }
.concern-card:nth-child(10) { animation-delay: 1.8s; }
.concern-card:nth-child(11) { animation-delay: 0.3s; }
.concern-card:nth-child(12) { animation-delay: 0.9s; }

@keyframes float-card {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-5px); }
}

.concern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.15);
  animation-play-state: paused;
}

.concern-emoji {
  font-size: 28px;
  line-height: 1;
}

.concern-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.concern-policy-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: #374151;
  margin-top: 24px;
  line-height: 1.6;
}
.concern-policy-note a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .concern-card { animation: none; }
}

/* ── Pre-footer CTA block ──────────────────────────────────── */
.pre-footer-cta {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 48px 16px;
  text-align: center;
}
@media (min-width: 1024px) { .pre-footer-cta { padding: 72px 0; } }
.pre-footer-cta h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.pre-footer-cta p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.pre-footer-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE POLISH v1 — Global mobile overrides
   Target: max-width 768px (all phone sizes)
   ═══════════════════════════════════════════════════════════════ */

/* ── Container horizontal padding ──────────────────────────── */
.container {
  padding-left: 16px;
  padding-right: 16px;
}

/* ── Universal section spacing on mobile ────────────────────── */
@media (max-width: 768px) {
  section,
  .intro-section,
  .services-section,
  .why-section,
  .why-sector-section,
  .doctor-profile-section,
  .testimonial-single-section,
  .how-it-works,
  .nearby-section,
  .faq-section,
  .concerns-section,
  .night-section,
  .testimonials-section,
  .areas-section,
  .vehicle-section,
  .doctors-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* ── Typography ───────────────────────────────────────────── */
  h1,
  .hero-v3-h1,
  .hero-h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
  h2,
  .section-title,
  .hero-v3 h2 {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }
  h3 {
    font-size: 16px !important;
  }
  body,
  p,
  li,
  .hero-v3-sub,
  .section-desc,
  .intro-section p {
    font-size: 15px !important;
  }

  /* ── Button sizes — min 52px height, 16px text ───────────── */
  .btn,
  .btn-v3,
  .btn-v3-call,
  .btn-v3-wa,
  .desktop-cta-btn,
  .overlay-cta .btn {
    font-size: 16px !important;
    min-height: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ── Sticky bar buttons ──────────────────────────────────── */
  .sticky-bar-btn {
    font-size: 15px !important;
    min-height: 52px !important;
  }

  /* ── CTA button groups — always stacked, 8px gap ─────────── */
  .hero-v3-btns,
  .hero-btns,
  .pre-footer-btns,
  .bottom-cta-btns,
  .overlay-cta,
  .steps-cta-wrap {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
  }
  .hero-v3-btns .btn-v3,
  .hero-btns .btn,
  .pre-footer-btns .btn-v3,
  .bottom-cta-btns .btn,
  .overlay-cta .btn {
    width: 100% !important;
    min-width: unset !important;
  }

  /* ── Badge and tag text — min 12px ───────────────────────── */
  .concern-tag,
  .concern-policy-note,
  .hero-v3-quote,
  .hero-v3-name,
  .badge-top,
  .badge-bot,
  .nearby-link,
  .trust-text {
    font-size: 12px !important;
  }
  .badge-top { font-size: 13px !important; } /* slightly bigger for impact */

  /* ── Clickable links and tags — min 44px tap target ─────── */
  .nearby-link {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .faq-question {
    min-height: 52px !important;
  }

  /* ── Phone number links — never plain text ───────────────── */
  a[href^="tel"] {
    display: inline-flex;
    align-items: center;
  }

  /* ── Images — 12px radius, full width ───────────────────── */
  .doctor-profile-photo img,
  .doctor-card img,
  .why-image-wrap img,
  .night-image-wrap img,
  .hero-v3-image img,
  .service-card img,
  .vehicle-img,
  .intro-img {
    border-radius: 12px !important;
    max-width: 100% !important;
    height: auto !important;
  }
  /* Wider coverage for content images */
  .intro-section img,
  .services-section img,
  .why-sector-section img,
  .doctor-profile-section img,
  .night-section img {
    border-radius: 12px !important;
    max-width: 100% !important;
  }

  /* ── Section headings — consistent left-align on mobile ──── */
  .section-header {
    text-align: left !important;
  }
}

/* ── tel: links always look clickable ──────────────────────── */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

/* ── Doctor MBBS badge — ensure readable size ───────────────── */
.doctor-mbbs-badge {
  font-size: 11px !important;
  min-height: auto;
}

/* ── Fix: ensure .btn always has correct min-height globally ── */
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Trust badges — no shrink on very small screens ─────────── */
.hero-v3-badges {
  flex-wrap: nowrap;
}
@media (max-width: 360px) {
  .hero-v3-badges { flex-wrap: wrap; }
  .hero-v3-badge { flex: 0 0 calc(50% - 4px); }
}

/* ═══════════════════════════════════════════════════════════════
   NOIDADOC SVG LOGO — nd-logo class
   Responsive sizing: 28px tall on mobile, 34px on desktop
   ═══════════════════════════════════════════════════════════════ */
.nd-logo {
  display: block;
  height: 28px;    /* mobile — effective font ≈ 18px */
  width: auto;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nd-logo {
    height: 34px;  /* desktop — effective font ≈ 22px */
  }
}
/* The header-logo link wraps the SVG */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;  /* prevent extra whitespace around inline SVG */
}

/* ═══════════════════════════════════════════════════════════════
   WHY NOIDADOC — Dark Navy Premium Redesign
   ═══════════════════════════════════════════════════════════════ */
.why-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}
/* Subtle background glow blob — pure CSS, zero performance cost */
.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(29,78,216,0.25) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 1024px) { .why-section { padding: 100px 0; } }

/* Override section-header text for dark bg */
.why-section .section-label {
  color: #93c5fd;
}
.why-section .section-title {
  color: #ffffff;
}

/* USP grid — 1 col mobile, 2 col desktop */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* Dark glass cards */
.usp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.5s ease forwards;
}

/* Staggered reveal on page load */
.usp-card:nth-child(1) { animation-delay: 0.1s; }
.usp-card:nth-child(2) { animation-delay: 0.2s; }
.usp-card:nth-child(3) { animation-delay: 0.3s; }
.usp-card:nth-child(4) { animation-delay: 0.4s; }
.usp-card:nth-child(5) { animation-delay: 0.5s; }
.usp-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.usp-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
  transition: all 200ms ease;
}

/* Emoji icon circle — replaces old blue circle SVG */
.usp-emoji {
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

.usp-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}
.usp-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* Right-column image on desktop */
.why-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-height: 480px;
}
.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .usp-card { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTOR PAGE — CONTENT REDESIGN
   Scannable intro, styled local trust, visual service cards,
   dark why-sector section
   ═══════════════════════════════════════════════════════════════ */

/* ── Local trust bar — styled callout above intro ────────────── */
.local-trust-wrap {
  padding: 0;
  background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
}
.local-trust-para {
  font-family: var(--font-body);
  font-size: 13px;
  color: #1e40af;
  background: transparent;
  border-left: none;
  padding: 12px 0;
  margin: 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.local-trust-para::before {
  content: '📍';
  flex-shrink: 0;
  font-size: 16px;
}

/* ── Quick-facts grid (replaces dense paragraphs) ────────────── */
.sector-quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 24px;
}
@media (min-width: 640px) {
  .sector-quick-facts { grid-template-columns: repeat(4, 1fr); }
}
.sqf-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.sqf-emoji {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}
.sqf-value {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1.2;
  display: block;
}
.sqf-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
  display: block;
}

/* ── Intro section — slimmer with highlighted key phrases ────── */
.intro-section {
  padding: 36px 0 32px;
  background: #ffffff;
}
.intro-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.25;
}
.intro-section .intro-lead {
  font-family: var(--font-body);
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 20px;
}
/* Highlight key phrases inline */
.intro-section .intro-lead strong {
  color: #111827;
  font-weight: 700;
  background: linear-gradient(120deg, #dbeafe 0%, #eff6ff 100%);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ── Landmarks callout — make it pop ────────────────────────── */
.landmarks-callout {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-left: none;
  border-radius: 12px;
  padding: 16px 18px;
  gap: 12px;
  margin-top: 20px;
}
.landmarks-label {
  color: #93c5fd;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.landmarks-text {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.7;
}
.landmarks-icon {
  color: #93c5fd;
}

/* ── Services grid — colored left-border cards ───────────────── */
.service-card {
  border-left: 3px solid #1d4ed8 !important;
  border-radius: 10px !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.12) !important;
}
.service-icon {
  width: 36px !important;
  height: 36px !important;
  color: #1d4ed8 !important;
  flex-shrink: 0;
}
.service-text h3 {
  color: #111827;
  font-weight: 700;
}

/* ── Why-sector section — dark navy (matches homepage Why Us) ── */
.why-sector-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.why-sector-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(29,78,216,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.why-sector-section .section-label { color: #93c5fd !important; }
.why-sector-section .section-title { color: #ffffff !important; }
.why-sector-section .section-desc  { color: rgba(255,255,255,0.7) !important; }

.usp-3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) { .usp-3-grid { grid-template-columns: repeat(3, 1fr); } }

.usp3-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}
.usp3-card:nth-child(2) { animation-delay: 0.15s; }
.usp3-card:nth-child(3) { animation-delay: 0.3s; }
.usp3-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  transition: all 200ms ease;
}
.usp3-icon { color: #93c5fd !important; width: 28px !important; height: 28px !important; flex-shrink: 0; margin-bottom: 10px; }
.usp3-heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px; font-weight: 700;
  color: #ffffff; margin-bottom: 8px; line-height: 1.3;
}
.usp3-desc {
  font-family: var(--font-body);
  font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
  .usp3-card { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SITE-WIDE COLOUR RHYTHM — Subtle section tints
   Goal: break up all-white monotony with barely-there tints.
   Each section only shifts 3–5% from white. No jarring colours.
   ═══════════════════════════════════════════════════════════════ */

/* Services section — pale sky blue tint */
.services-section {
  background: var(--color-bg-sky);
  border-top: 3px solid #c7d9f8;
}

/* Areas section (homepage) — warm cream tint */
.areas-section {
  background: var(--color-bg-cream);
  border-top: 3px solid #f0e8d8;
}

/* Night service section — stays white but gets a subtle left gradient bar */
.night-section {
  background: linear-gradient(to right, #fff8f5 0%, #ffffff 60%);
  border-top: 3px solid #fde8d8;
}

/* Pre-footer CTA — soft sky blue before the dark footer */
.pre-footer-cta {
  background: linear-gradient(160deg, #f0f6ff 0%, #f5f3ff 100%);
  border-top: 3px solid #c7d9f8;
}

/* Sector intro-section — stays white; quick-facts cards get light shadows */
.sector-quick-facts .sqf-card {
  background: #ffffff;
  border: 1px solid #e0eeff;
  box-shadow: 0 2px 10px rgba(29,78,216,0.07);
}
.sqf-value { color: #1d4ed8; }

/* Doctor profile section — very light lavender */
.doctor-profile-section {
  background: #faf8ff;
  border-top: 3px solid #e8e0fa;
}

/* Testimonial single (sector pages) — soft peach */
.testimonial-single-section {
  background: var(--color-bg-peach);
  border-top: 3px solid #fde0d8;
}

/* Nearby sectors section — warm cream */
.nearby-section {
  background: var(--color-bg-cream);
  border-top: 3px solid #f0e8d8;
}

/* FAQ section — very light sky */
.faq-section {
  background: var(--color-bg-sky);
  border-top: 3px solid #c7d9f8;
}

/* Hero badges get a slightly warmer blue tint */
.hero-v3-badge {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f6ff 100%);
  border: 1px solid #bfdbfe;
}

/* Hero testimonial gets a light warm bg */
.hero-v3-testimonial {
  background: #fdfaf6;
  border: 1px solid #f0e8d8;
}



/* --- Fix for white-on-white text issues reported --- */
.doctor-profile-name {
  color: #1e293b !important;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}
.doctor-profile-qual {
  color: #4b5563 !important;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.doctor-profile-exp {
  color: #4b5563 !important;
  font-size: 15px;
  line-height: 1.5;
}
.doctor-profile-info {
  color: #4b5563 !important;
}

.nearby-all-link {
  color: #1d4ed8 !important;
  font-weight: 600;
  text-decoration: underline !important;
  display: inline-block;
  margin-top: 10px;
}
.nearby-all-link:hover {
  color: #1e3a8a !important;
}
