/* Bluebonnet Diabetes & Endocrinology — Main Stylesheet */
/* Generated from bluebonnet_website.html */


/* ===== DESIGN TOKENS ===== */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --sage: #7A9E87;
  --sage-dark: #5C7E69;
  --sage-light: #C4D9CB;
  --sage-xlight: #EBF2EE;
  --teal: #2D6A70;
  --teal-dark: #1E4D52;
  --gold: #C8964A;
  --gold-light: #F2DFB8;
  --charcoal: #1C2B2D;
  --slate: #3D5054;
  --muted: #7B8C8E;
  --border: #E0E8E4;
  --shadow: rgba(29,43,45,0.10);
  --shadow-lg: rgba(29,43,45,0.18);
  --r: 12px;
  --r-lg: 20px;
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 600; }
.display { font-family: 'DM Serif Display', serif; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-sage { color: var(--sage-dark); }
.text-muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,112,0.32); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: #b07a30; border-color: #b07a30; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,74,0.35); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ===== STICKY NAV ===== */
nav#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
nav#main-nav.scrolled { box-shadow: 0 4px 24px var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); }
.nav-logo-text .tagline { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--slate);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--sage-xlight); color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-phone { font-size: 0.82rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.nav-phone:hover { color: var(--teal-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--warm-white);
  padding: 90px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 20px;
  border-radius: var(--r);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--sage-xlight); color: var(--teal); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }


/* ===== HERO PRACTICE NAME ===== */
.hero-practice-name {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 24px;
}
.hero-practice-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: #0E4D8B;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-practice-sub {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: #0E4D8B;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
#hero {
  padding-top: 80px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--warm-white) 60%, var(--sage-xlight) 100%);
}
.hero-bg-ornament {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,135,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-ornament-2 {
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  position: relative;
  z-index: 2;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-teal { background: rgba(45,106,112,0.1); color: var(--teal); }
.badge-gold { background: rgba(200,150,74,0.12); color: #8B6520; }
.badge-sage { background: var(--sage-xlight); color: var(--sage-dark); }
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.hero-image-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-img-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,0.35) 0%, transparent 40%);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-floating-card.card-appt {
  bottom: 120px;
  left: -24px;
  z-index: 4;
}
.hero-floating-card.card-rating {
  top: 100px;
  right: -10px;
  animation-delay: 2s;
  z-index: 4;
}
.fc-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon-teal { background: rgba(45,106,112,0.12); }
.fc-icon-gold { background: rgba(200,150,74,0.12); }
.fc-text .fc-title { font-size: 0.78rem; font-weight: 700; color: var(--charcoal); }
.fc-text .fc-sub { font-size: 0.72rem; color: var(--muted); }
.stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 1px; }

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--teal);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; opacity: 0.85; }

/* ===== WHY US ===== */
#why-us { background: var(--warm-white); }
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin: 10px 0 16px; }
.section-header p { font-size: 1.05rem; color: var(--slate); max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover { border-color: var(--sage-light); box-shadow: 0 8px 32px var(--shadow); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.why-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--charcoal); }
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.why-card .highlight { color: var(--teal); font-weight: 700; }

/* ===== WAIT TIME BANNER ===== */
.wait-banner {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fff 100%);
  border: 1px solid rgba(200,150,74,0.25);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wait-banner h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 6px; }
.wait-banner p { color: var(--slate); font-size: 0.95rem; }

/* ===== ABOUT DR. LALANI ===== */
#about {
  background: linear-gradient(160deg, var(--cream) 0%, var(--sage-xlight) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.about-img-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold-light);
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(45,106,112,0.3);
  z-index: 2;
}
.about-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; }
.about-img-badge small { font-size: 0.78rem; opacity: 0.85; }

.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin: 12px 0 20px; }
.about-content .lead { font-size: 1.08rem; color: var(--slate); margin-bottom: 24px; line-height: 1.75; }
.certs-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  box-shadow: 0 2px 8px var(--shadow);
}
.pubs { margin-top: 24px; }
.pubs h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.pub-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--slate);
}
.pub-item:last-child { border-bottom: none; }
.pub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }

