/* ===================================================================
   BestDoctor247.com - High-Converting Healthcare Landing Page Stylesheet
   Modern DHA-Licensed Mobile Healthcare Dubai Design System
   Model layout inspired by SAS Aesthetica reference
   =================================================================== */

/* ============ 01. CSS Variables & Design Tokens ============ */
:root {
  /* Brand Colors */
  --primary: #152c63;          /* Deep royal medical navy */
  --primary-soft: #0c1e4a;     /* Lighter navy */
  --primary-card: #0f2352;     /* Dark card navy */
  --primary-light: #162c64;    /* Navy border / highlight */
  
  --bg: #f0f7ff;               /* Modern clean slate background */
  --bg-2: #ffffff;             /* Crisp white card background */
  --bg-subtle: #f0fdf9;        /* Ultra light medical teal tint */
  --bg-blue-tint: #f0f9ff;     /* Ultra light cyan/blue tint */
  
  --text: #475569;             /* Slate 600 body text */
  --text-dark: #0f172a;        /* Deep headings */
  --text-muted: #64748b;       /* Slate 500 secondary text */
  --text-light: #cbd5e1;       /* Light text on dark */
  
  /* Accents & Gradients from bestdoctor247.com */
  --accent: #336dce;           /* Premium medical teal */
  --accent-2: #609cff;         /* Bright cyan-teal */
  --accent-deep: #027077;      /* Deep clinic teal */
  --accent-glow: rgba(0, 168, 150, 0.25);
  
  --blue-brand: #326ccd;       /* Brand blue from logo */
  --blue-hover: #1e52b5;
  --blue-light: #eff6ff;
  
  /* Functional colors */
  --alert-red: #dc2626;
  --alert-red-bg: #fef2f2;
  --alert-red-border: #fca5a5;
  --star-gold: #f59e0b;
  --white: #ffffff;
  
  /* Borders & Dividers */
  --divider: rgba(15, 23, 42, 0.08);
  --dark-divider: rgba(255, 255, 255, 0.12);
  --teal-border: rgba(0, 168, 150, 0.25);
  
  /* Geometry & Elevation */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(7, 19, 48, 0.04);
  --shadow: 0 16px 40px rgba(7, 19, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 19, 48, 0.12);
  --shadow-card: 0 10px 30px rgba(7, 19, 48, 0.06);
  
  /* Gradients */
  --teal-grad: linear-gradient(135deg, #336dce 0%, #103e8d 100%);
  --blue-grad: linear-gradient(135deg, #2563eb 0%, #00a896 100%);
  --gold-grad: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --navy-grad: linear-gradient(145deg, #071330 0%, #0f2352 100%);
  
  /* Fonts */
  --font: "Plus Jakarta Sans", "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============ 02. Reset & Base Typography ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Layout Utilities */
.container {
  max-width: 93%;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section.pt-0 {
  padding-top: 0;
}

.section.tight {
  padding: 64px 0;
}

.center {
  text-align: center;
}

/* ============ 03. Shared Components ============ */

/* Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--teal-grad);
  display: inline-block;
  border-radius: 2px;
}

.eyebrow.light {
  color: var(--accent-2);
}

.eyebrow.light::before {
  background: var(--accent-2);
}

.eyebrow.center-line {
  justify-content: center;
}

/* Titles */
.title {
  font-size: clamp(21px, 2.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.5;
}

.title .teal-gradient {
  background: var(--teal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.title .blue-gradient {
  background: linear-gradient(135deg, #326ccd 0%, #00b8c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.lede {
  max-width: 760px;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-grad);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(47, 102, 196, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 168, 150, 0.45);
  filter: brightness(1.06);
}

.btn-blue {
  background: var(--blue-brand);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(50, 108, 205, 0.3);
}

.btn-blue:hover {
  background: var(--blue-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(50, 108, 205, 0.4);
}

.btn-dark {
  background: var(--primary);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--primary-soft);
  transform: translateY(-3px);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  border-color: var(--divider);
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-ghost-dark:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.15);
}

.btn-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.ico {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ============ 04. Top Announcement Bar ============ */
.topbar {
  background: var(--primary);
  color: #e2e8f0;
  font-size: 13.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-divider);
  position: relative;
  z-index: 50;
}

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

.topbar-msg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-badge {
  background: rgba(0, 168, 150, 0.2);
  color: var(--accent-2);
  border: 1px solid rgba(0, 184, 196, 0.4);
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s;
}

.topbar-link svg {
  stroke: var(--accent-2);
}

.topbar-link:hover {
  color: var(--accent-2);
}

.topbar-link.wa-link {
  color: #4ade80;
}

.topbar-link.wa-link svg {
  fill: #4ade80;
  stroke: none;
}

.topbar-dot {
  opacity: 0.35;
  color: #94a3b8;
}

/* ============ 05. Header & Navigation ============ */
header.site {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(7, 19, 48, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

header.site.stuck {
  box-shadow: 0 10px 30px rgba(7, 19, 48, 0.12);
  background: rgba(255, 255, 255, 0.99);
}

/* Upper Tier: Logo on Left, Action Buttons on Right */
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

/* Brand Identity */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 56px;
  width: auto;
  transition: transform 0.25s ease;
}

.brand:hover img {
  transform: scale(1.02);
}

.dha-header-badge {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid var(--divider);
}

.dha-header-badge .dha-tag {
  font-size: 13px;
  font-weight: 700;
  color: #336dce;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dha-header-badge .dha-lic {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Right-side Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 9px 16px;
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.nav-phone svg {
  stroke: var(--blue-brand);
}

.nav-phone:hover {
  background: #dbeafe;
  color: var(--blue-brand);
  transform: translateY(-1px);
}

/* Lower Tier: Menu Put Down in Header Section */
.header-menu-bar {
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 8px 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--teal-grad);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ 06. Hero Section ============ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--primary) url("https://imagedelivery.net/WefzwPpyYAgz4nGrybaw0Q/cf3ec295-d21c-4053-0fb9-e1ba06601a00/w=800") center right / cover no-repeat;
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(7, 19, 48, 0.98) 0%,
    rgba(7, 19, 48, 0.92) 48%,
    rgba(7, 19, 48, 0.75) 75%,
    rgba(7, 19, 48, 0.45) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  /*! position: absolute; */
  /*! width: 600px; */
  /*! height: 600px; */
  border-radius: 50%;
  /*! left: -200px; */
  top: -200px;
  /*! background: radial-gradient(circle, rgba(0, 168, 150, 0.22) 0%, transparent 70%); */
  z-index: 1;
  pointer-events: none;
}

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

.hero-inner {
  max-width: 860px;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.18;
}

.hero h1 .teal-gradient {
  background: linear-gradient(120deg, #00b8c4 0%, #38bdf8 50%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: #e2e8f0;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.55;
  max-width: 780px;
}

/* Core Value Proposition Quote Box */
.hero-cvp {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 184, 196, 0.3);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--accent-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  color: #f1f5f9;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

/* Hero Trust Signals & Clinical Reassurances */
.hero-trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 184, 196, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 18.5px;
  color: #e2e8f0;
  line-height: 1.5;
}

.hero-trust-item strong {
  color: #ffffff;
}

.hero-trust-item svg {
  stroke: var(--accent-2);
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
}

.hero-loc svg {
  stroke: var(--accent-2);
  width: 17px;
  height: 17px;
  flex: none;
}

/* ============ 07. Mandatory Non-Emergency Medical Notice ============ */
.emergency-banner {
  background: #f0f7ff;
  border-bottom: 1px solid var(--divider);
  padding: 22px 0;
  position: relative;
  z-index: 5;
}

.emergency-card {
  background: #fff8f8;
  border: 1px solid #fecaca;
  border-left: 5px solid var(--alert-red);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.06);
}

.emergency-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--alert-red);
  display: grid;
  place-items: center;
  flex: none;
}

.emergency-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--alert-red);
}

.emergency-content h4 {
  color: #991b1b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.emergency-content p {
  color: #7f1d1d;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.emergency-content strong {
  color: #991b1b;
  font-weight: 700;
  text-decoration: underline;
}

/* ============ 08. Who We Serve (4 Cards) ============ */
.serve-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card-x {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-x::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: var(--teal-grad);
  transition: width 0.45s ease;
}

.card-x:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.3);
}

