/* =============================
   Base / Global
   ============================= */

:root {
  --bg: #f8fafb;
  --surface: #ffffff;
  --text: #0f2128;
  --muted: #6c7a85;
  --primary: #df2b26;
  --primary-soft: #ffe7e5;
  --accent: #09505e;
  --border: #e7ecef;
}

.container {
  width: 100%;
  margin: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

section {
  margin: 0;
}

/* =============================
   Header / Navigation
   ============================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 33, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.header-inner .button {
  margin-right: 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  margin-left: 3rem;
}

.brand-logo {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: contain;
  border-radius: 0.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 20px rgba(15, 33, 40, 0.12);
}

.brand-text {
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #0f2128 0%, #0f2128 40%, #28a745 50%, #0f2128 60%, #0f2128 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandShine 5.5s ease-in-out infinite;
}

@keyframes brandShine {
  0%,
  68% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-text {
    animation: none;
    background: none;
    color: #0f2128;
  }

  .brand-logo {
    transition: none;
  }
}

.main-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 180ms ease, font-weight 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: #0f2128;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #000000;
  font-weight: 700;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
}

.brand-subtext {
  font-size: 0.8rem;
  color: #0f2128;
  margin-top: 2px;
  text-align: center;
}

@media (max-width: 740px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-inner {
    align-items: center;
    text-align: center;
    padding: 1rem 0;
  }

  .brand {
    margin-left: 0;
    justify-content: center;
  }

  .brand-logo {
    width: 4rem;
    height: 4rem;
  }

  .brand-text {
    font-size: 1.4rem;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    justify-items: center;
  }

  .main-nav a {
    font-size: 0.95rem;
  }

  .header-inner .button {
    margin-right: 0;
    width: 100%;
  }

  .volunteer-section {
    padding: 2rem 0;
  }

  .volunteer-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .volunteer-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .volunteer-images img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }

  .volunteer-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .volunteer-submit,
  .button {
    width: 100%;
  }
}

@media (max-width: 740px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: flex;
  }
}

/* =============================
   Buttons / Shared Controls
   ============================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s;
}

.button-primary:hover {
  background: #2d7a4a;
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button-secondary:hover {
  background-color: #222222;
  border-color: #222222;
}

button[type="submit"] {
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

button,
.button {
  cursor: pointer;
}

/* Primary button hover (force consistent behavior) */

.button-primary:hover {
  background: #28a745 !important; /* green */
  color: #ffffff;
}

/* Volunteer button specifically (extra safety) */

.button-loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

/* =============================
   Hero
   ============================= */

.hero .button-secondary {
  background-color: transparent;
  color: #28a745;
  border: 2px solid #28a745;
  height: 48px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .button-secondary:hover {
  background-color: #28a745;
  color: #ffffff;
  border-color: #28a745;
}

.hero .button-primary {
  height: 48px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 3rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  text-align: center;
  justify-self: center;
}

.hero-micro {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #0f2128;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  max-width: 720px;
}

.hero-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  max-width: 620px;
  color: #0f2128;
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #000000;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 360px;
}

.volunteer-home-section .eyebrow {
  font-size: 2rem;
  font-weight: 800;
  color: #095e17;
  display: block;
  margin-bottom: 1rem;
}

.resources-home-section .eyebrow {
  font-size: 2rem;
  font-weight: 800;
  color: #095d6e;
  display: block;
  margin-bottom: 0.75rem;
}

.clinician-home-copy .eyebrow {
  font-size: 2rem;
  font-weight: 800;
  color: #09505e;
  display: block;
  margin-bottom: 0.75rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .mission-grid,
  .service-grid,
  .resources-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================
   Home Page Sections
   ============================= */

.contact-secondary-cta .button-secondary {
  border-color: #09505e;
  color: #09505e;
}

.contact-secondary-cta .button-secondary:hover {
  background: #09505e;
  color: #ffffff;
}

.service-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.service-card .button-secondary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  border-color: var(--accent);
  transition: 0.3s;
}

.service-card .button-secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.services {
  padding: 3rem 0 2.5rem;
}

.services h2,
.resources h2,
.mission h2,
.contact-form h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #e3f2fd;
  border: 1px solid rgba(15, 33, 40, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-number {
  display: none;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0 0 1.5rem;
  color: var(--text);
  text-align: center;
  font-size: 1rem;
  flex-grow: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mission {
  padding: 3rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.mission-image {
  border-radius: 1.5rem;
  overflow: hidden;
}

.mission-copy h2 {
  margin-top: 0;
  text-align: center;
}

.mission-copy p {
  margin: 1.5rem 0;
  color: var(--muted);
  text-align: center;
}

.mission-list {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.mission-list h3 {
  margin: 0 0 0.35rem;
  text-align: center;
}

.mission-list p {
  margin: 0;
  text-align: center;
}

.resources {
  padding: 3rem 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(15, 33, 40, 0.06);
}

.resource-copy {
  padding: 1.5rem;
  text-align: center;
}

.resource-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.resource-card h3 {
  margin: 0 0 0.85rem;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  background: var(--primary);
  color: #ffffff;
  padding: 3rem 0;
}

.form-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.form-panel h2 {
  margin-bottom: 2.5rem;
}

.stats {
  padding: 2rem 0;
  background: #c4e3ec;
}

.stats-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: #0f2128;
}

.stats-header p {
  margin: 0 auto;
  max-width: 650px;
  color: #0f2128;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 33, 40, 0.12);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #28a745;
}

.stat-card p {
  margin: 0.5rem 0 0;
  color: #0f2128;
  font-weight: 600;
}

.volunteer-home-section .mission-copy {
  text-align: center;
}

.volunteer-home-section .mission-copy p {
  color: #0f2128;
  font-size: 1.08rem;
}

.volunteer-impact-line {
  font-weight: 700;
  color: #09505e !important;
}

.resources-home-section {
  padding: 3rem 0 3.5rem;
}

.resources-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.resources-header h2 {
  margin: 0.5rem 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.resources-subtext {
  color: #6c7a85;
  font-size: 1rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
  transition: transform 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-content {
  padding: 1.5rem;
}

.resource-content h3 {
  margin: 0 0 0.75rem;
  color: #0f2128;
  line-height: 1.2;
}

.resource-content p {
  color: #0f2128;
  margin-bottom: 1rem;
}

.resources-cta {
  text-align: center;
  margin-top: 2rem;
}

.contact-home-section {
  padding: 3rem 0 3.5rem;
  background: #eaf4f7;
}

.contact-home-card {
  max-width: 900px;
  margin: 0 auto;
  background: #f0f7f9;
  border: 1px solid #e7ecef;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 18px 45px rgba(15, 33, 40, 0.08);
}

.contact-home-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-home-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: #0f2128;
}

.contact-home-header p {
  color: #0f2128;
  margin: 0.5rem auto;
  max-width: 650px;
}

.contact-home-card input,
.contact-home-card select,
.contact-home-card textarea {
  border: 1px solid #d8e0e5;
  background: #ffffff;
  color: #0f2128;
}

.contact-home-card input:focus,
.contact-home-card select:focus,
.contact-home-card textarea:focus {
  border-color: #09505e;
  box-shadow: 0 0 0 3px rgba(9, 80, 94, 0.12);
}

.clinician-home-section {
  padding: 3rem 0 3.5rem;
  background: #f7fafb;
}

.clinician-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.clinician-home-copy {
  max-width: 650px;
}

.clinician-home-copy h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #0f2128;
}

.clinician-home-copy p {
  color: #0f2128;
  font-size: 1.08rem;
}

.clinician-home-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.clinician-home-list li {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  color: #0f2128;
  font-weight: 600;
}

.clinician-home-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 33, 40, 0.12);
}

.clinician-home-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.contact-response-note {
  font-weight: 600;
  color: #09505e !important;
}

.contact-secondary-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e7ecef;
}

.contact-secondary-cta p {
  color: #0f2128;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-page .hero {
  padding: 1.5rem 0 0.5rem;
}

.home-page .services {
  padding: 1.5rem 0 1.25rem;
}

.home-page .support-cta {
  padding: 1.75rem 0;
}

.home-page .mission {
  padding: 1.5rem 0;
}

.home-page .resources-home-section,
.home-page .clinician-home-section,
.home-page .contact-home-section {
  padding: 1.5rem 0 1.75rem;
}

.home-page .stats {
  padding: 1rem 0;
}

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .contact-home-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 960px) {
  .clinician-home-grid {
    grid-template-columns: 1fr;
  }

  .clinician-home-image img {
    height: 300px;
  }
}