/* ===== HOW IT WORKS ===== */
#how-it-works { background: var(--teal); color: #fff; }
#how-it-works .eyebrow { color: var(--sage-light); }
#how-it-works .section-header h2 { color: #fff; }
#how-it-works .section-header p { color: rgba(255,255,255,0.75); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-item h4 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.step-item p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== SERVICES ===== */
#services { background: var(--warm-white); }
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.stab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--slate);
  transition: all var(--transition);
}
.stab:hover { border-color: var(--sage); color: var(--sage-dark); }
.stab.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.services-panel { display: none; }
.services-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.svc-content h3 { font-size: 1.75rem; margin-bottom: 16px; color: var(--charcoal); }
.svc-content .lead { font-size: 1rem; color: var(--slate); margin-bottom: 20px; line-height: 1.72; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list .check { color: var(--sage-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
  aspect-ratio: 4/3;
  background: var(--sage-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--sage-dark);
  padding: 40px;
  text-align: center;
}
.svc-img-placeholder .big-icon { font-size: 4rem; }
.svc-img-placeholder p { font-size: 0.9rem; color: var(--muted); }

/* ===== PRICING ===== */
#pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover { box-shadow: 0 12px 40px var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.price-card.featured .price-label,
.price-card.featured .perk { color: rgba(255,255,255,0.8); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .price-amount { color: #fff; }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-type-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.badge-outline-teal { border: 1px solid rgba(45,106,112,0.3); color: var(--teal); }
.badge-outline-white { border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--charcoal); }
.price-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-amount .amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--teal); }
.price-card.featured .price-amount .amount { color: #fff; }
.price-amount .period { font-size: 0.9rem; color: var(--muted); }
.price-card.featured .price-amount .period { color: rgba(255,255,255,0.7); }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.2); }
.perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
}
.perk .pmark { color: var(--sage-dark); font-weight: 700; flex-shrink: 0; }
.price-card.featured .perk .pmark { color: var(--sage-light); }
.price-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; line-height: 1.5; }
.price-card.featured .price-note { color: rgba(255,255,255,0.65); }

.pricing-disclaimer {
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--sage-xlight);
  border-radius: var(--r);
  border-left: 3px solid var(--sage);
  font-size: 0.88rem;
  color: var(--slate);
}