.card-x:hover::before {
  width: 100%;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: #eff6ff;
  border: 1px solid rgba(0, 168, 150, 0.2);
  color: var(--accent);
  transition: all 0.3s ease;
}

.card-x:hover .card-icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.08);
}

.card-icon svg {
  stroke: currentColor;
  width: 28px;
  height: 28px;
}

.card-x h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.card-x p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* Dark Accent Variant for Tourist / Hotel Guests */
.card-x.featured {
  background: #152c63;
  border-color: rgba(0, 184, 196, 0.3);
}

.card-x.featured h3 {
  color: #ffffff;
}

.card-x.featured p {
  color: #cbd5e1;
}

.card-x.featured .card-icon {
  background: rgba(0, 168, 150, 0.25);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.card-x.featured:hover .card-icon {
  background: var(--accent-2);
  color: var(--primary);
}

/* ============ 09. Split Philosophy Section ============ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media .m1 {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.8;
}

.split-media .m2 {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 52%;
  border-radius: var(--radius-md);
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.badge-float {
  position: absolute;
  left: -26px;
  top: 34px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0, 184, 196, 0.35);
  z-index: 4;
}

.badge-float img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
  border-radius: 6px;
}

.badge-float b {
  display: block;
  color: var(--accent-2);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-float span {
  font-size: 12.5px;
  color: #cbd5e1;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.chip {
  border: 1px solid var(--divider);
  background: #ffffff;
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.chip::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.tick-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 32px;
}

.tick-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
}

.tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-grad);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
}

.tick svg {
  stroke: #ffffff;
  width: 14px;
  height: 14px;
}

/* ============ 10. UX Comparison: Home Care vs Traditional Clinic ============ */
.comparison-section {
  background: #ffffff;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--divider);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #ffffff;
}

.compare-table th {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.compare-table th.col-metric {
  background: #f1f5f9;
  color: var(--primary);
  width: 25%;
}

.compare-table th.col-bestdoctor {
  background: var(--primary);
  color: #ffffff;
  width: 40%;
  position: relative;
}

.compare-table th.col-bestdoctor .featured-tag {
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

.compare-table th.col-clinic {
  background: #e2e8f0;
  color: #475569;
  width: 35%;
}

.compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--divider);
  font-size: 15px;
  vertical-align: middle;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: #f8fafc;
}

.compare-table td.metric-title {
  font-weight: 700;
  color: var(--primary);
}

.compare-table td.bestdoctor-cell {
  background: rgba(239, 246, 255, 0.71);
  color: #0f172a;
  font-weight: 600;
  border-left: 2px solid #336dce3b;
  border-right: 2px solid rgb(239, 246, 255);
}

.compare-table tr:hover td.bestdoctor-cell {
  background: rgba(0, 168, 150, 0.08);
}

.compare-table td.clinic-cell {
  color: #64748b;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-badge.good svg {
  stroke: var(--accent);
  flex: none;
}

.status-badge.bad svg {
  stroke: #94a3b8;
  flex: none;
}

/* ============ 11. Step-by-Step Patient Process (Journey) ============ */
.journey {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.18), transparent 70%);
  pointer-events: none;
}

