/* ==========================================================================
   Safe Balance Theme – Main Stylesheet
   Navy + Sky Blue palette, Playfair Display + DM Sans
   ========================================================================== */

:root {
  --navy:      #1A1A8C;
  --navy-dark: #0F0F6B;
  --navy-mid:  #2828B0;
  --sky:       #5B9BD5;
  --sky-light: #A8C8E8;
  --sky-pale:  #EBF4FB;
  --white:     #FFFFFF;
  --offwhite:  #F5F7FA;
  --text:      #1A1A2E;
  --text-mid:  #4A4A6A;
  --text-light:#7A7A9A;
  --border:    rgba(26,26,140,0.12);
  --shadow-sm: 0 2px 10px rgba(26,26,140,0.08);
  --shadow-md: 0 8px 30px rgba(26,26,140,0.12);
  --shadow-lg: 0 20px 60px rgba(26,26,140,0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); transition: color var(--transition); }
a:hover { color: var(--sky); }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--text); margin: 0 0 1rem; }
h1 { font-size: clamp(36px, 5vw, 62px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 18px; font-family: 'DM Sans', sans-serif; }
p  { margin: 0 0 1rem; }
em { font-style: italic; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── SKIP LINK (Accessibility) ── */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--navy); color: white; padding: 10px 20px; font-weight: 600; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ── EMERGENCY BAR ── */
.emergency-bar { background: var(--navy-dark); color: rgba(255,255,255,0.9); text-align: center; padding: 9px 20px; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; position: relative; z-index: 200; }
.emergency-bar a { color: var(--sky-light); font-weight: 700; text-decoration: none; }
.emergency-bar a:hover { text-decoration: underline; }

/* ── SITE HEADER — single unified row ── */
.site-header { position: sticky; top: 0; z-index: 150; background: var(--white); box-shadow: 0 2px 20px rgba(26,26,140,0.1); }

.nav-unified {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 48px;
    height: 76px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow: visible;
}

/* ── LOGO ── */
.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-link  { display: flex; align-items: center; gap: 10px; text-decoration: none; line-height: 1; }
.nav-logo-img   { height: 52px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.nav-logo-icon  { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-family: 'Playfair Display', serif; font-size: 15px; flex-shrink: 0; }
.nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav-logo-text span   { display: block; font-size: 9.5px; color: var(--sky); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

/* CENTRE — Primary nav */
.nav-primary { display: flex; justify-content: center; align-items: center; height: 76px; width: 100%; }
.primary-menu { display: flex; align-items: center; justify-content: center; list-style: none; margin: 0; padding: 0; gap: 4px; height: 76px; }

.menu-item { position: relative; height: 76px; display: flex; align-items: center; }
.menu-item > a {
    display: flex; align-items: center; gap: 5px;
    padding: 0 18px; height: 76px;
    color: var(--text-mid); text-decoration: none;
    font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em;
    transition: color var(--transition), border-color var(--transition); white-space: nowrap;
    border-bottom: 3px solid transparent; border-top: 3px solid transparent;
}
.menu-item > a:hover,
.menu-item.has-dropdown:hover > a { color: var(--navy); border-bottom-color: var(--sky); }
.chevron { font-size: 9px; transition: transform var(--transition); opacity: 0.5; }
.menu-item.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* RIGHT — Actions */
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-hotline { display: flex; align-items: center; gap: 8px; color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap; }
.nav-hotline-icon { width: 30px; height: 30px; background: var(--sky-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.nav-hotline:hover { color: var(--sky); }
.btn-nav-cta { background: var(--navy); color: white !important; padding: 9px 18px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 13px; letter-spacing: 0.02em; transition: background var(--transition), transform var(--transition); white-space: nowrap; }
.btn-nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* Mobile toggle — hidden on desktop */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--navy); flex-shrink: 0; }
.hamburger-line { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: all 0.3s; }

/* MEGA DROPDOWN */
.mega-dropdown {
  position: absolute; top: calc(100% + 3px); left: 0;
  background: white; border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200; min-width: 560px;
  border-top: 3px solid var(--navy);
}
.menu-item.has-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mega-grid-2 { grid-template-columns: repeat(2, 1fr); }

.mega-card { display: flex; align-items: flex-start; gap: 12px; padding: 13px; border-radius: var(--radius-sm); text-decoration: none; transition: all var(--transition); border: 1px solid transparent; }
.mega-card:hover { background: var(--sky-pale); border-color: var(--border); transform: translateY(-2px); }
.mega-card-icon { width: 40px; height: 40px; background: var(--sky-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: background var(--transition); }
.mega-card:hover .mega-card-icon { background: var(--navy); }
.mega-card-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.mega-card-text span { font-size: 12px; color: var(--text-light); line-height: 1.4; }

.mega-dropdown-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mega-footer-link { font-size: 13px; color: var(--navy); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.mega-footer-link:hover { color: var(--sky); }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; height: 88vh; min-height: 560px; overflow: hidden; }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 2; }
.slide-1 { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 55%, #1A4A8C 100%); }
.slide-2 { background: linear-gradient(135deg, #0D2B6B 0%, var(--navy) 55%, #1A6A9C 100%); }
.slide-3 { background: linear-gradient(135deg, #0A1A5C 0%, #1A3A8C 55%, var(--sky) 100%); }
.slide-4 { background: linear-gradient(135deg, var(--navy-mid) 0%, #1A5A8C 60%, #5B9BD5 100%); }

.slide-bg-image { position: absolute; inset: 0; background-size: cover; background-position: center right; background-color: var(--navy-dark); }
.slide-overlay  { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,80,0.92) 0%, rgba(10,15,80,0.75) 45%, rgba(10,15,80,0.3) 100%); }

.slide-bg-shape { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; display: flex; align-items: center; justify-content: center; }
.slide-circle-1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); animation: float 9s ease-in-out infinite; }
.slide-circle-2 { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(91,155,213,0.15); animation: float 7s ease-in-out infinite reverse; }
.slide-circle-3 { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(91,155,213,0.2); display: flex; align-items: center; justify-content: center; font-size: 82px; }

.slide-content { position: relative; z-index: 3; padding: 0 60px; max-width: 640px; animation: fadeUp 0.8s ease both; }

.slide-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(91,155,213,0.2); border: 1px solid rgba(91,155,213,0.4); color: var(--sky-light); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; font-weight: 600; }
.slide-tag-dot { width: 6px; height: 6px; background: var(--sky); border-radius: 50%; display: inline-block; }

.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 18px; }
.slide-title em { font-style: italic; color: var(--sky-light); }

.slide-text { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 34px; max-width: 500px; font-weight: 300; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-slide-primary { background: var(--sky); color: white; padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 14px; transition: all var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-slide-primary:hover { background: var(--sky-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,155,213,0.4); }
.btn-slide-outline { background: transparent; color: white; padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 500; font-size: 14px; border: 1px solid rgba(255,255,255,0.35); transition: all var(--transition); }
.btn-slide-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.slider-controls { position: absolute; bottom: 32px; left: 60px; z-index: 10; display: flex; align-items: center; gap: 16px; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.dot.active, .dot:focus { background: var(--sky); width: 44px; outline: none; }
.slider-arrows { display: flex; gap: 8px; }
.arrow-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.arrow-btn:hover, .arrow-btn:focus { background: var(--sky); border-color: var(--sky); outline: none; }
.slide-counter { position: absolute; bottom: 38px; right: 60px; z-index: 10; font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.1em; }
.slide-counter strong { color: white; font-size: 18px; font-family: 'Playfair Display', serif; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--offwhite); padding: 22px 60px; display: flex; align-items: center; justify-content: center; gap: 48px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.trust-icon { width: 30px; height: 30px; background: var(--sky-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 1px solid rgba(91,155,213,0.2); }

/* ── GENERIC SECTION ── */
.section-inner { max-width: 1200px; margin: 0 auto; }
section { padding: 90px 60px; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sky); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--sky); flex-shrink: 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.section-title em { font-style: italic; color: var(--navy); }
.section-sub { font-size: 15.5px; color: var(--text-light); line-height: 1.75; max-width: 520px; font-weight: 300; margin: 0; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; padding-bottom: 40px; }
.about-card-main { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); border-radius: var(--radius-lg); padding: 44px; color: white; position: relative; overflow: hidden; }
.about-card-main::before { content: ''; position: absolute; top: -50px; right: -50px; width: 220px; height: 220px; background: rgba(91,155,213,0.2); border-radius: 50%; }
.about-card-main::after { content: ''; position: absolute; bottom: -60px; left: -30px; width: 180px; height: 180px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.about-quote-mark { font-size: 72px; line-height: 0.5; color: var(--sky); opacity: 0.5; font-family: 'Playfair Display', serif; display: block; margin-bottom: 10px; }
.about-quote { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.55; position: relative; z-index: 1; }
.about-float { position: absolute; bottom: -24px; right: 28px; background: white; border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 2; }
.float-ico { width: 42px; height: 42px; background: var(--sky-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.float-txt strong { display: block; font-size: 18px; font-weight: 700; color: var(--navy); }
.float-txt span { font-size: 12px; color: var(--text-light); }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.value-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--sky-pale); border-radius: var(--radius-sm); border-left: 3px solid var(--sky); transition: transform var(--transition), border-color var(--transition); cursor: default; }
.value-row:hover { transform: translateX(4px); border-color: var(--navy); }
.value-row-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.value-row strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.value-row span { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── SERVICES GRID ── */
.services-section { background: var(--offwhite); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: white; border-radius: var(--radius-md); padding: 30px 26px; position: relative; overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(26,26,140,0.06); cursor: pointer; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); }
.svc-card.featured::after { transform: scaleX(1); background: var(--sky); }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; transition: background var(--transition); }
.svc-card:hover:not(.featured) .svc-icon { background: var(--navy); }
.svc-card.featured .svc-icon { background: rgba(255,255,255,0.15); }
.svc-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 9px; line-height: 1.3; font-family: 'DM Sans', sans-serif; }
.svc-card.featured h3 { color: white; }
.svc-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; font-weight: 300; }
.svc-card.featured p { color: rgba(255,255,255,0.7); }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; transition: gap var(--transition); }
.svc-link:hover { gap: 9px; }
.svc-card.featured .svc-link { color: var(--sky-light); }

/* ── URGENT BANNER ── */
.urgent-banner { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); padding: 36px 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 4px solid var(--sky); }
.urgent-banner h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: white; font-weight: 700; margin-bottom: 4px; }
.urgent-banner p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }
.urgent-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-urgent { background: var(--sky); color: white; padding: 12px 26px; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; font-size: 14px; transition: all var(--transition); white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.btn-urgent:hover { background: var(--sky-light); color: var(--navy); transform: translateY(-2px); }
.hotline-num { color: white; font-size: 18px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.2); transition: background var(--transition); }
.hotline-num:hover { background: rgba(255,255,255,0.18); color: white; }

