/* =============================================
   DESIGN SYSTEM — ACADIAN Urgent Care
   Brand: Red #C8102E · White #FFFFFF · Charcoal #1C1C1C
   Accent: Light gray #F7F7F7 · Mid gray #8C8C8C
   ============================================= */
:root {
  --red:       #C8102E;
  --red-dark:  #A00E25;
  --red-light: #E8192F;
  --red-muted: rgba(200,16,46,0.08);
  --charcoal:  #1C1C1C;
  --dark:      #111111;
  --white:     #FFFFFF;
  --offwhite:  #F7F7F7;
  --light:     #EFEFEF;
  --mid:       #8C8C8C;
  --border:    #E2E2E2;
  --text:      #2A2A2A;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-cross {
  width: 22px; height: 22px;
  position: relative;
}
.logo-cross::before, .logo-cross::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 2px;
}
.logo-cross::before { width: 6px; height: 22px; left: 8px; top: 0; }
.logo-cross::after  { width: 22px; height: 6px; left: 0; top: 8px; }
.logo-text-wrap { line-height: 1.1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.logo-name span { color: var(--red); }
.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: var(--red-muted); }
.nav-cta-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta-btn:hover { background: var(--red-dark) !important; }

/* ─── HERO (HOME) ─── */
.hero {
  background: var(--charcoal);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3rem 6rem 4rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 1.5rem; height: 2px;
  background: var(--red-light);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--red-light); font-style: normal; }
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.06); }

.hero-right {
  background: var(--red);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem;
}
.hero-right::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero-right::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative; z-index: 2;
}
.hero-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.hero-phones {
  margin-top: 2rem;
  position: relative; z-index: 2;
}
.hero-phones-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.hero-phone-item {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
  font-size: 1rem;
}
.hero-phone-item small { font-weight: 400; color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ─── STRIP ─── */
.strip {
  background: var(--red);
  color: white;
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.strip-track {
  white-space: nowrap;
  display: flex;
  align-items: center;
  animation: ticker 22s linear infinite;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.strip-sep { opacity: 0.35; font-size: 1.1rem; }
.strip-icon { font-size: 1rem; }

/* ─── SECTION UTILITIES ─── */
.section { padding: 5rem 3rem; }
.section-sm { padding: 3rem 3rem; }
.section-alt { background: var(--offwhite); }
.section-dark { background: var(--charcoal); color: white; }
.section-red { background: var(--red); color: white; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ''; width: 1.5rem; height: 2px; background: var(--red); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.section-title-white { color: white; }
.section-title-white .section-label { color: rgba(255,255,255,0.7); }
.section-title-white .section-label::before { background: rgba(255,255,255,0.7); }
.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--red-muted);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.svc-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.65;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  cursor: pointer;
  background: none; border: none;
  transition: gap 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
}
.svc-link:hover { gap: 0.7rem; }

/* ─── HOMEPAGE: WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.why-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  color: var(--red);
  transition: background 0.2s, color 0.2s;
}
.why-card:hover .why-icon { background: var(--red); color: white; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ─── HOMEPAGE: REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
}
.review-stars { color: var(--red); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.88rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--red);
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
.cta-banner-text p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 0.5rem; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--red);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
  display: inline-block;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
}
.btn-white:hover { transform: translateY(-2px); }

/* ─── SERVICES PAGE ─── */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(200,16,46,0.15);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero .section-label::before { background: rgba(255,255,255,0.5); }
.page-hero .section-title { color: white; }
.page-hero .section-desc { color: rgba(255,255,255,0.55); margin-bottom: 0; }

/* ─── SERVICE DETAIL CARDS (expanded) ─── */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.svc-detail-img {
  background: var(--red-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.svc-detail-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-muted), rgba(200,16,46,0.02));
}
.svc-detail-img span { position: relative; z-index: 2; }
.svc-detail-body {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-detail-tag {
  display: inline-block;
  background: var(--red-muted);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.svc-detail-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.svc-detail-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── CONDITIONS TABLE ─── */
.conditions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.conditions-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid;
}
.conditions-col.er h3 { color: var(--red); border-color: var(--red); }
.conditions-col.uc h3 { color: var(--charcoal); border-color: var(--border); }
.conditions-col ul { list-style: none; }
.conditions-col li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.3;
}
.conditions-col li::before {
  content: '\2192';
  font-size: 0.8rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
.conditions-col.er li::before { color: var(--red); }
.conditions-col.uc li::before { color: var(--charcoal); }

/* ─── LOCATIONS PAGE ─── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-card-header {
  background: var(--charcoal);
  padding: 1.5rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.loc-card-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.loc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: rgba(255,255,255,0.06);
  position: absolute; top: 0.5rem; right: 1.5rem;
  line-height: 1;
}
.loc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  position: relative; z-index: 2;
}
.loc-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-top: 0.3rem;
  position: relative; z-index: 2;
}
.loc-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.loc-body { padding: 1.8rem; }
.loc-row {
  display: flex; gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.loc-row-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }
.loc-row strong { display: block; font-weight: 700; color: var(--charcoal); margin-bottom: 0.1rem; }
.loc-phone {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  padding: 0.7rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s;
}
.loc-phone:hover { background: var(--red-dark); }

/* ─── SPECIALISTS PAGE ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.team-avatar::after {
  content: '';
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.team-body { padding: 1.5rem; }
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.team-specialty {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ─── PATIENTS PAGE ─── */
.patients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-block { margin-bottom: 2.5rem; }
.info-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.info-block p {
  font-size: 0.9rem; color: var(--text);
  line-height: 1.7; font-weight: 400;
}
.safety-list { list-style: none; margin-top: 0.5rem; }
.safety-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.safety-list li::before { content: '\2717'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.notice-box {
  background: var(--red-muted);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  margin: 2rem 0;
}
.notice-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.notice-box p { font-size: 0.85rem; color: var(--text); line-height: 1.6; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,16,46,0.4);
}
.footer-col ul { list-style: none; }
.footer-col li { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.footer-col li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col li a:hover, .footer-col li:hover { color: rgba(255,255,255,0.85); }
.footer-phone {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.footer-phone strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--red-light); }

/* ─── DIVIDER ─── */
.red-divider {
  height: 4px;
  background: var(--red);
  width: 60px;
  margin: 1.5rem 0;
}

/* ─── ANIMATION ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.animate {
  animation: fadeInUp 0.5s ease both;
}
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.1s; }
.d3 { animation-delay: 0.15s; } .d4 { animation-delay: 0.2s; }
.d5 { animation-delay: 0.25s; } .d6 { animation-delay: 0.3s; }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── SERVICE CARD LINKS ─── */
.svc-card-link {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  cursor: pointer;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  display: flex; flex-direction: column; gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.svc-card-link:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
  transform: translateY(-3px);
}
.svc-card-icon { font-size: 2.4rem; margin-bottom: 0.4rem; }
.svc-card-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
}
.svc-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--charcoal);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.svc-card-desc { font-size: 0.83rem; color: var(--mid); line-height: 1.5; flex: 1; }
.svc-card-cta { margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--red); letter-spacing: 0.05em; }