.journey::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  left: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(50, 108, 205, 0.18), transparent 70%);
  pointer-events: none;
}

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

.journey .title {
  color: #ffffff;
}

.journey .lede {
  color: #cbd5e1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step {
  background: rgb(41, 74, 129);
  border: 1px solid var(--dark-divider);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step:hover {
  background: rgba(0, 168, 150, 0.12);
  border-color: rgba(0, 184, 196, 0.4);
  transform: translateY(-8px);
}

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

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--teal-grad);
  color: #ffffff;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 6px 18px rgba(0, 168, 150, 0.35);
}

.step h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.step p {
  color: #c9d4e2;
  font-size: 14.8px;
  margin: 0;
  line-height: 1.6;
}

.step-line {
  position: absolute;
  top: 60px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: rgba(0, 184, 196, 0.4);
}

/* ============ 12. Core Home Healthcare Services (Detailed Pillars) ============ */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 110px;
}

.svc-row:last-child {
  margin-bottom: 0;
}

.svc-row.rev .svc-text {
  order: 2;
}

.svc-media {
  position: relative;
}

.svc-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 5 / 5.8;
  object-fit: cover;
}

.svc-media .frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  transition: all 0.3s ease;
}

.svc-row.rev .svc-media .frame {
  inset: 18px 18px -18px -18px;
}

