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

:root {
  /* New Brand Kit Colors */
  --navy: #10253f;
  --gold: #fbb410;
  --white: #ffffff;
  --light-gray: #e9ebea;
  --slate-blue: #507b88;
  --teal-gray: #7fa4a4;
  --bronze: #aa7c62;
  --black: #000000;
  --deep-blue: #1a3c5c;

  /* Mapped to old variables for safety, but using new names is better */
  --brand-ink: var(--navy);
  --brand-blue: var(--gold); /* Action color is now gold */
  --surface: var(--white);
  --surface-soft: #f1f7fb; /* Keeping this for very light off-white sections */
  --border-soft: #dde2e1;

  /* Typography */
  --font-headline: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  /* Site Variables */
  --container-max: 1200px;
  --header-offset: 116px;
}

/* Focus styles (keyboard) */
:where(
    a,
    button,
    [role="button"],
    [tabindex]:not([tabindex="-1"])
  ):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html,
body {
  height: 100%;
  transform: none !important;
  perspective: none !important;
  filter: none !important;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  background: var(--surface);
  padding-top: var(--header-offset); /* Space for fixed header */
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
.headline {
  font-family: var(--font-headline);
  font-weight: 700;
}

/* =========================
   Container
   ========================= */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding-inline: 24px;
}

