/* ============================================================
   JG Quality Health Assurance — Design System
   Project: jgqualityhealthassurance.com
   Built by: Bettr Studios LLC
   ============================================================

   TABLE OF CONTENTS
   ---------------------------------------------------------
   1.  Google Fonts
   2.  CSS Variables
   3.  Reset & Base
   4.  Typography
   5.  Layout Helpers
   6.  Utilities
   7.  Buttons

   INDEX.HTML — in page order
   8.  Navbar
   9.  Hero
   10. Stats Bar
   11. Mission Banner
   12. Trust Bar
   13. About
   14. Services Preview
   15. Service Cards (shared)
   16. How It Works
   17. Booking
   18. Contact Slim
   19. Footer

   SERVICES.HTML
   20. Page Hero
   21. Services Full & CTA

   CONTACT.HTML
   22. Form Groups
   23. Contact Page

   GLOBAL RESPONSIVE
   24. 1024px
   25. 900px (navbar only)
   26. 768px
   27. 480px
   ============================================================ */


/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@600&display=swap');


/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  --color-caroline-blue: #4A90D9;
  --color-navy:          #1B2F5E;
  --color-navy-dark:     #132245;
  --color-white:         #FFFFFF;
  --color-off-white:     #F4F8FD;
  --color-light-gray:    #E8EEF6;
  --color-text-body:     #2C3A50;
  --color-text-muted:    #6B7A91;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(27, 47, 94, 0.08);
  --shadow-md: 0 4px 16px rgba(27, 47, 94, 0.10);
  --shadow-lg: 0 8px 32px rgba(27, 47, 94, 0.14);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --container-max:    1200px;
  --container-narrow: 800px;
  --section-padding:  var(--space-4xl) var(--space-xl);
}


/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-body);
  background-color: var(--color-white);
  padding-top: 96px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-caroline-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-navy);
}


/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-xl);  }
h5 { font-size: var(--text-lg);  }
h6 { font-size: var(--text-base);}

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-body);
}

.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-white  { color: var(--color-white); }

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-caroline-blue);
  margin-bottom: var(--space-sm);
}

.section-heading {
  margin-bottom: var(--space-2xl);
}

.section-heading h2 {
  margin-bottom: var(--space-sm);
}

.section-heading p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-heading.text-center p {
  margin-inline: auto;
}


/* ============================================================
   5. LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding);
}

.section--alt  { background-color: var(--color-off-white); }
.section--dark { background-color: var(--color-navy); color: var(--color-white); }

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--color-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
#retirement .grid-3{
  grid-template-columns: repeat(2, 1fr);
}

/* ── Optional background image overlays ── */
.section-bg--desk {
  position: relative;
}

.section-bg--desk::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/pictures/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.3);
  transform: scale(1.05);
  z-index: 0;
}

.section-bg--consult {
  position: relative;
}

.section-bg--consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/pictures/pexels-cottonbro-4098374.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: blur(2px) brightness(0.3);
  transform: scale(1.05);
  z-index: 0;
}

/* Ensure content sits above the bg on any section using these classes */
.section-bg--desk > *,
.section-bg--consult > * {
  position: relative;
  z-index: 1;
}