/* ── HOW IT WORKS ── */
.how-section { background: white; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); z-index: 0; }
.how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: white; border: 2px solid var(--sky); color: var(--navy); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: 'Playfair Display', serif; transition: all var(--transition); }
.how-step:hover .step-num { background: var(--navy); color: white; border-color: var(--navy); transform: scale(1.1); }
.how-step h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 9px; font-family: 'DM Sans', sans-serif; }
.how-step p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testi-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding: 90px 60px; }
.testi-section .section-eyebrow { color: var(--sky-light); }
.testi-section .section-eyebrow::before { background: var(--sky-light); }
.testi-section .section-title { color: white; }
.testi-section .section-title em { color: var(--sky-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 28px; transition: all var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testi-stars, .star-rating { color: #F5C842; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-family: 'Playfair Display', serif; font-size: 15.5px; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 22px; quotes: none; padding: 0; border: none; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: white; font-family: 'Playfair Display', serif; flex-shrink: 0; overflow: hidden; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author-info strong { display: block; font-size: 13.5px; color: white; font-weight: 600; }
.t-author-info span { font-size: 11.5px; color: rgba(255,255,255,0.5); }

/* ── RESOURCES ── */
.resources-section { background: var(--sky-pale); }
.resources-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res-card { background: white; border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); border: 1px solid rgba(26,26,140,0.06); }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.res-bar { height: 5px; }
.bar-navy { background: var(--navy); }
.bar-sky  { background: var(--sky); }
.bar-grad { background: linear-gradient(90deg, var(--navy), var(--sky)); }
.res-body { padding: 26px; }
.res-type { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--sky); margin-bottom: 9px; }
.res-body h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 9px; line-height: 1.3; font-family: 'DM Sans', sans-serif; }
.res-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; font-weight: 300; }
.res-foot { padding: 14px 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.res-foot a { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.res-foot a:hover { gap: 9px; color: var(--sky); }
.res-foot span { font-size: 11.5px; color: var(--text-light); }

/* ── CTA SECTION ── */
.cta-section { background: white; text-align: center; padding: 90px 60px; }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-section .section-eyebrow { justify-content: center; }
.cta-section .section-eyebrow::before { display: none; }
.cta-section .section-sub { margin: 0 auto 36px; text-align: center; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-navy { background: var(--navy); color: white; padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 14px; transition: all var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,140,0.3); color: white; }
.btn-outline-navy { background: transparent; color: var(--navy); padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 500; font-size: 14px; border: 1.5px solid var(--navy); transition: all var(--transition); }
.btn-outline-navy:hover { background: var(--sky-pale); }
.btn-sky { background: var(--sky); color: white; padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 14px; transition: all var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-sky:hover { background: var(--sky-light); color: var(--navy); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: #080830; color: rgba(255,255,255,0.65); padding: 64px 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: block; margin-bottom: 14px; }
.footer-logo-img   { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.footer-logo-text  { font-family: 'Playfair Display', serif; font-size: 22px; color: white; font-weight: 700; text-decoration: none; display: block; }
.footer-tagline { font-size: 13.5px; line-height: 1.75; font-weight: 300; max-width: 260px; margin-bottom: 22px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 9px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-link:hover { background: var(--sky); color: white; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: white; font-weight: 600; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 13.5px; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.footer-copyright { color: rgba(255,255,255,0.4); }
.footer-legal-links { display: flex; gap: 20px; list-style: none; }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 12.5px; text-decoration: none; }
.footer-legal-links a:hover { color: var(--sky); }

/* ── STANDARD PAGE / BLOG ── */
.page-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); padding: 80px 60px; color: white; }
.page-header .page-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); color: white; margin: 0; }
.entry-content { max-width: 780px; margin: 0 auto; padding: 60px 0; font-size: 16px; line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; }

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-unified { padding: 0 32px; }
  section, .urgent-banner, .trust-bar, .testi-section, .site-footer { padding-left: 32px; padding-right: 32px; }
  .hero-slider .slide-content { padding: 0 32px; }
  .slider-controls { left: 32px; }
  .slide-counter { right: 32px; }
  .services-grid, .testi-grid, .res-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
  .nav-hotline-number { display: none; }
}

@media (max-width: 768px) {
  .nav-unified {
    grid-template-columns: 1fr auto;
    grid-template-rows: 64px auto;
    height: auto;
    padding: 0 20px;
  }
  .nav-logo-wrap { grid-column: 1; grid-row: 1; display: flex; align-items: center; }
  .nav-actions { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; grid-column: 2; grid-row: 1; }
  .nav-primary {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    background: var(--navy-dark);
    padding-bottom: 12px;
  }
  .nav-primary.open { display: flex; }
  .primary-menu { flex-direction: column; width: 100%; }
  .menu-item > a { height: auto; padding: 12px 20px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); border-bottom-width: 1px !important; }
  .menu-item > a:hover { color: white; }
  .mega-dropdown { position: static; opacity: 1; visibility: visible; transform: none; border-radius: 0; box-shadow: none; border-top: none; padding: 8px 20px; background: rgba(255,255,255,0.05); min-width: 0; display: none; }
  .menu-item.has-dropdown.open .mega-dropdown { display: block; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-card { padding: 8px; }
  .mega-card-text strong { color: rgba(255,255,255,0.9); }
  .mega-card-text span { color: rgba(255,255,255,0.5); }
  .hero-slider { height: auto; min-height: 520px; }
  .slide-circle-1, .slide-circle-2, .slide-circle-3 { display: none; }
  section { padding: 60px 20px; }
  .about-grid, .services-header, .resources-header { grid-template-columns: 1fr; gap: 30px; }
  .services-grid, .testi-grid, .res-grid, .how-grid { grid-template-columns: 1fr; }
  .urgent-banner { flex-direction: column; text-align: center; padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { gap: 20px; padding: 18px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE TEMPLATES — Additional Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── SHARED PAGE HEADER ── */
.page-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); padding: 80px 60px; text-align:center; }
.page-header-inner { max-width: 760px; margin: 0 auto; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 54px); color: white; margin: 0; }
.page-title em { font-style: italic; color: var(--sky-light); }
.page-meta { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; }
.single-thumbnail { max-width: 900px; margin: 40px auto 0; padding: 0 60px; }
.entry-footer { max-width: 780px; margin: 0 auto; padding: 24px 60px 60px; border-top: 1px solid var(--border); }
.entry-tags { font-size: 13px; color: var(--text-light); }

/* ── ABOUT PAGE ── */
.about-stats-strip { background: var(--navy); padding: 40px 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; max-width: 1200px; margin: 0 auto; }
.stat-item strong { display: block; font-size: clamp(28px, 4vw, 44px); font-family: 'Playfair Display', serif; color: white; font-weight: 700; }
.stat-item span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; margin-top: 4px; display: block; }
.about-story-section { background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.story-content p { font-size: 15.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.timeline-item { display: block; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.timeline-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.timeline-text strong { display: block; color: var(--text); margin-bottom: 2px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 14px; background: var(--sky-pale); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); background: linear-gradient(135deg, var(--sky-pale), var(--sky-light)); }
.team-info strong { display: block; font-size: 15px; font-weight: 600; color: var(--text); }
.team-info span { font-size: 13px; color: var(--text-light); }

/* ── SERVICES PAGE ── */
.services-grid-full { grid-template-columns: repeat(3, 1fr) !important; }
.services-page-section { background: white !important; }

/* ── CRISIS / GET HELP PAGE ── */
.crisis-hero { background: linear-gradient(135deg, #1A0A0A, #3A0A0A, var(--navy-dark)); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.crisis-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,60,60,0.15) 0%, transparent 70%); }
.crisis-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.crisis-alert-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,100,100,0.2); border: 1px solid rgba(255,100,100,0.4); color: #FF9999; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; font-weight: 600; }
.crisis-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); color: white; margin-bottom: 16px; }
.crisis-hero-title em { font-style: italic; color: #FF9999; }
.crisis-hero-sub { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7; max-width: 560px; margin: 0 auto 32px; font-weight: 300; }
.crisis-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-crisis-emergency { background: #C0392B; color: white; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-crisis-emergency:hover { background: #E74C3C; transform: translateY(-2px); color: white; }
.btn-crisis-helpline { background: transparent; color: white; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); transition: all var(--transition); }
.btn-crisis-helpline:hover { background: rgba(255,255,255,0.1); color: white; }
.crisis-options-section { background: white; }
.crisis-options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.crisis-option-card { background: var(--offwhite); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); }
.crisis-option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.crisis-card-primary { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); border-color: transparent; }
.crisis-card-primary h3, .crisis-card-primary p { color: white !important; }
.crisis-card-primary p { color: rgba(255,255,255,0.75) !important; }
.crisis-option-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.crisis-option-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.crisis-option-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; font-weight: 300; }
.crisis-safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.crisis-safety-list { display: flex; flex-direction: column; gap: 20px; }
.crisis-safety-item { display: flex; gap: 16px; align-items: flex-start; }
.crisis-safety-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--sky); min-width: 32px; line-height: 1.2; }
.crisis-safety-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.crisis-safety-item p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin: 0; }
.crisis-quick-escape-banner { background: var(--navy-dark); padding: 20px 60px; }
.btn-quick-escape { background: #E74C3C; color: white; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; text-decoration: none; transition: all var(--transition); white-space: nowrap; }
.btn-quick-escape:hover { background: #C0392B; color: white; }
kbd { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 2px 7px; font-size: 12px; font-family: monospace; color: white; }

/* ── RESOURCES PAGE ── */
.res-grid-full { grid-template-columns: repeat(3, 1fr) !important; }
.resources-page-section { background: white !important; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--offwhite); }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.contact-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-block { background: white; border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border); }
.contact-info-block h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; transition: color var(--transition); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { color: var(--sky); }
.contact-info-phone { background: var(--sky-pale); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px; border: 1px solid rgba(91,155,213,0.2); }
.contact-info-icon { font-size: 20px; flex-shrink: 0; width: 32px; text-align: center; }
.contact-info-item strong { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-info-item span { font-size: 14.5px; color: var(--text); font-weight: 500; }
.contact-urgent-box { background: linear-gradient(135deg, #3A0A0A, #1A0A1A); border-radius: var(--radius-md); padding: 22px; text-align: center; }
.contact-urgent-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.contact-urgent-box strong { display: block; color: white; font-size: 15px; margin-bottom: 6px; }
.contact-urgent-box p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 14px; }
.contact-urgent-box a { color: #FF9999; }
.btn-crisis-sm { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: var(--radius-sm); text-decoration: none; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); transition: all var(--transition); display: inline-block; }
.btn-crisis-sm:hover { background: rgba(255,255,255,0.18); color: white; }
.contact-hours { background: white; border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--border); }
.contact-hours h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-mid); }
.hours-row:last-child { border-bottom: none; }
.hours-val { font-weight: 600; color: var(--navy); font-size: 13px; }