/* =============================
   Service And Info Pages
   ============================= */

.clinician-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.clinician-benefits li {
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  background: #f8fafb;
  border: 1px solid #e7ecef;
  border-radius: 0.75rem;
  color: #0f2128;
  font-weight: 500;
}

.testimonial-box {
  background: #f8fafb;
  border: 1px solid #e7ecef;
  border-left: 4px solid #09505e;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-box p {
  margin: 0;
  color: #0f2128;
  font-style: italic;
}

.service-hero {
  padding: 5rem 0 4rem;
  background: #c4e3ec;
  text-align: center;
}

.service-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: #0f2128;
}

.service-hero p {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #0f2128;
  font-size: 1.2rem;
}

.service-info-section,
.how-it-works-section,
.testimonial-section {
  padding: 2rem 0;
}

.service-info-grid,
.how-it-works-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-info-card,
.step-card,
.testimonial-box {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
}

.service-info-card h3,
.step-card h3 {
  margin-top: 0;
  color: #09505e;
}

.step-card span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #09505e;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.how-it-works-section h2,
.testimonial-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 2rem;
}

.service-message-section {
  padding: 2rem 0;
  background: #f8fafb;
}

.service-message-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 6px solid #09505e;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
}

.service-message-card h2 {
  margin-top: 0;
  color: #0f2128;
}