/* ===== INSURANCE NOTE ===== */
.ins-note {
  background: var(--gold-light);
  border: 1px solid rgba(200,150,74,0.2);
  border-radius: var(--r);
  padding: 16px 22px;
  font-size: 0.88rem;
  color: #6B4C1A;
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--warm-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: 0 8px 28px var(--shadow); transform: translateY(-3px); }
.review-stars { color: #F5A623; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-text::before { content: '\201C'; color: var(--sage-light); font-family: 'Playfair Display', serif; font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.review-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.review-source { font-size: 0.78rem; color: var(--muted); }
.google-badge { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.reviews-summary {
  margin-top: 48px;
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rs-score { display: flex; align-items: center; gap: 16px; }
.rs-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: #fff; line-height: 1; }
.rs-detail { display: flex; flex-direction: column; gap: 4px; }
.rs-stars { color: #F5A623; font-size: 1.2rem; letter-spacing: 2px; }
.rs-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.rs-logos { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.rs-logo { background: rgba(255,255,255,0.12); border-radius: var(--r); padding: 10px 18px; color: #fff; font-size: 0.88rem; font-weight: 600; }

/* ===== DIRECT CARE EXPLAINER ===== */
#direct-care { background: var(--cream); }
.dc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dc-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sage-xlight);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
  color: var(--sage-dark);
}
.dc-content h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin: 12px 0 20px; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.comparison-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-table th:first-child { color: var(--muted); }
.comparison-table th.th-them { color: #C0392B; }
.comparison-table th.th-us { color: var(--sage-dark); background: var(--sage-xlight); border-radius: var(--r) var(--r) 0 0; }
.comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--slate);
  vertical-align: top;
}
.comparison-table td.td-us { background: var(--sage-xlight); color: var(--teal); font-weight: 600; }
.comparison-table td.td-them { color: #C0392B; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ===== FAQ ===== */
#faq { background: var(--warm-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-item.open { border-color: var(--teal); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  user-select: none;
}
.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.8rem;
  color: var(--slate);
}
.faq-item.open .faq-arrow { background: var(--teal); color: #fff; border-color: var(--teal); transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* ===== LOCATION ===== */
#location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.loc-info { display: flex; flex-direction: column; gap: 24px; }
.loc-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.loc-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.loc-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; font-size: 0.92rem; color: var(--slate); }
.loc-detail strong { display: block; font-size: 0.8rem; color: var(--muted); }
.loc-detail .icon { font-size: 1.1rem; width: 22px; flex-shrink: 0; }
.map-placeholder {
  border-radius: var(--r-lg);
  background: var(--sage-xlight);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  color: var(--sage-dark);
  font-size: 0.9rem;
  text-align: center;
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.map-link:hover { background: var(--teal-dark); }

/* ===== CTA SECTION ===== */
#cta-bottom {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--sage-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#cta-bottom::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
#cta-bottom::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content .eyebrow { color: var(--sage-light); margin-bottom: 16px; display: block; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 32px; }
.cta-contact-options { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.cta-contact-opt { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.92rem; font-weight: 500; }
.cta-contact-opt strong { color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.social-label { font-family: 'DM Sans', sans-serif; }
.social-btn:hover { border-color: transparent; color: #fff; transform: translateY(-2px); }
.social-btn--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn--facebook:hover  { background: #1877F2; }
.social-btn--linkedin:hover  { background: #0A66C2; }

/* Location page social buttons */
.loc-social-row { display: flex; flex-direction: column; gap: 10px; }
.loc-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  transition: all var(--transition);
  width: 100%;
  cursor: pointer;
}
.loc-social-btn:hover { border-color: transparent; color: #fff; transform: translateX(4px); }
.loc-social-btn--instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.loc-social-btn--facebook:hover  { background: #1877F2; border-color: transparent; }
.loc-social-btn--linkedin:hover  { background: #0A66C2; border-color: transparent; }
.footer-col h5 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col li a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(45,106,112,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 800;
  gap: 10px;
  box-shadow: 0 -4px 16px var(--shadow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-image-col { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .dc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .services-panel.active { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar-inner { gap: 16px 28px; }
  .wait-banner { flex-direction: column; text-align: center; }
  .mobile-cta-bar { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .rs-score { justify-content: center; }
  .rs-logos { justify-content: center; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-content { padding: 40px 0 28px; }
}

/* ===== APPOINTMENT MODAL ===== */
.appt-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28,43,45,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.appt-modal-overlay.open { display: flex; }
.appt-modal {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.93) translateY(16px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.modal-header {
  background: var(--teal);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 28px 32px 24px;
  position: relative;
}
.modal-header h3 { font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.modal-header p  { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.32); }
.modal-body { padding: 28px 32px 32px; }
.appt-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--slate); letter-spacing: 0.02em; }
.form-group label .req { color: #C0392B; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45,106,112,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B8C8E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--sage-xlight);
  border-radius: var(--r);
  padding: 12px 14px;
  margin: 6px 0 18px;
}
.form-consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--teal); cursor: pointer; }
.form-consent label { font-size: 0.8rem; color: var(--slate); line-height: 1.5; cursor: pointer; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.form-submit-btn:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,112,0.32); }
.form-submit-btn:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; color: var(--teal); margin-bottom: 10px; }
.form-success p { font-size: 0.95rem; color: var(--slate); line-height: 1.7; }
.form-divider { height: 1px; background: var(--border); margin: 6px 0 16px; }
.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.cta-left .eyebrow { color: var(--sage-light); display: block; margin-bottom: 14px; }
.cta-left h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.cta-left p  { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 28px; }
.cta-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-contact-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.cta-contact-list a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-contact-list a:hover { color: var(--sage-light); }
.cta-form-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.cta-form-header { background: var(--teal-dark); padding: 22px 28px; }
.cta-form-header h3 { font-size: 1.2rem; color: #fff; margin-bottom: 3px; }
.cta-form-header p  { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.cta-form-body { padding: 24px 28px 28px; }
@media (max-width: 900px) { .cta-two-col { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .modal-body { padding: 20px; } }

/* ===== GENERAL QUERIES SECTION ===== */
#general-queries {
  background: var(--warm-white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.gq-two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.gq-left h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--charcoal); margin: 10px 0 16px; }
.gq-left p  { font-size: 0.95rem; color: var(--slate); line-height: 1.75; margin-bottom: 28px; }
.gq-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.gq-contact-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--slate); }
.gq-contact-list .gq-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--sage-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.gq-contact-list a { color: var(--teal); font-weight: 600; transition: color var(--transition); }
.gq-contact-list a:hover { color: var(--teal-dark); }
.gq-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}
.gq-form-header {
  background: var(--sage-dark);
  padding: 22px 28px;
}
.gq-form-header h3 { font-size: 1.15rem; color: #fff; margin-bottom: 3px; }
.gq-form-header p  { font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.gq-form-body { padding: 24px 28px 28px; }
@media (max-width: 900px) { .gq-two-col { grid-template-columns: 1fr; gap: 36px; } }

/* ===== ARTICLE READER MODAL ===== */
.article-modal-overlay { display:none; position:fixed; inset:0; z-index:3000; background:rgba(28,43,45,0.82); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); align-items:flex-start; justify-content:center; padding:24px 16px; overflow-y:auto; }
.article-modal-overlay.open { display:flex; }
.article-modal { background:var(--warm-white); border-radius:var(--r-lg); width:100%; max-width:800px; margin:0 auto 40px; box-shadow:0 24px 80px rgba(0,0,0,0.35); animation:articleModalIn 0.3s ease; flex-shrink:0; }
@keyframes articleModalIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.article-modal-close { position:sticky; top:0; z-index:10; display:flex; align-items:center; justify-content:space-between; background:var(--teal); padding:14px 24px; border-radius:var(--r-lg) var(--r-lg) 0 0; }
.article-modal-close-label { color:rgba(255,255,255,0.85); font-size:0.85rem; }
.article-modal-close-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.25); border-radius:50px; color:#fff; font-size:0.85rem; font-weight:600; cursor:pointer; }
.article-modal-close-btn:hover { background:rgba(255,255,255,0.28); }
.article-content { padding:40px 48px 56px; }
.article-hero-img { width:100%; border-radius:var(--r); margin-bottom:28px; aspect-ratio:16/7; object-fit:cover; }
.article-meta-row { display:flex; align-items:center; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.article-content h1 { font-family:'Playfair Display',serif; font-size:clamp(1.6rem,3vw,2.2rem); color:var(--charcoal); line-height:1.25; margin-bottom:24px; }
.article-content h2 { font-family:'Playfair Display',serif; font-size:1.35rem; color:var(--charcoal); margin:32px 0 12px; }
.article-content h3 { font-size:1.05rem; font-weight:700; color:var(--teal); margin:22px 0 8px; }
.article-content p { font-size:0.97rem; color:var(--slate); line-height:1.8; margin-bottom:16px; }
.article-content ul,.article-content ol { padding-left:22px; margin-bottom:16px; }
.article-content li { font-size:0.95rem; color:var(--slate); line-height:1.75; margin-bottom:6px; }
.article-content strong { color:var(--charcoal); }
.article-content img { max-width:100%; border-radius:var(--r); margin:16px 0; }
.article-cta-box { background:var(--sage-xlight); border-left:4px solid var(--teal); border-radius:0 var(--r) var(--r) 0; padding:20px 24px; margin:28px 0; }
.article-cta-box p { margin:0 0 12px; font-weight:600; color:var(--teal) !important; }
@media(max-width:600px){ .article-content{padding:24px 20px 36px;}
/* ===== ARTICLE MODAL NAV BAR ===== */
.article-modal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--teal-dark);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.article-modal-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 12px;
}
.amn-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.amn-logo:hover { background: rgba(255,255,255,0.1); }
.amn-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.amn-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.amn-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.amn-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.amn-links a:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.amn-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.amn-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  background: var(--gold);
  color: #fff;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(200,150,74,0.4);
}
.amn-book-btn:hover { background: #b07a30; transform: translateY(-1px); }
.article-modal-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.article-modal-close-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}



@media (max-width: 768px) { .blog-preview-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 1024px) and (min-width: 769px) { .blog-preview-grid { grid-template-columns: repeat(2,1fr) !important; } }
