/* ============================================================
   Caring Hearts with Helping Hands — Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:     #2a6f97;
  --primary-dk:  #1d4e6f;
  --primary-lt:  #e8f4f8;
  --accent:      #e07b39;
  --accent-lt:   #fef0e5;
  --text:        #2d2d2d;
  --text-muted:  #5a5a5a;
  --bg:          #ffffff;
  --bg-soft:     #f7f9fb;
  --border:      #dce4ec;
  --success:     #2e7d52;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --transition:  .25s ease;
  --max-w:       1140px;
  --font:        'Lato', system-ui, -apple-system, sans-serif;
  --font-head:   'Merriweather', Georgia, serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dk); }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.section-header { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-header h2 { margin-bottom: .75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #c96a28;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(224,123,57,.35);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .45rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.top-bar a { color: rgba(255,255,255,.9); }
.top-bar a:hover { color: #fff; }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar span { display: flex; align-items: center; gap: .35rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo-text .name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dk);
  line-height: 1.1;
}
.logo-text .tagline {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #3a8fc4 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-content h1 span { color: #f5c07a; }

.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.hero-card h3 {
  color: var(--primary-dk);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.coverage-list { display: flex; flex-direction: column; gap: .6rem; }

.coverage-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text);
}

.coverage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.coverage-dot.home { background: var(--accent); }

.hero-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary-lt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-item .number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust-item .label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}

/* ---------- Services ---------- */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-lt);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: var(--primary-lt);
}

.service-card h3 { margin-bottom: .6rem; color: var(--primary-dk); }
.service-card p { font-size: .9rem; }

.service-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.service-list li {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why { background: var(--bg-soft); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-features { display: flex; flex-direction: column; gap: 1.75rem; }

.why-feature {
  display: flex;
  gap: 1.25rem;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-feature-body h4 { color: var(--primary-dk); margin-bottom: .35rem; }
.why-feature-body p { font-size: .9rem; margin: 0; }

.why-visual {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}

.why-visual h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.why-visual p { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; }

.pricing-tiers { display: flex; flex-direction: column; gap: 1rem; }

.pricing-tier {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier-name { font-weight: 700; font-size: .9rem; }
.tier-price { font-size: 1.1rem; font-weight: 700; color: #f5c07a; }
.tier-note { font-size: .75rem; color: rgba(255,255,255,.65); }

.pricing-disclaimer {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Coverage Area ---------- */
.coverage { background: var(--bg); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.coverage-state-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.coverage-state-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.coverage-state-card .state-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.coverage-state-card .state-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary-dk);
  margin-bottom: .25rem;
}
.coverage-state-card .state-cities {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.coverage-note {
  text-align: center;
  background: var(--primary-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: .88rem;
  color: var(--primary-dk);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Process Steps ---------- */
.process { background: var(--bg-soft); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 { margin-bottom: .5rem; color: var(--primary-dk); }
.step-card p { font-size: .88rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: var(--font-head);
  color: var(--primary-lt);
  line-height: 1;
}

.stars { color: #f5a623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }

.testimonial-card p { font-style: italic; font-size: .92rem; margin-bottom: 1.25rem; }

.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.reviewer-location { font-size: .78rem; color: var(--text-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c96a28 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover {
  background: #f9f0e8;
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 700;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1a2e3d;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text .name { color: #fff; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,.5); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: background var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.contact-item {
  display: flex;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  align-items: flex-start;
}
.contact-item span:first-child { flex-shrink: 0; font-size: 1rem; margin-top: .05rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 4rem 0;
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Contact Page ---------- */
.contact-section { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--primary-dk);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h2 { color: #fff; margin-bottom: .5rem; }
.contact-info-card p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

.info-items { display: flex; flex-direction: column; gap: 1.5rem; }

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item h4 { color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font); margin-bottom: .2rem; }
.info-item p { color: #fff; font-size: .95rem; margin: 0; }
.info-item a { color: #f5c07a; }
.info-item a:hover { color: #fff; }

.hours-grid {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hours-grid h4 { color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font); margin-bottom: .75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .4rem; color: rgba(255,255,255,.8); }
.hours-row strong { color: #fff; }

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h2 { margin-bottom: .35rem; }
.contact-form-wrap > p { font-size: .9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,111,151,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  flex-shrink: 0;
}
.form-check label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-success {
  display: none;
  background: #e9f7ef;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--success);
  font-weight: 700;
  margin-top: 1rem;
}

/* ---------- About Page ---------- */
.about-mission { background: var(--bg); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-visual {
  background: var(--primary-lt);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.mission-visual .big-heart { font-size: 5rem; margin-bottom: 1rem; }
.mission-visual blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--primary-dk);
  font-style: italic;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.value-item .value-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.value-item h4 { color: var(--primary-dk); font-size: .9rem; margin-bottom: .25rem; }
.value-item p { font-size: .82rem; margin: 0; }

.team-section { background: var(--bg-soft); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; color: var(--primary-dk); margin-bottom: .2rem; }
.team-card .role { font-size: .8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.team-card p { font-size: .84rem; }

/* ---------- Services Page Extended ---------- */
.services-detail { background: var(--bg); }
.adl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.adl-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.adl-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.adl-icon { font-size: 1.6rem; flex-shrink: 0; }
.adl-card h4 { color: var(--primary-dk); margin-bottom: .25rem; }
.adl-card p { font-size: .85rem; margin: 0; }

.insurance-section { background: var(--bg-soft); }
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.insurance-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.insurance-card .ins-icon { font-size: 1.5rem; margin-bottom: .5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .top-bar-left { display: none; }
  .hero { padding: 3rem 0; }
  .hero-badges { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.open { opacity: 1; }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; margin-top: .5rem; }
.mobile-nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