.testimonial-box p {
  margin: 0;
  color: #0f2128;
  font-style: italic;
}

.final-cta-section {
  padding: 2rem 0 2.5rem;
}

.final-cta-card {
  background: #09505e;
  color: #ffffff;
  text-align: center;
  border-radius: 1.5rem;
  padding: 3rem;
}

.final-cta-card h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.final-cta-card p {
  margin-bottom: 2rem;
}

.service-highlight-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #09505e, #0f2128);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 33, 40, 0.15);
}

.service-highlight-card h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.service-highlight-card p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.simple-info-section {
  padding: 3rem 0;
}

.simple-info-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 1px solid #e7ecef;
  box-shadow: 0 15px 40px rgba(15, 33, 40, 0.06);
}

.simple-info-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.info-lead {
  color: #0f2128;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h3 {
  margin-bottom: 0.5rem;
  color: #09505e;
}

.insurance-list {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.insurance-list li {
  margin-bottom: 0.4rem;
}

.info-note {
  font-size: 0.95rem;
  color: #6c7a85;
}

.info-cta {
  text-align: center;
  margin-top: 2rem;
}

.support-alert-box {
  background: #fff3cd;
  border: 1px solid #ffe08a;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.support-alert-box h3 {
  margin-top: 0;
  color: #5c4300;
}

.support-alert-box p {
  margin-bottom: 0;
  color: #5c4300;
}

.secondary-cta-text {
  margin: 1.5rem 0 0.75rem;
  color: #0f2128;
  font-size: 0.95rem;
}

.highlight-strong {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}

@media (max-width: 960px) {
  .service-info-grid,
  .how-it-works-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   Donate / Support
   ============================= */

.support-cta .button-secondary {
  background: transparent;
  color: #28a745;                 /* green text */
  border: 2px solid #28a745;      /* green border */
  transition: all 0.3s ease;
}

.support-cta .button-secondary:hover {
  background: #28a745;            /* fill green on hover */
  color: #ffffff;                 /* white text */
}

.support-cta .button-secondary {
  background: transparent;
  color: #28a745;
  border: 2px solid #28a745;
  padding: 1.2rem 2.75rem;
  font-size: 1.2rem;
  border-radius: 0.9rem;
  transition: all 0.3s ease;
}

.support-cta .button-secondary:hover {
  background: #28a745;
  color: #ffffff;
}

.support-cta {
  background: #c4e3ec;
  padding: 3.5rem 0;
}

.support-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Donate section with side images */

.support-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: center;
}

.support-image img {
  width: 100%;
  height: 480px;   /* bigger */
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 33, 40, 0.14);
}