.svc-row:hover .svc-media .frame {
  transform: translate(6px, 6px);
  border-color: var(--accent-2);
}

.svc-tag {
  display: inline-block;
  background: rgba(47, 103, 198, 0.03);
  color: #3069c9;
  border: 1px solid rgba(51, 109, 206, 0.33);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svc-text h3 {
  font-size: clamp(20px, 2.8vw, 36px);
  color: var(--primary);
  margin-bottom: 8px;
}

.svc-text h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 20px;
}

.area {
  background: #ffffff;
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.area:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.note {
  border-left: 4px solid #336dce;
  background: rgba(51, 109, 206, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 14.5px;
  color: #334155;
  margin: 18px 0 22px;
  line-height: 1.6;
}

.note strong {
  color: var(--primary);
}

.dispatch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  color: var(--blue-brand);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.dispatch-badge svg {
  stroke: var(--blue-brand);
  width: 15px;
  height: 15px;
}

.incl {
  display: grid;
  gap: 12px;
  margin: 14px 0 22px;
}

.incl li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.55;
}

.incl strong {
  color: var(--primary);
}

/* ============ 13. Upfront Pricing Section ============ */
.pricing-section {
  background: #ffffff;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.35);
  background: #ffffff;
}

.price-card.featured {
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
}

.price-card .badge-popular {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--teal-grad);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.price-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.price-amount {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount .starting {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-amount .currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.price-amount .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.price-features {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  font-size: 14.5px;
  color: var(--text);
  flex-grow: 1;
}

.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-features svg {
  stroke: var(--accent);
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
}

.price-disclosure-box {
  margin-top: 48px;
  background: #eff6ff;
  border: 1px solid rgba(47, 103, 198, 0.36);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.price-disclosure-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(48, 105, 200, 0.11);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}

.price-disclosure-icon svg {
  stroke: var(--accent);
  width: 24px;
  height: 24px;
}

.price-disclosure-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.price-disclosure-text p {
  font-size: 14.5px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ============ 14. Authentic Patient Experiences & Feedback ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.3);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--star-gold);
  margin-bottom: 14px;
}

.review-card h4 {
  font-size: 17.5px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-brand);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.review-info b {
  display: block;
  font-size: 14.5px;
  color: var(--primary);
}

.review-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.review-compliance-note {
  max-width: 820px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============ 15. CTA Band ============ */
.cta-band {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://imagedelivery.net/WefzwPpyYAgz4nGrybaw0Q/76187979-a146-4f95-ff0e-89ec8d0ef500/w=800") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: -120px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.35), transparent 70%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 10px;
  font-weight: 800;
}

.cta-band p {
  color: #cbd5e1;
  margin: 0;
  max-width: 540px;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 19px;
  transition: all 0.2s ease;
}

.cta-phone:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.cta-phone svg {
  stroke: var(--accent-2);
}

/* ============ 16. Booking & Intake Lead Form ============ */
.book-wrap {
  background: var(--navy-grad);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.book-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 100deg, rgba(29, 59, 131, 0.98) 0%, rgba(28, 48, 99, 0.92) 52%, rgba(20, 49, 118, 0.75) 100% );
  pointer-events: none;
}

.book-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding: 64px;
}

.book-left h2 {
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 14px;
  font-weight: 800;
}

.book-left p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(0, 168, 150, 0.16);
  border: 1px solid rgba(0, 184, 196, 0.35);
}

.ci-ico svg {
  stroke: var(--accent-2);
  width: 22px;
  height: 22px;
}

.contact-item b {
  display: block;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  color: #94a3b8;
  font-size: 14.5px;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--accent-2);
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.form-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 800;
}

.form-card > p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--divider);
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--primary);
  outline: none;
  transition: all 0.25s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 168, 150, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card .btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}

.form-security-assurances {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
  display: grid;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-security-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-security-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex: none;
  margin-top: 2px;
}

.form-security-assurances a {
  color: var(--blue-brand);
  text-decoration: underline;
}

.form-security-assurances a:hover {
  color: var(--accent);
}