/* ============================================================
   6. UTILITIES
   ============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-caroline-blue);
  border-radius: var(--radius-pill);
  margin: var(--space-md) 0 var(--space-lg);
}

.divider--center {
  margin-inline: auto;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-caroline-blue);
  color: var(--color-white);
  border-color: var(--color-caroline-blue);
}
.btn--primary:hover {
  background-color: #3a7dc4;
  border-color: #3a7dc4;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn--lg {
  font-size: var(--text-lg);
  padding: 1rem 2.25rem;
}


/* ============================================================
   8. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  padding: var(--space-sm) 0;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.navbar__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo img {
  height: 60px;
  width: auto;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.navbar__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-body);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.navbar__links a:hover {
  color: var(--color-caroline-blue);
  background: rgba(74, 144, 217, 0.07);
}

.navbar__links a.active {
  color: var(--color-navy);
  font-weight: 600;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-caroline-blue);
  border: 2px solid var(--color-caroline-blue);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__cta:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 47, 94, 0.2);
}

.navbar__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition-base);
  flex-shrink: 0;
}

.navbar__hamburger:hover { border-color: var(--color-caroline-blue); }

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.navbar__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-light-gray);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 350ms ease, opacity 250ms ease;
}

.navbar__mobile.open {
  display: flex;
  max-height: 400px;
  opacity: 1;
}

.navbar__mobile a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--color-light-gray);
  transition: color var(--transition-base);
}

.navbar__mobile a:last-of-type { border-bottom: none; }
.navbar__mobile a:hover { color: var(--color-caroline-blue); }

.navbar__mobile .navbar__cta {
  margin-top: 1rem;
  justify-content: center;
  width: 100%;
}


/* ============================================================
   9. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/pictures/hero-bg2.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: blur(3px) brightness(0.35);
  transform: scale(1.05);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__text { color: var(--color-white); }

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-caroline-blue);
  background: rgba(74, 144, 217, 0.15);
  border: 1px solid rgba(74, 144, 217, 0.3);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.hero__text h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero__text h1 em {
  font-style: italic;
  color: var(--color-caroline-blue);
}

.hero__text > p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero__badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__card { position: relative; }

.hero__card-inner {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.hero__headshot-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.hero__card-body { padding: var(--space-xl); }

.hero__card-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.hero__card-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.hero__card-divider {
  width: 100%;
  height: 1px;
  background: var(--color-light-gray);
  margin: var(--space-md) 0;
}

.hero__card-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__stat-number {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__stat-sep {
  width: 1px;
  height: 32px;
  background: var(--color-light-gray);
  flex-shrink: 0;
}

.hero__card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--color-off-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: all var(--transition-base);
}

.hero__card-phone:hover {
  background: var(--color-caroline-blue);
  border-color: var(--color-caroline-blue);
  color: var(--color-white);
}


/* ============================================================
   10. STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--color-white);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}

.stats-bar__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 140px;
  line-height: 1.4;
  text-align: center;
}

.stats-bar__sep {
  width: 1px;
  height: 56px;
  background: var(--color-light-gray);
  flex-shrink: 0;
}


/* ============================================================
   11. MISSION BANNER
   ============================================================ */
.mission-banner {
  background-color: var(--color-navy);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 144, 217, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(74, 144, 217, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.mission-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-banner__quote-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.6;
  color: var(--color-caroline-blue);
  opacity: 0.4;
  margin-bottom: var(--space-lg);
  user-select: none;
}

.mission-banner__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.mission-banner__attr {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  max-width: 640px;
}

.mission-banner__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mission-banner__attr span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ============================================================
   12. TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--color-navy);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge__icon {
  width: 18px;
  height: 18px;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.trust-bar__sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}


/* ============================================================
   13. ABOUT
   ============================================================ */
.about { padding: var(--space-4xl) 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-col { position: relative; }

.about__image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about__photo {
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about__cred-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border: 1px solid var(--color-light-gray);
  max-width: 280px;
}

.about__cred-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.about__cred-icon svg { width: 22px; height: 22px; }

.about__cred-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.about__cred-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.3;
}

.about__content h2 { margin-bottom: 0; line-height: 1.2; }

.about__content p {
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.about__content p em {
  font-style: italic;
  color: var(--color-navy);
  font-weight: 600;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
}

.about__credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-body);
}

.about__credential svg {
  width: 16px;
  height: 16px;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.about__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}


/* ============================================================
   14. SERVICES PREVIEW (homepage)
   ============================================================ */
.services-preview { padding: var(--space-4xl) 0; }

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}


.services-preview__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-light-gray);
}

.services-preview__cta p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 480px;
}


/* ============================================================
   15. SERVICE CARDS (shared — index + services page)
   ============================================================ */
.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-caroline-blue);
}

.service-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-card--full p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}