.support-copy h2 {
  color: #000000;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.support-text {
  max-width: 950px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.support-text p {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto 1.25rem;
}

.support-highlight {
  font-weight: 800;
  font-size: 1.45rem;
  margin-top: 1.75rem;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.donation-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.donation-options input[type="radio"] {
  width: 16px;
  height: 16px;
}

.donate-hero img {
  width: 100%;
  max-height: 220px;   /* control size */
  object-fit: contain; /* 👈 NO CROPPING */
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  background: #f8fafb; /* fills empty space nicely */
}

.donate-hero-card {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  padding: 0;
  overflow: hidden;
}

.donate-hero-card img {
  width: 100%;
  height: auto;
  display: block;
}

.donate-secondary {
  border-color: #09505e;
  color: #09505e;
  font-weight: 600;
}

.donate-secondary:hover {
  background: #09505e;
  color: #ffffff;
}

.donate-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.donate-method {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.cashapp-btn {
  background: #00d632;
  color: white;
}

.venmo-btn {
  background: #008cff;
  color: white;
}

.donate-method:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.card-payment-note {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-bottom: 0.1rem;
  padding: 0.5rem 0.6rem;

  background: #ffffff;
  border: 1px solid #dbe4e8;
  border-left: 5px solid var(--accent);

  border-radius: 12px;
}

.card-payment-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f3f7f9;

  flex-shrink: 0;
}

.card-payment-icon i {
  font-size: 1.2rem;
  color: var(--accent);
}

.card-payment-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.card-payment-text strong {
  font-size: 1rem;
  color: var(--text);
}

.card-payment-text span {
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 960px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-image img {
    height: 280px;
  }

  .support-image-left {
    order: 1;
  }

  .support-copy {
    order: 2;
  }

  .support-image-right {
    order: 3;
  }
}

/* =============================
   Forms / Intake / Volunteer
   ============================= */

form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.75rem;
  text-align: left;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  color: #0f2128;
}

input::placeholder,
textarea::placeholder {
  color: #7a8a98;
}

.intake-section {
  padding: 3rem 0 5rem;
  background: #f7fafb;
}

.intake-card {
  max-width: 900px;
  margin: 0 auto;
  background: #eef6f8;
  border: 1px solid rgba(15, 33, 40, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 18px 45px rgba(15, 33, 40, 0.08);
}

.intake-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.intake-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
  color: #0f2128;
}

.intake-header p {
  max-width: 620px;
  margin: 0 auto;
  color: #0f2128;
  font-size: 1.05rem;
}

.form-group-title {
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e7ecef;
  color: #09505e;
  font-size: 1.1rem;
  font-weight: 800;
}

.intake-card form > .form-group-title:first-of-type {
  margin-top: 0.25rem;
}

.volunteer-card form > .form-group-title:first-of-type {
  margin-top: 0.25rem;
}

.intake-card label {
  color: #0f2128;
  font-weight: 700;
}

.intake-card input,
.intake-card select,
.intake-card textarea {
  margin-top: 0.35rem;
  border: 1px solid #d8e0e5;
  background: #ffffff;
  color: #0f2128;
}

.intake-card input:focus,
.intake-card select:focus,
.intake-card textarea:focus {
  border-color: #09505e;
  box-shadow: 0 0 0 3px rgba(9, 80, 94, 0.12);
}

.urgent-note {
  background: #fff3cd;
  color: #5c4300;
  border: 1px solid #ffe08a;
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  margin: 0.5rem 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.urgent-note p,
.urgent-note .urgent-note {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

.urgent-note + .form-group-title {
  margin-top: 0.75rem;
}

.intake-submit {
  width: 100%;
  max-width: 360px;
  margin: 1rem auto 0;
  display: flex;
}

.volunteer-section {
  padding: 3rem 0;
  background: #f8fafb;
}

.volunteer-images {
  display: grid;
  grid-template-rows: 1fr 1fr; /* 👈 forces equal split */
  gap: 1.5rem;
  height: 100%; /* 👈 matches form height */
}

.volunteer-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 33, 40, 0.12);
}

.volunteer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}

