/* ============================================================
   Paragould Family Care — styles.css
   Clean, trustworthy family medical clinic. Mobile-first.
   ============================================================ */

/* --- Variables --- */
:root {
  --navy:       #1B3A5C;
  --navy-dark:  #122840;
  --blue:       #4A90C4;
  --blue-light: #EBF4FB;
  --green:      #3D9970;
  --white:      #FFFFFF;
  --gray-bg:    #F5F7FA;
  --border:     #DDE3EC;
  --text:       #1A2535;
  --muted:      #5A6878;
  --red:        #C0392B;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(27,58,92,0.08);
  --shadow-md:  0 4px 24px rgba(27,58,92,0.13);
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w:      1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* --- Base --- */
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem);  font-weight: 800; line-height: 1.1;  letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--muted); line-height: 1.7; }

/* --- Layout --- */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5rem 1.5rem; background: var(--white); }
.section-gray { padding: 5rem 1.5rem; background: var(--gray-bg); }
.section-navy { padding: 5rem 1.5rem; background: var(--navy); }

@media (min-width: 768px) {
  .section,
  .section-gray,
  .section-navy { padding: 6rem 1.5rem; }
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { color: var(--navy); margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.0625rem; }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.625rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg    { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-navy    { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-blue    { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-blue:hover  { background: #3a7ab0; border-color: #3a7ab0; }

.btn-white   { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: #e8edf2; }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-info-bar {
  background: var(--blue-light);
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
}
.top-info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.top-info-inner a { color: var(--navy); }
.top-info-inner a:hover { color: var(--blue); }
@media (max-width: 640px) {
  .top-info-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.2rem; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(27,58,92,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { width: 210px; max-height: 58px; object-fit: contain; display: block; }
@media (max-width: 700px) { .nav-logo-img { width: 165px; max-height: 52px; } }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-phone { display: none; font-size: 0.9375rem; font-weight: 700; color: var(--navy); }
@media (min-width: 640px) { .nav-phone { display: block; } }
.nav-cta   { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px 4px;
}
.nav-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.2s;
}
@media (min-width: 900px) { .nav-menu-btn { display: none; } }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 4px 16px rgba(27,58,92,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul   { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.mobile-nav a {
  display: block; padding: 0.625rem 0.75rem; font-weight: 600;
  color: var(--text); border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-nav-cta { display: block; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 0;
  background: none;
  overflow: hidden;
}

.hero-split-edge {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 500px;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero-split-edge { grid-template-columns: 1fr; height: auto; min-height: auto; }
}

.hero-copy-panel {
  background: linear-gradient(135deg, #1f4f78 0%, #2f6f9e 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 4rem 3rem 1.5rem;
}
@media (max-width: 900px) {
  .hero-copy-panel { justify-content: center; padding: 3.5rem 1.5rem 2.5rem; }
}

.hero-copy-inner { max-width: 540px; width: 100%; }
.hero-copy-inner h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}
.hero-copy-inner p  { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; }
.hero-eyebrow { color: rgba(255,255,255,0.62); margin-bottom: 0.625rem; }

.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.hero-trust-pills span {
  background: rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.775rem;
  font-weight: 600;
}

.hero-image-panel {
  overflow: hidden;
  height: 500px;
  min-height: 500px;
}
.hero-image-panel img {
  width: 100%;
  height: 500px;
  min-height: 500px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
@media (max-width: 900px) {
  .hero-image-panel { height: auto; min-height: unset; }
  .hero-image-panel img { height: auto; min-height: unset; aspect-ratio: 16 / 9; }
}

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Image placeholders */
.img-placeholder {
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.img-ph-icon  { font-size: 3rem; opacity: 0.35; }
.img-ph-label { font-size: 0.875rem; color: rgba(255,255,255,0.4); font-style: italic; }

.img-placeholder-light {
  background: var(--blue-light);
  border: 2px dashed var(--border);
}
.img-placeholder-light .img-ph-icon  { color: var(--blue); opacity: 0.5; }
.img-placeholder-light .img-ph-label { color: var(--muted); }

/* Real image cards */
.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-image-card img { height: auto; aspect-ratio: 4 / 3; }
}

.content-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
}
.content-image-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .content-image-card img { min-height: unset; height: auto; aspect-ratio: 4 / 3; }
}

.clinic-photo-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.clinic-photo-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 72%;
  display: block;
}
@media (max-width: 767px) {
  .clinic-photo-block img { height: auto; aspect-ratio: 16 / 9; }
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24456e 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.625rem; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.0625rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--blue);
  padding: 0.875rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-check {
  background: rgba(255,255,255,0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--blue);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { font-size: 1.75rem; margin-bottom: 0.875rem; display: block; }
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.9375rem; }

/* Services list (primary care page) */
.services-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.services-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}
.services-list-item::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   PROVIDER CARDS — compact (homepage)
   ============================================================ */
.providers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.provider-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.provider-photo {
  background: var(--blue-light);
  border-bottom: 1px solid var(--border);
  height: 180px;
  overflow: hidden;
}
.provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 640px) {
  .provider-photo { height: auto; aspect-ratio: 3 / 4; }
}
.provider-info        { padding: 1.125rem 0.875rem; }
.provider-info h3     { color: var(--navy); font-size: 0.9375rem; margin-bottom: 0.2rem; }
.provider-title       { font-size: 0.8rem; color: var(--blue); font-weight: 600; margin-bottom: 0.25rem; display: block; }
.provider-cred        { font-size: 0.8rem; color: var(--muted); display: block; }

/* ============================================================
   PROVIDER CARDS — full (providers page)
   ============================================================ */
.provider-full-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.provider-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) { .provider-full-card { flex-direction: row; } }

.provider-full-photo {
  background: var(--blue-light);
  min-height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 640px) { .provider-full-photo { width: 240px; min-height: auto; } }
.provider-full-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (min-width: 640px) {
  .provider-full-photo img { min-height: unset; height: 100%; }
}

.provider-full-info        { padding: 2rem 1.75rem; flex: 1; }
.provider-full-info h2     { color: var(--navy); font-size: 1.375rem; margin-bottom: 0.2rem; }
.provider-full-title       { color: var(--blue); font-weight: 700; font-size: 0.9375rem; display: block; margin-bottom: 1rem; }
.provider-full-info p      { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.provider-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(74,144,196,0.25);
  margin: 0.25rem 0.25rem 0 0;
}
.provider-badges { margin-top: 0.75rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--blue);
}
.testimonial-stars  { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-quote  { color: var(--text); font-style: italic; font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.875rem; }

/* ============================================================
   PATIENT FORMS
   ============================================================ */
.forms-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.form-card-icon { font-size: 2.5rem; }
.form-card h3   { color: var(--navy); }
.form-card p    { font-size: 0.9375rem; flex: 1; }
.form-dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s;
  text-align: center;
}
.form-dl-btn:hover { background: var(--navy-dark); }

.forms-note {
  max-width: 860px;
  margin: 2rem auto 0;
  background: var(--blue-light);
  border: 1px solid rgba(74,144,196,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.forms-note p { font-size: 0.9375rem; color: var(--navy); }
.forms-note a { color: var(--blue); font-weight: 700; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--navy); margin-bottom: 1.5rem; border-bottom: 2px solid var(--border); padding-bottom: 0.75rem; }

.contact-row { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.25rem; }
.c-icon  { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.15em; }
.c-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 0.15rem; }
.c-value { color: var(--text); font-weight: 600; font-size: 0.9375rem; }
.c-value a       { color: var(--navy); }
.c-value a:hover { color: var(--blue); text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td  { padding: 0.5rem 0; font-size: 0.9375rem; vertical-align: middle; }
.hours-table td:first-child { font-weight: 600; color: var(--text); }
.hours-table td:last-child  { text-align: right; color: var(--muted); }
.hours-open   { color: var(--green) !important; font-weight: 700; }
.hours-closed { color: var(--red)   !important; font-weight: 700; }

/* Map placeholder */
.map-placeholder {
  background: var(--gray-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.map-ph-icon { font-size: 3rem; color: var(--blue); opacity: 0.5; }
.map-placeholder p { font-size: 0.9375rem; max-width: 400px; }
.map-placeholder a { color: var(--blue); font-weight: 700; }

/* ============================================================
   FINANCING / CARECREDIT
   ============================================================ */
.financing-card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .financing-card { grid-template-columns: 1.4fr auto; }
}
.financing-copy h2 { color: var(--navy); margin-bottom: 0.75rem; }

.carecredit-link {
  display: inline-block;
  justify-self: start;
  transition: transform 0.15s;
}
.carecredit-link:hover { transform: translateY(-2px); }
.carecredit-link img {
  width: 350px;
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* ============================================================
   INSURANCE
   ============================================================ */
.insurance-tags {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.ins-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

/* Telemedicine callout */
.callout-box {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  background: var(--blue-light);
  border: 1px solid rgba(74,144,196,0.3);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.callout-icon { font-size: 2rem; flex-shrink: 0; }
.callout-box h3 { color: var(--navy); margin-bottom: 0.5rem; }
.callout-box p  { font-size: 0.9375rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #24456e 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-inner     { max-width: 620px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.0625rem; margin-bottom: 2.5rem; }
.cta-buttons   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer-brand-name { font-size: 1.125rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.footer-tagline    { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.footer-phone-big  {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.15s;
}
.footer-phone-big:hover { color: var(--blue-light); }

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-col p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  padding-top: 0.625rem;
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-credit a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICE ICON — CLEAN BADGE
   ============================================================ */
.service-icon-clean {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(74,144,196,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  font-style: normal;
}

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-embed {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

/* ============================================================
   LOCAL CARE SECTION
   ============================================================ */
.local-care-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .local-care-inner { grid-template-columns: 1fr 1fr; }
}
.local-care-copy h2 { color: var(--navy); margin-bottom: 1rem; }
.local-care-copy p  { margin-bottom: 1.75rem; }
.local-care-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.local-care-photo img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 767px) { .local-care-photo img { height: auto; aspect-ratio: 4 / 3; } }

/* ============================================================
   PHOTO GRID
   ============================================================ */
.photo-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