/* ============================================================
   16. HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--color-white);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-2xl);
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: var(--space-xl);
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--color-caroline-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(74, 144, 217, 0.35);
}

.step h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.step__connector {
  flex-shrink: 0;
  color: var(--color-light-gray);
  margin-bottom: var(--space-2xl);
}

.step__connector svg { width: 40px; height: 24px; }


/* ============================================================
   17. BOOKING
   ============================================================ */
.booking { padding: var(--space-4xl) 0; }

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.booking__content .section-label { color: var(--color-caroline-blue); }
.booking__content h2 { color: var(--color-white); margin-top: var(--space-sm); }
.booking__content .divider { background-color: var(--color-caroline-blue); }

.booking__content > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.booking__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.booking__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.booking__detail svg {
  width: 20px;
  height: 20px;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.booking__detail div { display: flex; flex-direction: column; gap: 0.2rem; }
.booking__detail strong { font-size: var(--text-sm); font-weight: 600; color: var(--color-white); }
.booking__detail span  { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.6); }

.booking__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.booking__cta-note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

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

.booking__visual-inner {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.booking__visual-logo {
  height: 60px;
  width: auto;
  margin: 0 auto var(--space-md);
}

.booking__visual-inner h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.booking__visual-inner > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.booking__visual-divider {
  width: 100%;
  height: 1px;
  background: var(--color-light-gray);
  margin: var(--space-lg) 0;
}

.booking__visual-types {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.booking__type {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.booking__type-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-caroline-blue);
  flex-shrink: 0;
  margin-top: 4px;
}

.booking__type-dot--lg { background: var(--color-navy); }

.booking__type div { display: flex; flex-direction: column; gap: 0.2rem; }
.booking__type strong { font-size: var(--text-sm); font-weight: 600; color: var(--color-navy); }
.booking__type span   { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }

.booking__visual-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--color-caroline-blue);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.booking__visual-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* ============================================================
   18. CONTACT SLIM
   ============================================================ */
.contact-slim {
  padding: var(--space-4xl) 0;
  background: var(--color-off-white);
}

.contact-slim__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.contact-slim__content h2 { margin-top: var(--space-sm); }

.contact-slim__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.contact-slim__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-slim__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
}