.volunteer-card {
  background: #ffffff;
  border: 1px solid rgba(15, 33, 40, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(15, 33, 40, 0.08);
}

.volunteer-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.volunteer-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #0f2128;
}

.volunteer-header p {
  color: #6c7a85;
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 620px;
}

.volunteer-submit {
  width: 100%;
  max-width: 340px;
  margin: 1rem auto 0;
  display: flex;
}

/* Apply same styling as therapy form */

.volunteer-card input,
.volunteer-card select,
.volunteer-card textarea {
  margin-top: 0.35rem;
  border: 1px solid #d8e0e5;
  background: #ffffff;
  color: #0f2128;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  width: 100%;
}

.volunteer-card input:focus,
.volunteer-card select:focus,
.volunteer-card textarea:focus {
  border-color: #09505e;
  box-shadow: 0 0 0 3px rgba(9, 80, 94, 0.12);
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.6rem !important;
  margin: 1rem 0 1.5rem !important;
  width: 100% !important;
}

.checkbox-row input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  flex: 0 0 16px !important;
}

.checkbox-row label {
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.volunteer-section {
  padding-bottom: 1rem;
}

.volunteer-submit:hover {
  background: #28a745 !important;
  color: #ffffff;
}

.form-disclaimer {
  font-size: 0.9rem;
  color: #6c7a85;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

.file-note {
  font-size: 0.9rem;
  color: #6c7a85;
  margin-top: 0.5rem;
}

@media (max-width: 740px) {
  .intake-card {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 740px) {
  .volunteer-layout {
    gap: 0.5rem; /* 👈 reduce space between image + form */
  }

  .volunteer-images {
    margin-bottom: 0; /* 👈 remove extra space */
  }

  .volunteer-card {
    margin-top: 0;   /* 👈 remove push down */
    padding-top: 1.5rem; /* optional, keeps spacing clean */
  }
}

/* =============================
   Blog
   ============================= */

.blog-card-large .button-primary {
  background: #0f2128 !important;
  color: #ffffff !important;
}

.blog-card-large .button-primary:hover {
  background: #000000 !important;
}

.blog-large-button {
  background: #0f2128 !important;
  color: #ffffff !important;
  border-color: #0f2128 !important;
}

.blog-large-button:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.blog-hero {
  padding: 3rem 0 2rem;
  background: #c4e3ec;
  text-align: center;
}

.blog-hero-inner {
  max-width: 850px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #0f2128;
}

.blog-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #0f2128;
  font-size: 1.15rem;
}

.blog-list-section {
  padding: 2rem 0 3.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 33, 40, 0.07);
}

.blog-card-large img,
.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
}

.blog-card img {
  height: 220px;
  min-height: 220px;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h2,
.blog-card-content h3 {
  margin: 0 0 1rem;
  color: #0f2128;
  line-height: 1.2;
}

.blog-card-content p {
  color: #0f2128;
  margin-bottom: 1.25rem;
}

.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 33, 40, 0.12);
}

.blog-card-large {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 33, 40, 0.12);
}

.blog-card,
.blog-card-large {
  cursor: pointer;
}

.blog-link {
  color: #09505e;
  font-weight: 800;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

.blog-post-section {
  padding: 3rem 0 5rem;
}

.blog-post-container {
  max-width: 850px;
  margin: 0 auto;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #09505e;
  font-weight: 700;
  text-decoration: none;
}

.blog-back-link:hover {
  text-decoration: underline;
}

.blog-post-container h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: #0f2128;
}