/* ── FORMS (shared contact + donate) ── */
.contact-form-wrap, .donate-form-section { background: white; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14.5px; font-family: 'DM Sans', sans-serif; color: var(--text); background: white; transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(91,155,213,0.12); }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #E74C3C; }
.form-group textarea { resize: vertical; min-height: 130px; }
.field-optional { color: var(--text-light); font-weight: 400; }
.field-error { font-size: 12.5px; color: #E74C3C; font-weight: 500; }
.form-errors { background: #FEF0F0; border: 1px solid rgba(231,76,60,0.3); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; }
.form-errors strong { color: #C0392B; font-size: 14px; display: block; margin-bottom: 8px; }
.form-errors ul { margin: 0; padding-left: 18px; }
.form-errors li { font-size: 13.5px; color: #C0392B; margin-bottom: 4px; }
.form-send-error { background: #FEF0F0; border: 1px solid rgba(231,76,60,0.3); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; color: #C0392B; margin-bottom: 20px; }

/* Urgent checkbox row */
.form-urgent-row { background: var(--offwhite); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 24px; transition: all var(--transition); }
.form-urgent-row.is-urgent { background: #FEF0F0; border-color: rgba(231,76,60,0.5); }
.form-urgent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-urgent-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form-urgent-check-box { width: 20px; height: 20px; border-radius: 4px; border: 2px solid var(--border); background: white; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.form-urgent-label input:checked ~ .form-urgent-check-box { background: #E74C3C; border-color: #E74C3C; }
.form-urgent-label input:checked ~ .form-urgent-check-box::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; }
.form-urgent-text strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 3px; }
.form-urgent-text small { font-size: 12.5px; color: var(--text-light); line-height: 1.4; display: block; }

/* Checkbox fields */
.form-group-checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--border); background: white; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.checkbox-label input:checked ~ .checkbox-box { background: var(--navy); border-color: var(--navy); }
.checkbox-label input:checked ~ .checkbox-box::after { content: '✓'; color: white; font-size: 11px; font-weight: 700; }

/* File upload */
.file-upload-wrap { display: flex; align-items: center; gap: 12px; }
.file-upload-wrap input[type="file"] { position: absolute; opacity: 0; width: 0; height: 0; }
.file-upload-btn { background: var(--sky-pale); color: var(--navy); padding: 9px 18px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600; cursor: pointer; border: 1.5px solid rgba(91,155,213,0.3); transition: all var(--transition); white-space: nowrap; }
.file-upload-btn:hover { background: var(--sky); color: white; border-color: var(--sky); }
.file-upload-name { font-size: 13px; color: var(--text-light); }

/* Submit button */
.btn-submit { font-size: 15px; padding: 14px 32px; cursor: pointer; border: none; margin-top: 8px; }
.form-privacy-note { font-size: 12.5px; color: var(--text-light); margin-top: 12px; line-height: 1.5; }

/* Success message */
.form-success { background: linear-gradient(135deg, #F0FFF4, #E8F5E9); border: 1px solid rgba(39,174,96,0.3); border-radius: var(--radius-md); padding: 36px; text-align: center; }
.form-success-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 22px; color: #27AE60; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.form-success p { font-size: 14.5px; color: #2ECC71; color: #1A5C2A; line-height: 1.7; margin-bottom: 8px; }
.form-success-urgent { background: rgba(231,76,60,0.08); border-radius: var(--radius-sm); padding: 12px; font-size: 13.5px; color: #C0392B !important; margin-top: 12px; }

/* ── DONATE PAGE ── */
.donate-impact-strip { background: var(--navy); padding: 32px 60px; }
.donate-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.donate-impact-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.donate-impact-item:last-child { border-right: none; }
.donate-impact-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 32px; color: var(--sky-light); font-weight: 700; }
.donate-impact-item span { font-size: 13px; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
.donate-section { background: var(--offwhite); }
.donate-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; margin-bottom: 60px; }
.donate-main { background: white; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.donate-frequency-tabs { display: flex; gap: 4px; background: var(--offwhite); padding: 4px; border-radius: var(--radius-sm); width: fit-content; margin-bottom: 28px; }
.donate-tab { padding: 9px 22px; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; background: transparent; color: var(--text-light); transition: all var(--transition); font-family: 'DM Sans', sans-serif; }
.donate-tab.active { background: var(--navy); color: white; }
.donate-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.donate-amount-btn { padding: 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 18px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--text); background: white; cursor: pointer; transition: all var(--transition); }
.donate-amount-btn:hover, .donate-amount-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.donate-custom-wrap { position: relative; display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.donate-custom-prefix { padding: 0 12px; font-size: 16px; font-weight: 600; color: var(--text-mid); background: var(--offwhite); border-right: 1.5px solid var(--border); line-height: 48px; }
.donate-custom-input { border: none; outline: none; padding: 12px 14px; font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif; width: 100%; }
.donate-impact-preview { background: var(--sky-pale); border: 1px solid rgba(91,155,213,0.2); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.donate-impact-icon { font-size: 22px; flex-shrink: 0; }
.donate-cta-block { text-align: center; }
.donate-cta-note { font-size: 12.5px; color: var(--text-light); margin-bottom: 14px; }
.btn-donate-proceed { font-size: 16px; padding: 16px 36px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.donate-alt-methods { font-size: 13px; color: var(--text-light); margin-top: 14px; }
.donate-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.donate-sidebar-card { background: white; border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border); }
.donate-sidebar-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 18px; font-family: 'DM Sans', sans-serif; }
.donate-reasons { display: flex; flex-direction: column; gap: 11px; }
.donate-reasons li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.donate-quote-card { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); border-radius: var(--radius-md); padding: 24px; }
.donate-quote-card blockquote { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 12px; quotes: none; padding: 0; border: none; }
.donate-quote-card cite { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.donate-other-ways h4 { background: white; border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.donate-other-ways { background: white; border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border); }
.donate-other-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text-mid); font-size: 14px; transition: color var(--transition); }
.donate-other-link:last-child { border-bottom: none; }
.donate-other-link:hover { color: var(--navy); }
.donate-form-amount-display { background: var(--sky-pale); border: 1px solid rgba(91,155,213,0.2); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }

/* ── RESPONSIVE: NEW TEMPLATES ── */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .crisis-options-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .donate-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .about-stats-strip { padding: 32px 20px; }
  .crisis-hero { padding: 70px 20px; }
  .crisis-options-grid { grid-template-columns: 1fr; }
  .crisis-safety-grid { grid-template-columns: 1fr; }
  .services-grid-full, .res-grid-full { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-amounts { grid-template-columns: repeat(3, 1fr); }
  .donate-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-wrap, .donate-form-section { padding: 24px 20px; }
  .donate-main { padding: 24px 20px; }
  .crisis-quick-escape-banner { padding: 16px 20px; }
  .donate-impact-strip { padding: 24px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