.form-ok {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ============ 17. FAQs Accordion ============ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.acc {
  background: #ffffff;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.acc.open {
  box-shadow: var(--shadow);
  border-color: rgba(0, 168, 150, 0.4);
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 26px;
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  transition: color 0.25s;
}

.acc-btn:hover {
  color: var(--accent);
}

.acc-btn i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: rgb(239, 246, 255);
  color: var(--accent-deep);
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.acc.open .acc-btn i {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-body p {
  padding: 0 26px 24px;
  margin: 0;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
}

/* ============ 18. Regulatory Footer ============ */
footer.site {
  background: var(--primary);
  color: #94a3b8;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

footer.site::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  left: -200px;
  top: -240px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.12), transparent 70%);
  pointer-events: none;
}

.f-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr;
  gap: 52px;
}

.f-brand-block {
  display: flex;
  flex-direction: column;
}

.f-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  align-self: flex-start;
}

.f-tag {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 14px;
}

.f-rule {
  width: 64px;
  height: 3px;
  background: var(--teal-grad);
  margin-bottom: 18px;
  border-radius: 2px;
}

footer h5 {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}

.f-contact {
  display: grid;
  gap: 14px;
}

.f-contact a,
.f-contact span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 15px;
}

.f-contact a:hover {
  color: var(--accent-2);
}

.f-contact svg {
  stroke: var(--accent-2);
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 4px;
}

.map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-divider);
  height: 190px;
  margin-bottom: 22px;
  background: #0f172a;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-divider);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--teal-grad);
  border-color: transparent;
  transform: translateY(-3px);
}

.socials svg {
  stroke: #cbd5e1;
  width: 17px;
  height: 17px;
}

.socials a:hover svg {
  stroke: #ffffff;
}

.f-links {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.f-links a {
  color: #cbd5e1;
  font-size: 14.5px;
  transition: all 0.25s ease;
}

.f-links a:hover {
  color: var(--accent-2);
  padding-left: 6px;
}

/* Regulatory Footer Notice */
.disclaimer {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  border-top: 1px solid var(--dark-divider);
  padding: 30px 0;
}

.disclaimer h6 {
  color: #ffffff;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 700;
}

.disclaimer p {
  font-size: 14px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 10px;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.copy {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--dark-divider);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: #64748b;
}

.copy a {
  color: #94a3b8;
  transition: color 0.2s;
}

.copy a:hover {
  color: var(--accent-2);
}

/* ============ 19. Floating Actions & Mobile Sticky Bar ============ */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--divider);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-4px);
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

.fab.call {
  background: var(--teal-grad);
}

.fab.call svg {
  stroke: #ffffff;
}

.fab.wa {
  background: #25d366;
}

.fab.wa svg {
  fill: #ffffff;
}

