:root {
    --primary-orange: #FF5722;
    --accent-yellow: #FFC107;
    --dark-bg: #1D1D1D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --mid-gray: #E0E0E0;
    --text-dark: #333333;
    --text-muted: #555555;

    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Lato', sans-serif;

    --container-max: 1200px;
    --section-py: clamp(3rem, 6vw, 5rem);
    --section-px: clamp(1rem, 5vw, 2rem);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.job-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/gallery-6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.job-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.job-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    text-align: left;
}

.job-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.job-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 800px;
}

.job-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-donate-hero {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--accent-yellow);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-donate-hero:hover {
    background-color: #FFB300;
    transform: translateY(-2px);
}

/* ============================================================
   THE COMMUNITY GAP — SPLIT PANEL
   ============================================================ */
.job-gap-section {
    padding: var(--space-section-v) var(--space-section-h);
    background-color: var(--white);
    padding: var(--section-py) var(--section-px);
}

.job-gap-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
}

.job-gap-text-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-gap-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.job-gap-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.15;
}

.job-gap-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.job-gap-items-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.job-gap-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 12px;
    padding: var(--space-card-v) var(--space-card-h);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    width: 80%;
}

.job-gap-item:hover {
    background: var(--light-gray);
    border-color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.12);
}

.job-gap-item-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.job-gap-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================================
   OUR COMMUNITY APPROACH — ICON CARDS
   ============================================================ */
.job-approach-section {
    padding: var(--space-section-v) var(--space-section-h);
    padding: var(--section-py) var(--section-px);
    background-color: var(--light-gray);
}

.job-approach-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.job-approach-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #FF5722;
    text-align: center;
    margin-bottom: 0.6rem;
}

.job-approach-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
}

.job-approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.job-approach-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: var(--space-card-v) var(--space-card-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.job-approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(255, 87, 34, 0.15);
    border-color: var(--primary-orange);
}

.job-approach-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.job-approach-card-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.job-approach-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================================
   MASS IMPACT — STAT COUNTERS
   ============================================================ */
.job-impact-section {
    padding: var(--space-section-v) var(--space-section-h);
    padding: var(--section-py) var(--section-px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.job-impact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.job-impact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.job-impact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.6rem;
}

.job-impact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.job-impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.job-impact-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.job-impact-stat:hover {
    transform: translateY(-6px);
    background: rgba(255, 87, 34, 0.12);
    border-color: var(--primary-orange);
}

.job-impact-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.job-impact-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.5;
}

.job-impact-stat-goal .job-impact-stat-number {
    font-size: 3rem;
}

.job-impact-stat-goal {
    border-color: rgba(255, 87, 34, 0.4);
}

.job-impact-stat-goal:hover {
    border-color: var(--accent-yellow);
}

/* ============================================================
   JOIN OUR MISSION CTA
   ============================================================ */



/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
    .job-approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .job-impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET (≤ 820px)
   ============================================================ */
@media (max-width: 820px) {
    .job-gap-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-gap-text-panel {
        text-align: center;
        align-items: center;
    }

    .job-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .job-hero {
        height: auto;
        min-height: 500px;
        padding: 0;
    }

    .job-hero-content {
        padding: 100px 40px 60px;
    }

    .job-hero-title {
        font-size: 28px;
    }

    .job-hero-subtitle {
        font-size: 13px;
    }

    .job-approach-grid {
        grid-template-columns: 1fr;
    }

    .job-impact-stats-grid {
        grid-template-columns: 1fr;
    }

}