a.contact-slim__item:hover {
  border-color: var(--color-caroline-blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-slim__icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.contact-slim__icon svg { width: 20px; height: 20px; }

.contact-slim__item > div { display: flex; flex-direction: column; gap: 0.2rem; }

.contact-slim__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-slim__value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-navy);
  word-break: break-all;
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: var(--space-4xl) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand .footer__logo img {
  height: 52px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 300px;
}

.footer__license {
  margin-top: var(--space-sm) !important;
  font-size: var(--text-xs) !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer__nav h5 {
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer__nav a:hover { color: var(--color-caroline-blue); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
  color: var(--color-caroline-blue);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__bottom a:hover { opacity: 0.8; }


/* ============================================================
   20. PAGE HERO (services.html)
   ============================================================ */
.page-hero {
  background-color: var(--color-navy);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(74, 144, 217, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero__inner .section-label { color: var(--color-caroline-blue); }

.page-hero__inner h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  margin-top: var(--space-sm);
}

.page-hero__inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}


/* ============================================================
   21. SERVICES FULL & CTA (services.html)
   ============================================================ */
.services-full { padding: var(--space-4xl) 0; }

.services-cta { padding: var(--space-4xl) 0; }

.services-cta__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.services-cta__inner h2 { color: var(--color-white); margin-bottom: var(--space-md); }

.services-cta__inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.services-cta__btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   22. FORM GROUPS (contact.html)
   ============================================================ */
.form-group { margin-bottom: var(--space-lg); }

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-body);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-caroline-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

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

/* ============================================================
   23. Contact.HTML
   ============================================================ */

/* ── Contact Page Layout ──────────────────────────────────── */
.contact-page { padding: var(--space-4xl) 0; }

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* ── Left: Details ────────────────────────────────────────── */
.contact-page__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-page__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
}

a.contact-page__item:hover {
  border-color: var(--color-caroline-blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-page__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
}

.contact-page__item-icon svg { width: 20px; height: 20px; }

.contact-page__item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-page__item-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-page__item-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.4;
  word-break: break-word;
}

/* ── Office Hours ─────────────────────────────────────────── */
.contact-page__hours {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-page__hours h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.contact-page__hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-page__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-page__hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-page__hours-day {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  font-weight: 500;
}

.contact-page__hours-time {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Google Maps ──────────────────────────────────────────── */
.contact-page__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-light-gray);
}

.contact-page__map iframe {
  display: block;
}

/* ── Right: Form Card ─────────────────────────────────────── */
.contact-page__form-wrap {
  position: sticky;
  top: 112px;
}

.contact-page__form-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-page__form-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.contact-page__form-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* ── Form Layout ──────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-required {
  color: var(--color-caroline-blue);
  font-size: var(--text-xs);
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
}

/* ── Success Message ──────────────────────────────────────── */
.contact-form__success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(74, 144, 217, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.contact-form__success svg {
  width: 24px;
  height: 24px;
  color: var(--color-caroline-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form__success div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form__success strong {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
}

.contact-form__success span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Calendly Booking Section ─────────────────────────────── */
.contact-booking { padding: var(--space-4xl) 0; }

.contact-booking__embed {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}



/* ============================================================
   24. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 360px;
    gap: var(--space-2xl);
  }

  .about__grid { gap: var(--space-2xl); }
  .about__photo { height: 480px; }

  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .booking__visual { justify-content: flex-start; }
  .booking__visual-inner { max-width: 100%; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-page__form-wrap {
    position: static;
  }
}


/* ============================================================
   25. RESPONSIVE — 900px (navbar only)
   ============================================================ */
@media (max-width: 900px) {
  .navbar__links    { display: none; }
  .navbar__cta      { display: none; }
  .navbar__hamburger { display: flex; }
}


/* ============================================================
   26. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-padding: 3rem 1rem; }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl);  }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }


  /* Hero */
  .hero { min-height: auto; padding: var(--space-3xl) 0; }
  .hero__content { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero__text h1 { font-size: var(--text-3xl); }
  .hero__text > p { font-size: var(--text-base); }
  .hero__card { max-width: 420px; margin-inline: auto; width: 100%; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Stats bar */
  .stats-bar__sep { display: none; }
  .stats-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl) var(--space-lg); }
  .stats-bar__number { font-size: var(--text-3xl); }

  /* Mission banner */
  .mission-banner__quote-mark { font-size: 80px; }
  .mission-banner__quote { font-size: var(--text-xl); }
  .mission-banner__attr { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .mission-banner__line { width: 60px; flex: none; }
  .mission-banner__attr span { white-space: normal; text-align: center; }

  /* Trust bar */
  .trust-bar__sep { display: none; }
  .trust-bar__inner { gap: var(--space-lg); justify-content: center; }
  .trust-badge { white-space: normal; text-align: center; flex-direction: column; gap: 0.25rem; font-size: var(--text-xs); }

  /* About */
  .about__grid { grid-template-columns: 1fr; }
  .about__image-col { max-width: 420px; margin-inline: auto; width: 100%; }
  .about__photo { max-width: 100%; height: 420px; }
  .about__cred-card { right: 0; bottom: -16px; max-width: 240px; }
  .about__ctas { flex-direction: column; }
  .about__ctas .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-preview__grid { grid-template-columns: 1fr; }
  .services-cta__btns { flex-direction: column; align-items: center; }
  .services-cta__btns .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Steps */
  .steps { flex-direction: column; gap: var(--space-lg); align-items: center; }
  .step { max-width: 340px; width: 100%; }
  .step__connector { transform: rotate(90deg); margin-bottom: 0; }

  /* Booking */
  .booking__cta .btn { width: 100%; justify-content: center; }

  /* Contact slim */
  .contact-slim__inner { grid-template-columns: 1fr; gap: var(--space-2xl); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer__brand { grid-column: auto; }
  .footer__brand p { max-width: 100%; }

  /* Contact.html */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page__form-card {
    padding: var(--space-lg);
  }
}


/* ============================================================
   27. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  body { padding-top: 96px; }
  .container { padding-inline: var(--space-md); }
  .navbar__inner { padding: 0 1rem; }
}