/* Mobile Bottom Sticky Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--divider);
  padding: 10px 16px;
  z-index: 55;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-bar .bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-bottom-bar .btn {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: var(--radius-full);
}

/* Scroll Animation Class */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ============ 20. Responsive Media Queries ============ */
@media (max-width: 1200px) {
  .serve-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header-menu-bar {
    padding: 0;
    border-top: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .burger {
    display: block;
  }
  
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 19, 48, 0.16);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    padding: 24px;
    z-index: 50;
  }
  
  .split, .svc-row, .book-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .svc-row.rev .svc-text {
    order: 0;
  }
  
  .svc-media .frame {
    display: none;
  }
  
  .split-media .m2 {
    position: static;
    width: 100%;
    margin-top: 16px;
    border-width: 0;
  }
  
  .badge-float {
    position: static;
    display: inline-flex;
    margin-top: 16px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .step-line {
    display: none;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .f-brand-block {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 20px 0;
  }
  
  .topbar {
    display: none;
  }
  
  .dha-header-badge {
    display: none;
  }
  
  .nav-phone span {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 60px 0 70px;
  }
  
  .hero h1 {
    font-size: clamp(26px, 6vw, 38px);
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-list {
    grid-template-columns: 1fr;
  }
  
  .serve-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .two-col {
    grid-template-columns: 1fr;
  }
  
  .book-grid {
    padding: 36px 20px;
  }
  
  .form-card {
    padding: 24px 20px;
    width: 100%;
  }
  
  .cta-band {
    padding: 40px 24px;
    text-align: center;
  }
  
  .cta-actions {
    width: 100%;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .f-grid {
    grid-template-columns: 1fr;
  }
  
  .f-brand-block {
    grid-column: span 1;
  }
  
  .float-actions {
    bottom: 84px;
    right: 16px;
  }
  
  .mobile-bottom-bar {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .emergency-card {
    flex-direction: column;
    padding: 16px;
  }
  
  .card-x {
    padding: 24px 20px;
  }
  
  .price-card {
    padding: 26px 20px;
  }
  
  .price-disclosure-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}


/* ===================================================================
   22. NEW HERO BANNER - 4 Column Trust Bar Nice Layout
   Content unchanged, only visual improvement
   =================================================================== */

.hero-new {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: flex-start;
  background: #040F27;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-new .hero-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-image: url("https://imagedelivery.net/WefzwPpyYAgz4nGrybaw0Q/51837826-bffb-4db9-a667-68178a655200/w=1672");
  background-size: cover;
  background-position: 30% center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-new .hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #040F27 0%, #040F27BF 12%, rgba(4, 15, 39, 0.38) 28%, rgba(4, 15, 39, 0.06) 48%, rgba(4,15,39,0.22) 75%, rgba(4,15,39,0) 100%);
}

.hero-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at -5% 15%, rgb(0 184 196 / 0%) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-new .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 108px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-new .hero-inner {
  max-width: 60%;
  position: relative;
  flex: 0 0 auto;
}

/* Pill Eyebrow */
.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,184,196,0.10);
  border: 1px solid rgba(0,184,196,0.22);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.pill-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #00E5E6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,229,230,0.18);
  flex: none;
}
.pill-eyebrow::before { display: none !important; }

/* Headline */
.hero-new h1 {
  font-size: clamp(30px, 3.1vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Subtext */
.hero-new .hero-sub {
  font-size: 25px;
  line-height: 1.65;
  color: rgb(255, 255, 255);
  max-width: 100%;
  margin-bottom: 26px;
  font-weight: 600;
}

/* Quote Box */
.hero-new .hero-cvp {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 3px solid #00E5E6;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(241,245,249,0.88);
  font-style: italic;
  backdrop-filter: blur(12px);
  max-width: 100%;
}

/* CTA Buttons */
.hero-actions-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  max-width: 100%;
}
.btn-ghost-dark-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-ghost-dark-pill:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}
.btn-wa-pill {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(34,197,94,0.32);
  transition: all 0.25s ease;
}
.btn-wa-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34,197,94,0.42); }
.btn-cyan-pill {
  background: linear-gradient(135deg, #2F68C7 0%, #17479A 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0,184,196,0.32);
  transition: all 0.25s ease;
}
.btn-cyan-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,184,196,0.42); }

/* 4 Column Trust Bar - Nice Way at Bottom of Banner */
.hero-trust-fullwidth.hero-trust-4col {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-top: 18px;
}