/* =========================
   Fixed Header
   ========================= */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999 !important;
  background: var(--white);
}
.utility-bar {
  border-bottom: 1px solid var(--border-soft);
}
.main-nav {
  background-color: var(--deep-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

/* Defensive: keep content below the header */
.hero,
.social-proof,
.how-it-works,
.services,
.cta,
.footer,
.page-hero,
.services-page-section,
.approach-section,
.contact-section,
.quote-section {
  position: relative;
  z-index: 0;
}

/* =========================
   Utility Bar
   ========================= */
.utility-bar {
  background-color: var(--surface);
  padding: 10px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contact-info {
  display: flex;
  gap: 10px;
}
.phone-item,
.email-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 20px;
}
.phone-item img,
.email-item img {
  width: 16px;
  height: 16px;
}

/* =========================
   Main Navigation
   ========================= */
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav .logo img {
  height: 72px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.link {
  padding: 8px 12px;
}
.link a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}
.cta-button {
  background-color: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
}

/* =========================
   Hero
   ========================= */
.hero {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  min-height: 720px;
  padding: 0 24px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  padding-right: 32px;
}
.hero .headline h1 {
  margin: 0;
  color: var(--navy);
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -1.2px;
}
.hero .subheadline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero .subheadline p {
  margin: 0;
  color: var(--slate-blue);
  font-size: 20px;
  line-height: 1.5;
  max-width: 480px;
}
.hero-right {
  position: relative;
  width: 616px;
  height: 720px;
  flex: 0 0 auto;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(12px);
}

/* =========================
   Social Proof
   ========================= */
.social-proof {
  background: var(--white);
  padding: 72px 0 80px;
}
.social-proof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.social-proof .container p {
  color: var(--navy);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.social-proof .logo-bkg {
  background: var(--surface-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.social-proof .logo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 24px 48px;
  justify-items: center;
  align-items: center;
  padding: 25px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.social-proof .logo-band img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* =========================
   How It Works (Block Color)
   ========================= */
.how-it-works {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.how-it-works .title-group {
  width: min(800px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.how-it-works .eyebrow {
  color: var(--teal-gray);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.how-it-works .headline {
  color: var(--white);
  margin: 0;
  font-size: 36px;
}
.how-it-works .subheadline {
  color: var(--light-gray);
  margin: 0;
  font-size: 16px;
}
.how-it-works .cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap;
  margin-top: 48px;
}
.how-it-works .card {
  width: 368px;
  background: var(--deep-blue);
  border: 1px solid var(--slate-blue);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.how-it-works .number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-headline);
  font-size: 20px;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.how-it-works .card-title {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 8px;
  text-align: center;
}
.how-it-works .card-divider {
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 0 auto 16px;
  width: 50px;
}
.how-it-works .card-content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  flex-grow: 1;
}
.how-it-works .content-left {
  flex: 1 1 auto;
  text-align: left;
}
.how-it-works .content-left p {
  margin: 0;
  color: var(--light-gray);
  font-size: 15px;
}
.how-it-works .content-right {
  width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-it-works .content-right .icon img {
  width: 72px;
  height: auto;
}

/* =========================
   Services Section (Homepage)
   ========================= */
.services {
  background: var(--light-gray);
  padding: 80px 0;
}
.services .title-group {
  width: min(800px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.services .eyebrow {
  color: var(--slate-blue);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.services .headline {
  color: var(--navy);
  margin: 0;
  font-size: 36px;
}
.services .subheadline {
  color: var(--slate-blue);
  margin: 0;
  font-size: 16px;
}
.services .cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap;
  margin-top: 48px;
}
.services .card {
  width: 368px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(16, 37, 63, 0.08);
}
.services .card-title {
  color: var(--navy);
  text-align: center;
  font-size: 22px;
  margin: 0 0 8px;
}
.services .card-divider {
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 0 auto 16px;
  width: 50px;
}
.services .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.services .content-left {
  flex: 1 1 auto;
}
.services .content-left p {
  margin: 0;
  color: var(--slate-blue);
  font-size: 15px;
}
.services .content-right,
.services .content-right .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .content-right {
  width: 96px;
}
.services .content-right .icon img {
  width: 72px;
  height: auto;
}

/* =========================
   CTA / Call To Action
   ========================= */
.cta {
  background: var(--deep-blue);
  color: var(--white);
  padding: 72px 0 80px;
}
.cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.cta .cta-content p:nth-of-type(1) {
  color: var(--teal-gray);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.cta .cta-content p:nth-of-type(2) {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0;
}
.cta .cta-content p:nth-of-type(3) {
  color: var(--light-gray);
  font-size: 16px;
  margin: 0 0 4px 0;
}
.cta .action-row {
  padding-top: 20px;
}
.cta .cta-button {
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 500;
}
.cta .contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}
.cta .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}
.cta .chip img {
  width: 18px;
  height: 18px;
  display: block;
}
.cta :where(a, button, .chip):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* =========================
   Footer
   ========================= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 24px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-brand-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand-nav img {
  width: 140px;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 16px;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-copyrite {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--slate-blue);
  padding-top: 24px;
}
.footer-copyrite p {
  margin: 0;
  color: var(--light-gray);
  font-size: 16px;
}
.footer :where(a, button):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* =========================
   Responsive & Mobile
   ========================= */

/* --- Nav --- */
@media (min-width: 981px) {
  .main-nav .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
  }
  .menu-toggle {
    display: none;
  }
  .nav-drawer {
    display: contents;
  }
  .nav-links {
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 28px;
    white-space: nowrap;
  }
  .main-nav .cta-button {
    grid-column: 3;
    justify-self: end;
  }
}
@media (max-width: 980px) {
  .main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 42px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    padding: 8px;
  }
  .menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }
  .menu-toggle .bar + .bar {
    margin-top: 0;
  }
  .nav-drawer {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--deep-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px; /* Use even padding */
  }
  .main-nav.is-open .nav-drawer {
    display: grid; /* Change to grid */
    justify-items: center; /* Center grid items horizontally */
    gap: 24px; /* Add space between links and button */
  }
  .nav-drawer .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .nav-drawer .nav-links .link {
    padding: 8px 0;
    text-align: center;
  }
  .nav-drawer .nav-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 16px;
  }
  .nav-drawer .cta-button {
    /* No longer needs width or margin-top */
  }
  .main-nav .logo img {
    height: 44px;
    width: auto;
  }
}
@media (max-width: 900px) {
  .utility-bar .container {
    justify-content: center;
  }
  .contact-info {
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .utility-bar {
    padding: 8px 0;
  }
  .phone-item span,
  .email-item span {
    font-size: 13px;
    line-height: 18px;
  }
}
.main-nav :where(a, button):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* --- Hero --- */
@media (max-width: 980px) {
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    min-height: unset;
    padding: 48px 24px;
  }
  .hero-right {
    order: -1;
    width: 100%;
    height: 360px;
    clip-path: none;
  }
  .hero .headline h1 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }
  .hero .subheadline p {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* --- Social Proof --- */
@media (max-width: 1099px) {
  .social-proof .container p {
    font-size: 20px;
  }
  .social-proof .logo-band {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 20px 36px;
  }
}
@media (max-width: 560px) {
  .social-proof {
    padding: 48px 0 56px;
  }
  .social-proof .container p {
    font-size: 18px;
    line-height: 1.35;
    padding: 0 8px;
  }
  .social-proof .logo-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .social-proof .logo-band img {
    height: 36px;
  }
}

/* --- How It Works & Services (Homepage) --- */
@media (max-width: 1306px) {
  .how-it-works .cards-row,
  .services .cards-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .how-it-works .card,
  .services .card {
    width: 48%;
    min-width: 300px;
    height: auto;
  }
}
@media (max-width: 900px) {
  .how-it-works .card,
  .services .card {
    width: min(360px, 100%);
  }
}
@media (max-width: 700px) {
  .how-it-works,
  .services {
    padding: 56px 0;
  }
  .how-it-works .headline,
  .services .headline {
    font-size: 30px;
    line-height: 1.2;
  }
  .how-it-works .subheadline,
  .services .subheadline {
    font-size: 16px;
    line-height: 1.5;
  }
  .how-it-works .card,
  .services .card {
    width: 100%;
  }
  .how-it-works .card-content {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .how-it-works .content-right,
  .services .content-right {
    width: auto;
    padding: 8px 0;
  }
  .how-it-works .content-left {
    text-align: center;
  }
}

/* --- CTA --- */
@media (max-width: 800px) {
  .cta .cta-content p:nth-of-type(2) {
    font-size: 34px;
    line-height: 1.2;
  }
}
@media (max-width: 560px) {
  .cta {
    padding: 56px 0 64px;
  }
  .cta .cta-content p:nth-of-type(2) {
    font-size: 30px;
    line-height: 1.2;
  }
}

/* --- Footer --- */
@media (max-width: 640px) {
  .footer {
    padding: 48px 0 20px;
  }
  .footer-nav {
    gap: 20px;
  }
  .footer-copyrite {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =========================
   Quote Page Styles
   ========================= */
.quote-section {
  background-color: var(--surface-soft);
  padding: 80px 0;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  align-items: center;
}
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-info {
  padding-right: 32px;
}
.quote-info .eyebrow {
  color: var(--slate-blue);
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 8px;
}
.quote-info .headline {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.quote-info .subheadline {
  color: var(--slate-blue);
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  max-width: 480px;
}
.info-divider {
  height: 2px;
  background: var(--border-soft);
  border-radius: 1px;
  margin: 24px 0;
}
.value-props {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-props li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-blue);
  font-size: 15px;
}
.value-props .value-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.quote-form-container {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 24px rgba(16, 37, 63, 0.08);
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 180, 16, 0.3);
}
.quote-form .cta-button {
  margin-top: 12px;
  width: 100%;
}
@media (max-width: 980px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .quote-info {
    text-align: center;
    padding-right: 0;
  }
  .quote-info .headline {
    font-size: 36px;
    line-height: 1.2;
  }
  .quote-info .subheadline,
  .value-props {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .value-props li {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .quote-section {
    padding: 48px 0;
  }
  .quote-form-container {
    padding: 24px;
  }
}

/* =========================
   Contact Page Styles
   ========================= */
.contact-section {
  background-color: var(--white);
  padding: 80px 0;
}
.contact-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.contact-hero .headline {
  color: var(--navy);
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
}
.contact-hero .subheadline {
  color: var(--slate-blue);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 24px;
}
.contact-phone-number {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-headline);
  font-size: 36px;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid var(--border-soft);
  padding: 12px 24px;
  border-radius: 12px;
  transition: background-color 0.2s, border-color 0.2s;
}
.contact-phone-number:hover {
  background-color: var(--surface-soft);
  border-color: var(--gold);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--surface-soft);
  padding: 48px;
  border-radius: 24px;
}
.contact-details .details-title {
  color: var(--navy);
  font-size: 24px;
  margin: 0 0 8px;
}
.contact-details p {
  color: var(--slate-blue);
  line-height: 1.6;
  margin: 0 0 24px;
}
.details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--slate-blue);
}
.details-list li {
  padding-left: 28px;
  position: relative;
}
.details-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-weight: 600;
}
.details-list a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.details-list a:hover {
  text-decoration: underline;
}
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-form-container {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(16, 37, 63, 0.06);
}
.contact-form-container .form-title {
  color: var(--navy);
  font-size: 24px;
  margin: 0 0 20px;
  text-align: center;
}
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 180, 16, 0.3);
}
@media (max-width: 980px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
@media (max-width: 560px) {
  .contact-section {
    padding: 48px 0;
  }
  .contact-hero {
    margin-bottom: 48px;
  }
  .contact-hero .headline {
    font-size: 36px;
    line-height: 1.2;
  }
  .contact-hero .contact-phone-number {
    font-size: 24px;
    line-height: 1.2;
  }
  .contact-wrapper {
    padding: 24px;
  }
  .contact-form-container {
    padding: 24px;
  }
}

/* =========================
   About Page ("Our Approach")
   ========================= */
.approach-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.approach-section .title-group {
  width: min(800px, 100%);
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.approach-section .title-group .eyebrow {
  color: var(--teal-gray);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.approach-section .title-group .headline {
  color: var(--white);
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.approach-section .title-group .subheadline {
  color: var(--light-gray);
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.approach-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: var(--deep-blue);
  border: 1px solid var(--slate-blue);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.approach-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background-color: var(--navy);
  border-radius: 50%;
}
.approach-icon img {
  width: 32px;
  height: 32px;
}
.approach-text .item-title {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 8px;
}
.approach-text p {
  color: var(--light-gray);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .approach-section {
    padding: 64px 0;
  }
  .approach-section .title-group .headline {
    font-size: 36px;
    line-height: 1.2;
  }
  .approach-section .title-group .subheadline {
    font-size: 16px;
    line-height: 1.5;
  }
  .approach-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =========================
   Services Page
   ========================= */
.services-page-section {
  background-color: var(--white);
  padding: 80px 0;
}
.page-hero {
  background-color: var(--surface-soft);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.page-hero-content {
  max-width: 520px;
}
.page-hero .eyebrow {
  color: var(--slate-blue);
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 8px;
}
.page-hero .headline {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.page-hero .subheadline {
  color: var(--slate-blue);
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.page-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 37, 63, 0.1);
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 700px);
  justify-content: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-nav {
  position: sticky;
  top: calc(var(--header-offset) + 40px);
  align-self: start;
  height: fit-content;
}
.page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--slate-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease-in-out;
}
.page-nav-link:hover {
  background-color: var(--surface-soft);
  color: var(--navy);
}
.page-nav-link.active {
  color: var(--gold);
  font-weight: 500;
  background-color: rgba(251, 180, 16, 0.08);
  border-left-color: var(--gold);
}
.service-category {
  margin-bottom: 80px;
  scroll-margin-top: calc(var(--header-offset) + 40px);
}
.service-category:last-of-type {
  margin-bottom: 0;
}
.category-title {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--surface-soft);
}
.service-card:last-child {
  border-bottom: none;
}
.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background-color: var(--surface-soft);
  border-radius: 50%;
}
.service-icon img {
  width: 28px;
  height: 28px;
}
.service-text h3 {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 4px;
}
.service-text p {
  color: var(--slate-blue);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 980px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .page-nav {
    display: none;
  }
  .page-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-content {
    margin: 0 auto;
  }
  .page-hero-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .page-hero .headline {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .services-page-section {
    padding: 64px 0;
  }
}
