/* ============================================================
   DogsLife.Pro — Main Stylesheet
   Colours: Cobalt Blue, Rich Purple, Soft Lavender, Warm Brown, White
   No green anywhere.
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --cobalt:        #1B4FD8;
  --cobalt-dark:   #1540B0;
  --cobalt-light:  #EEF2FF;
  --purple:        #7C3AED;
  --purple-dark:   #6D28D9;
  --lavender:      #EDE9FF;
  --lavender-mid:  #C4B5FD;
  --brown:         #92400E;
  --brown-light:   #FEF3C7;
  --cream:         #FFFBF5;
  --navy:          #1E1B4B;
  --text:          #374151;
  --text-light:    #6B7280;
  --white:         #FFFFFF;
  --off-white:     #F9F8FF;
  --border:        #E5E7EB;
  --shadow:        0 4px 24px rgba(30, 27, 75, 0.08);
  --shadow-lg:     0 8px 40px rgba(30, 27, 75, 0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   999px;
  --transition:    0.25s ease;
  --max-width:     1180px;
}

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

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cobalt-dark); }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

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

.lead {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 680px;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  background: var(--cobalt-light);
  color: var(--cobalt);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.btn-primary:hover {
  background: var(--cobalt-dark);
  border-color: var(--cobalt-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 79, 216, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-secondary:hover {
  background: var(--cobalt);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--cobalt);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cobalt-light);
  color: var(--cobalt-dark);
  transform: translateY(-2px);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(30,27,75,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--cobalt); }

.nav-logo-img {
  height: 44px;
  width: auto;
}
.nav-logo-img.hidden { display: none; }

.nav-logo-fallback {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cobalt), var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li > a {
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
  font-size: 0.95rem;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--cobalt);
  background: var(--cobalt-light);
}

.nav-menu .nav-cta {
  background: var(--cobalt);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
}
.nav-menu .nav-cta:hover {
  background: var(--cobalt-dark) !important;
  color: var(--white) !important;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--lavender); color: var(--purple); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--navy);
  padding: 0.25rem;
  line-height: 1;
}

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 50%, var(--cobalt) 100%);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,181,253,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content { max-width: 560px; }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content .lead { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  object-fit: contain;
  width: 100%;
  background: transparent;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}
.hero-image-placeholder .placeholder-icon { font-size: 3rem; }

/* Page hero (internal pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 60%, var(--cobalt) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.88); margin: 0 auto 2rem; }

/* ── Intro Strip ──────────────────────────────────────────────── */
.intro-strip {
  background: var(--off-white);
  padding: 4rem 0;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.intro-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.intro-card h3 { color: var(--purple); margin-bottom: 0.75rem; font-size: 1.2rem; }
.intro-card p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* ── Service Cards ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--purple);
}

.service-card-image img { width: 100%; height: 100%; object-fit: cover; }

.service-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--lavender), var(--cobalt-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 { color: var(--purple); margin-bottom: 0.75rem; }
.service-card-body p { color: var(--text); flex: 1; margin-bottom: 1.5rem; }

/* Services list (detail pages) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-image img { width: 100%; display: block; }
.service-detail-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lavender), var(--cobalt-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-detail-content h2 { color: var(--purple); margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1rem; }

.bullet-list { margin: 1.25rem 0 1.5rem; }
.bullet-list li {
  padding: 0.35rem 0 0.35rem 1.75rem;
  position: relative;
  color: var(--text);
}
.bullet-list li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  top: 0.4rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brown-light);
  color: var(--brown);
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ── Why Section ──────────────────────────────────────────────── */
.why-section {
  background: var(--lavender);
  padding: 5rem 0;
}

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

.why-content h2 { color: var(--purple); margin-bottom: 1.25rem; }
.why-content p { margin-bottom: 1rem; }

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; }
.why-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cobalt-light), var(--lavender-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius-lg);
}

/* ── Belief Blocks ────────────────────────────────────────────── */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.belief-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--cobalt);
  box-shadow: var(--shadow);
}
.belief-card h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.belief-card p { color: var(--text-light); margin: 0; font-size: 0.92rem; }

/* ── Digital Products Teaser ──────────────────────────────────── */
.shop-teaser {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.shop-teaser h2 { color: var(--white); margin-bottom: 1rem; }
.shop-teaser p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }

.shop-product-preview {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.product-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 200px;
  text-align: center;
  transition: all var(--transition);
}
.product-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-card .product-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.product-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* ── Footer CTA ───────────────────────────────────────────────── */
.footer-cta {
  background: var(--cream);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-cta h2 { color: var(--navy); margin-bottom: 1rem; }
.footer-cta p { color: var(--text-light); max-width: 520px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 280px; color: rgba(255,255,255,0.65); }

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75) !important;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white) !important;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Steps / How It Works ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cobalt), var(--purple));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
}

.step-card h3 { color: var(--purple); margin-bottom: 0.75rem; font-size: 1.1rem; }
.step-card p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* ── Qualifications ───────────────────────────────────────────── */
.quals-box {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}
.quals-box h3 { color: var(--purple); margin-bottom: 1.25rem; }
.quals-placeholder {
  background: var(--white);
  border: 2px dashed var(--lavender-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.95rem;
}

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
  gap: 1rem;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--lavender); color: var(--purple); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: transform var(--transition);
  font-weight: 400;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--white);
  color: var(--text);
  font-size: 0.97rem;
  border-top: 1px solid var(--border);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ── Contact Form ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h2 { color: var(--purple); margin-bottom: 1.75rem; }

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

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  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(--cobalt);
  box-shadow: 0 0 0 3px rgba(27, 79, 216, 0.12);
}

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

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

.form-submit-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

.form-success {
  display: none;
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--purple);
  font-weight: 600;
  margin-top: 1.5rem;
}

.contact-info h3 { color: var(--purple); margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail-text h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-detail-text p, .contact-detail-text a { color: var(--text-light); font-size: 0.9rem; }

.reassurance-box {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.reassurance-box h4 { color: var(--purple); margin-bottom: 1rem; }

.reassurance-item {
  margin-bottom: 1.25rem;
}
.reassurance-item:last-child { margin-bottom: 0; }
.reassurance-item h5 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.25rem; }
.reassurance-item p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* ── Note / Warning Box ───────────────────────────────────────── */
.note-box {
  background: var(--brown-light);
  border-left: 4px solid var(--brown);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.note-box h4 { color: var(--brown); margin-bottom: 0.5rem; }
.note-box p { color: #78350F; margin: 0; font-size: 0.95rem; }

/* ── Empathy Section ──────────────────────────────────────────── */
.empathy-section {
  background: var(--lavender);
  padding: 5rem 0;
}
.empathy-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.empathy-content h2 { color: var(--purple); margin-bottom: 1.5rem; }
.empathy-content p { font-size: 1.1rem; margin-bottom: 1rem; }

/* ── What I Help With ─────────────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--cobalt);
  transition: transform var(--transition);
}
.help-card:hover { transform: translateY(-3px); }
.help-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.help-card p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* ── Utilities ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-cobalt { color: var(--cobalt); }
.bg-lavender { background: var(--lavender); }
.bg-off-white { background: var(--off-white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0.25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 0.75rem 1rem; display: block; }
  .nav-menu .nav-cta { text-align: center; margin: 0.5rem 0 0; }
  .nav-toggle { display: block; }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--off-white); margin: 0.25rem 0; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .intro-strip-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }

  .contact-form { padding: 1.75rem; }
  .quals-box { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero { padding: 4rem 0; }
  .page-hero { padding: 3.5rem 0 3rem; }
}