.hero-new .hero-trust-item {
  background: rgba(15, 27, 54, 0.72);
  background: linear-gradient(180deg, rgba(18,32,62,0.88) 0%, rgba(12,22,44,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 32px rgba(0,0,0,0.28);
  transition: all 0.3s ease;
  min-height: 148px;
}

.hero-new .hero-trust-item:hover {
  background: linear-gradient(180deg, rgba(22,38,72,0.92) 0%, rgba(14,26,52,0.96) 100%);
  border-color: rgba(0,229,230,0.28);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 40px rgba(0,0,0,0.36);
}

.hero-new .trust-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-new .trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: #00E5E6;
  stroke-width: 2;
  flex: none;
}

.hero-new .hero-trust-item .trust-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-new .hero-trust-item .trust-content strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-new .hero-trust-item .trust-content strong::before {
  content: "";
  display: none;
}

.hero-new .hero-trust-item .trust-content span {
  color: #CBD5E1;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 400;
}

/* Icon + Title inline for exact screenshot match */
.hero-new .hero-trust-item {
  position: relative;
}

.hero-new .hero-trust-item .trust-icon {
  position: absolute;
  top: 18px;
  left: 18px;
}

.hero-new .hero-trust-item .trust-content strong {
  padding-left: 26px;
  min-height: 20px;
}

.hero-new .hero-trust-item .trust-content span {
  padding-left: 2px;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1300px) {
  .hero-trust-fullwidth.hero-trust-4col {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
  }
  .hero-new .hero-trust-item {
    padding: 16px 14px;
    min-height: 160px;
  }
}

@media (max-width: 1100px) {
  .hero-new .hero-bg-image { width: 50%; opacity: 0.65; }
  .hero-trust-fullwidth.hero-trust-4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: auto;
  }
  .hero-new .container {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .hero-new .hero-bg-image {
    width: 100%;
    opacity: 0.28;
  }
  .hero-new h1 { font-size: 28px; }
  .hero-actions-new .btn { width: 100%; justify-content: center; }
  .hero-trust-fullwidth.hero-trust-4col {
    grid-template-columns: 1fr !important;
    margin-top: 28px !important;
  }
  .hero-new .hero-trust-item {
    min-height: auto;
  }
}


.bnr-dn{padding: 30px 0 50px 0;
  background: linear-gradient(135deg, #143d80 0%, #021e4e 100%);}

/* ===================================================================
   23. Externalized utility styles
   Inline declarations were moved here so index.html stays markup-only.
   =================================================================== */
.content-width-860 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.content-width-820 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.content-width-760 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.content-width-bottom-64 {
  margin-bottom: 64px;
}

.content-width-bottom-48 {
  margin-bottom: 48px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.svc-kicker {
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  margin-bottom: 8px;
}

.price-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.journey-aux {
  margin-top: 14px;
  font-family: monospace;
  letter-spacing: 0.04em;
}

.journey-note {
  color: #ccd6e5;
  font-size: 14.5px;
  margin-top: 6px;
}

.step-phone {
  color: #fff;
}

.book-copy {
  font-size: 17px;
  line-height: 1.6;
}

.footer-logo-wrap {
  margin-top: 24px;
}

.map-spaced {
  margin-top: 18px;
}

.legal-contact {
  gap: 16px;
}

.legal-copy {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}


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

/* ===================================================================
   24. Simplified 24/7 Doctors On Call Banner
   =================================================================== */
.hero-new {
  min-height: 430px;
  align-items: center;
  padding: 56px 0;
}

.hero-new .hero-bg-image {
  width: 100%;
  opacity: 1;
}

.hero-new .hero-bg-image::after {
  background: linear-gradient( 90deg, rgba(4, 15, 39, 0.94) 0%, rgba(4, 15, 39, 0.18) 48%, rgba(4, 15, 39, 0) 100% );
}

.hero-new .container {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  justify-content: center;
}

.hero-new .hero-inner.banner-message {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 44px;
  text-align: center;
  background: rgba(4, 15, 39, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.banner-message-title {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.banner-message-text {
  color: #e2e8f0;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.75;
  margin: 0;
}

.banner-message-text strong {
  color: #ffffff;
  font-weight: 800;
}

.banner-message-text a {
  color: #8be9ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.banner-message-text a:hover {
  color: #ffffff;
}

.banner-separator {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0.65em;
}

@media (max-width: 768px) {
  .hero-new {
    min-height: 340px;
    padding: 34px 0;
  }

  .hero-new .hero-inner.banner-message {
    padding: 26px 18px;
    border-radius: 14px;
  }

  .banner-message-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .banner-message-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .banner-separator {
    margin: 0 0.35em;
  }
}


/* ===================================================================
   25. Compassionate Medical Care — before Who We Serve
   All additions are scoped to this section; existing styles are unchanged.
   =================================================================== */
#compassionate-care {
  background: #fff;
  padding: 72px 0 86px;
  position: relative;
}

#compassionate-care .care-intro__container {
  /*! width: min(1200px, calc(100% - 96px)); */
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

#compassionate-care .care-intro__content {
  min-width: 0;
}

#compassionate-care .care-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent, #336dce);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#compassionate-care .care-intro__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

#compassionate-care .care-intro__title {
  margin: 0 0 20px;
  color: var(--primary, #152c63);
  font-family: var(--font, sans-serif);
  font-size: clamp(29px, 2.65vw, 36px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

#compassionate-care .care-intro__title em {
  display: block;
  color: var(--accent, #336dce);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
}

#compassionate-care .care-intro__description,
#compassionate-care .care-intro__value {
  margin: 0 0 17px;
  color: #53606e;
  font-size: 14px;
  line-height: 1.85;
}

#compassionate-care .care-intro__value {
  margin-bottom: 21px;
}

#compassionate-care .care-intro__value strong {
  color: var(--primary, #152c63);
  font-weight: 700;
}

#compassionate-care .care-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

#compassionate-care .care-intro__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid #e4e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary, #152c63);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

#compassionate-care .care-intro__chips li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--accent, #336dce);
}

#compassionate-care .care-intro__benefits {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

#compassionate-care .care-intro__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #53606e;
  font-size: 13px;
  line-height: 1.6;
}

#compassionate-care .care-intro__check {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent, #336dce);
  color: #ffffff;
}

#compassionate-care .care-intro__check svg {
  display: block;
  width: 15px;
  height: 15px;
}

#compassionate-care .care-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent, #336dce);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#compassionate-care .care-intro__cta:hover {
  background: var(--blue-hover, #1e52b5);
  box-shadow: 0 7px 20px rgba(21, 44, 99, 0.15);
}

#compassionate-care .care-intro__cta:focus-visible {
  outline: 3px solid var(--primary, #152c63);
  outline-offset: 4px;
}

#compassionate-care .care-intro__media {
  position: relative;
  min-width: 0;
  margin: 0 16px 18px 0;
}

