/* ============================================================
   charity.css — Charity page styles
   ============================================================ */

/* ── PAGE HEADER BG ─────────────────────────────────────────── */
.page-header--charity {
    background-image: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
                      url('../images/Diker Contracting INC (12).jpg');
  }
  
  /* ── CHARITY HERO INTRO ─────────────────────────────────────── */
  .charity-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .charity-hero-text p {
    color: var(--gray-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .charity-hero-text p:last-of-type { margin-bottom: 28px; }
  
  .charity-hero-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
  }
  .charity-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ── STATS STRIP ────────────────────────────────────────────── */
  .charity-stats-section {
    background: var(--dark);
    padding: 70px 0;
  }
  .charity-nums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .charity-stat-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
  }
  .charity-stat-card .num {
    display: block;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }
  .charity-stat-card .lbl {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  
  /* ── WHO WE SERVE ───────────────────────────────────────────── */
  .charity-recipients-section { background: var(--bg-light); }
  .charity-recipients-section .section-head-centered { margin-bottom: 48px; }
  .charity-recipients-section .section-subtitle { margin: 0 auto; }
  
  .charity-recipients {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .recipient-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  .recipient-card:hover {
    border-color: var(--gold);
    background: rgba(245,197,24,0.03);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  .recipient-icon {
    width: 64px;
    height: 64px;
    background: rgba(245,197,24,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
  }
  .recipient-card h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .recipient-card p {
    font-size: 0.83rem;
    color: var(--gray-mid);
    line-height: 1.6;
  }
  
  /* ── HOW IT WORKS ───────────────────────────────────────────── */
  .charity-how-section { background: var(--white); }
  .charity-how-section .section-head-centered { margin-bottom: 48px; }
  
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .how-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  .how-num {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--black);
    margin: 0 auto 18px;
  }
  .how-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
  }
  .how-card p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    line-height: 1.6;
  }
  
  /* ── BOTTOM CTA ─────────────────────────────────────────────── */
  .charity-cta-section {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
  }
  .charity-cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
  }
  .charity-cta-section h2 span { color: var(--gold); }
  .charity-cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }
  .charity-cta-section .btn-gold { font-size: 1rem; padding: 15px 36px; }
  
  /* ── RESPONSIVE ─────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .charity-hero-grid  { grid-template-columns: 1fr; gap: 40px; }
    .charity-nums-grid  { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .charity-recipients { grid-template-columns: 1fr; }
    .how-grid           { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .charity-nums-grid  { grid-template-columns: 1fr; }
  }