.blog-post-meta {
  color: #6c7a85;
  margin-bottom: 2rem;
}

.blog-post-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  color: #09505e;
}

.blog-post-content p {
  color: #0f2128;
}

.blog-post-cta {
  margin-top: 3rem;
  background: #09505e;
  color: #ffffff;
  text-align: center;
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.blog-post-cta h2 {
  margin-top: 0;
}

.blog-post-cta p {
  margin-bottom: 1.75rem;
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

/* =============================
   About
   ============================= */

.read-more-btn {
  margin-top: 1rem;
  background: #09505e;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.read-more-btn:hover {
  background: #0f2128;
}

.about-hero {
  padding: 2.75rem 0 2rem;
  background: #c4e3ec;
  text-align: center;
}

.about-hero-inner {
  max-width: 850px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  color: #0f2128;
}

.about-hero p {
  color: #0f2128;
  font-size: 1.15rem;
  margin: 0;
}

.about-section {
  padding: 1.75rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 0.75rem;
}

.about-content p {
  color: #0f2128;
  font-size: 1.08rem;
  margin: 0.75rem 0;
}

.about-values-section {
  padding: 1.75rem 0 0.75rem;
  background: #f7fafb;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-mission-card {
  margin: 0;
  background: #09505e;
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  text-align: center;
}

.about-mission-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.about-mission-card p {
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-value-card {
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 33, 40, 0.06);
}

.about-value-card h3 {
  margin-top: 0;
  color: #09505e;
}

.about-value-card p {
  color: #0f2128;
  margin-bottom: 0;
}

.leadership-section {
  padding: 0.75rem 0 3rem;
}

.leadership-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.leadership-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.leadership-header p {
  color: #0f2128;
}

.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e7ecef;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(15, 33, 40, 0.07);
}

.leader-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;  /* 👈 KEY FIX */
  display: block;
  border: 4px solid #e4f2f5;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(15, 33, 40, 0.14);
}

.leader-content h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #0f2128;
}

.leader-title {
  margin: 0.35rem 0 1rem;
  color: #09505e;
  font-weight: 800;
}

.leader-content p {
  color: #0f2128;
}

.leader-more {
  display: none;
}

.leader-card.expanded .leader-more {
  display: block;
}

@media (max-width: 960px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-image img {
    height: 340px;
  }
}

@media (max-width: 740px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    padding: 1.5rem;
  }
}

/* =============================
   Footer
   ============================= */

.brand-footer {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.brand-footer {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.footer-button-primary,
.footer-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1rem;
  border-radius: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-button-primary {
  background: #df2b26;
  color: #ffffff;
}

.footer-button-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.5);
}

.footer-button-primary:hover {
  background: #28a745;
}

.footer-button-secondary:hover {
  background: #ffffff;
  color: #0f2128;
}

.site-footer {
  background: #ffffff;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(15, 33, 40, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-links span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(15, 33, 40, 0.08);
  color: var(--text);
  font-size: 0.85rem;
}

.footer-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  background: #0f2128;
  color: #ffffff;
  padding: 3rem 0 1.25rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-mission {
  max-width: 360px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem;
}

.footer-links-block a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.footer-links-block a:hover {
  color: #ffffff;
}

.footer-contact-block p {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.footer-contact-block .footer-title {
  font-weight: 800;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-line i {
  width: 1rem;
  margin-top: 0.25rem;
  color: #ffffff;
  text-align: center;
}

.footer-email {
  font-weight: 600;
  color: #ffffff;
}

.footer-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-radius: 8px;

  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #0f2128;
  transform: translateY(-2px);
}

.footer-social span {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 520px;
  text-align: right;
}

.footer-nonprofit {
  font-size: 0.85rem;
  color: #f0f7f9;
  margin-top: 0.25rem;
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 740px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-actions a {
    width: 100%;
  }
}