#compassionate-care .care-intro__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
  box-shadow: 0 24px 50px rgba(26, 40, 60, 0.14);
}

#compassionate-care .care-intro__badge {
  position: absolute;
  z-index: 1;
  top: 29px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #336dce 0%, #103e8d 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.15);
}

#compassionate-care .care-intro__badge-icon {
  width: 29px;
  flex: 0 0 29px;
  color: #c3dbff;
}

#compassionate-care .care-intro__badge-icon svg {
  display: block;
  width: 29px;
  height: 34px;
}

#compassionate-care .care-intro__badge strong {
  display: block;
  margin-bottom: 5px;
  color: #d2e4ff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

#compassionate-care .care-intro__badge div > span {
  display: block;
  color: #e0e7f2;
  font-size: 10px;
  line-height: 1.5;
}

#compassionate-care .care-intro__inset {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: -27px;
  display: block;
  width: 53%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 6px solid #ffffff;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(26, 40, 60, 0.16);
}

@media (max-width: 1100px) {
  #compassionate-care .care-intro__container {
    width: calc(100% - 80px);
    gap: 48px;
  }

  #compassionate-care .care-intro__title {
    font-size: 31px;
  }
}

@media (max-width: 900px) {
  #compassionate-care {
    padding: 56px 0 72px;
  }

  #compassionate-care .care-intro__container {
    width: min(660px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  #compassionate-care .care-intro__title {
    font-size: 34px;
  }

  #compassionate-care .care-intro__media {
    width: calc(100% - 32px);
    max-width: 490px;
    margin: 0 auto 18px;
  }
}

@media (max-width: 560px) {
  #compassionate-care {
    padding: 40px 0 57px;
  }

  #compassionate-care .care-intro__container {
    width: calc(100% - 40px);
    gap: 34px;
  }

  #compassionate-care .care-intro__eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  #compassionate-care .care-intro__title {
    margin-bottom: 19px;
    font-size: clamp(26px, 6.75vw, 33px);
    line-height: 1.26;
  }

  #compassionate-care .care-intro__description,
  #compassionate-care .care-intro__value {
    font-size: 14px;
    line-height: 1.8;
  }

  #compassionate-care .care-intro__chips {
    gap: 7px;
  }

  #compassionate-care .care-intro__chips li {
    gap: 6px;
    padding: 7px 11px;
    font-size: 10.5px;
  }

  #compassionate-care .care-intro__media {
    width: calc(100% - 12px);
    margin: 0 12px 18px 0;
  }

  #compassionate-care .care-intro__photo {
    border-radius: 14px;
  }

  #compassionate-care .care-intro__badge {
    top: 20px;
    left: -7px;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  #compassionate-care .care-intro__badge strong {
    font-size: 10px;
  }

  #compassionate-care .care-intro__badge div > span {
    font-size: 9.5px;
  }

  #compassionate-care .care-intro__inset {
    right: -12px;
    bottom: -23px;
    width: 54%;
    border-width: 4px;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #compassionate-care .care-intro__cta {
    transition: none;
  }
}