/* ─── SERVICE DETAIL PAGE ─── */
.svc-page-body { max-width: 780px; margin: 0 auto; }
.svc-page-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--charcoal);
  margin: 2rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.svc-page-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.svc-page-body p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.svc-page-body ul { margin: 0.5rem 0 1rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-page-body ul li { font-size: 0.97rem; line-height: 1.65; color: var(--text); }
.svc-page-body ul li::marker { color: var(--red); }
.svc-back-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red); cursor: pointer;
  margin-bottom: 2.5rem; background: none; border: none; padding: 0;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
}
.svc-back-btn:hover { text-decoration: underline; }
.svc-hero-row {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
.svc-hero-icon {
  font-size: 3.5rem; background: var(--red-muted); border-radius: 16px;
  width: 88px; height: 88px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.svc-hero-info .svc-detail-tag { display: block; margin-bottom: 0.4rem; }
.svc-hero-info h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--charcoal); line-height: 1.1;
}

/* ─── FAQ ACCORDION ─── */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--red);
  font-weight: 300; flex-shrink: 0; margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item > div {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.95rem; line-height: 1.7; color: var(--mid);
}

/* ─── CALL MODAL ─── */
.call-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .patients-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  nav { padding: 0 1.25rem; }
  .section { padding: 3rem 1.25rem; }
  .section-sm { padding: 2rem 1.25rem; }
  .cta-banner { padding: 2.5rem 1.25rem; flex-direction: column; text-align: center; }
  .cta-banner-text h2 { font-size: 1.8rem; }
  .cta-buttons { justify-content: center; }
  .page-hero { padding: 3.5rem 1.25rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .svc-hero-row { flex-direction: column; text-align: center; }
  .svc-hero-info h1 { font-size: 2rem; }

  /* Inline-grid overrides for mobile */
  .tele-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .tele-features { grid-template-columns: 1fr !important; }
  .pharma-spotlight-grid { grid-template-columns: 1fr !important; }
  .pharma-detail-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .hero-stat-grid { grid-template-columns: 1fr !important; }

  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-bottom: 3px solid var(--red);
    z-index: 1001;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0;
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--red-muted);
  }
  .nav-cta-btn {
    margin: 0.5rem 1.5rem;
    text-align: center;
    border-radius: var(--radius) !important;
  }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-logo .logo-text-wrap .logo-sub { display: none; }
  .hero-left { padding: 4rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-red, .hero-buttons .btn-ghost { width: 100%; text-align: center; }
  .section-title { font-size: 1.8rem; }
  .cta-banner-text h2 { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .review-card { padding: 1.2rem; }
  .loc-card-header { padding: 1.2rem; }
  .strip-item { padding: 0 1.5rem; font-size: 0.72rem; }
}
