/* =============================================
   VOLUNTEER PAGE STYLES
   ============================================= */

/* Hero Section */
.vol-hero-container {
    min-height: 50vh;
    background: linear-gradient(180deg, #d1e6fc, #F1F8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 1.92rem + 2.5vw, 4rem) clamp(1rem, 0.5rem + 2vw, 1.5rem);
    position: relative;
    text-align: center;
}

.vol-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 85, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 85, 255, 0.08) 1px, transparent 1px);
    background-size: clamp(20px, 4vw, 60px) clamp(20px, 4vw, 60px);
    pointer-events: none;
    z-index: 1;
}

.vol-hero-content {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vol-hero-title {
    font-family: 'Phudu', sans-serif;
    font-size: clamp(2.2rem, 1.5rem + 4.25vw, 5.125rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
}

/* --- WHY VOLUNTEER & BENEFITS SECTIONS (SHARED STYLES) --- */
.vol-why-wrapper, .vol-benefits-wrapper {
    padding: clamp(2.5rem, 1.92rem + 2.5vw, 4rem) 1.5rem;
    background-color: #F1F8FF;
}

.vol-why-grid, .vol-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1rem + 4.25vw, 4rem);
    max-width: 1340px;
    margin: 0 auto;
    align-items: center;
}

.vol-why-content-left,
.vol-benefits-content-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vol-why-title, .vol-benefits-title {
    font-family: 'Phudu', sans-serif;
    color: #0C2045;
    font-size: clamp(1.8rem, 1.96rem + 1.24vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
}

.vol-why-subtitle, .vol-benefits-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 0.91rem + 0.38vw, 1.125rem);
    line-height: 1.4;
    color: #01070E;
}

.vol-why-content-right p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 0.81rem + 0.38vw, 1rem);
    line-height: 1.5;
    color: #01070E;
}

/* --- BENEFITS SECTION (SPECIFIC STYLES) --- */
.vol-benefits-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background-color: #f0f0f0;
}

.vol-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.vol-benefits-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 0.8rem + 0.85vw, 1.25rem);
    color: #0C2045;
    line-height: 1.3;
}

.vol-benefits-list-item .vol-checkmark-svg {
    width: clamp(20px, 0.9rem + 0.85vw, 24px);
    height: auto;
    flex-shrink: 0;
}

.vol-checkmark-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* --- SLOGAN SECTION --- */
.vol-slogan-wrapper {
    background: linear-gradient(135deg, #0055FF 0%, #0C2045 100%);
    padding: clamp(3rem, 2rem + 4.25vw, 5rem) 1.5rem;
    text-align: center;
}

.vol-slogan-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vol-slogan-title {
    font-family: 'Phudu', sans-serif;
    font-size: clamp(2rem, 1.5rem + 4.25vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.vol-slogan-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 0.91rem + 0.38vw, 1.25rem);
    line-height: 1.6;
    color: #E8F0FE;
    max-width: 800px;
    margin: 0 auto;
}

/* --- APPLY NOW SECTION --- */
.vol-apply-wrapper {
    background-color: #F1F8FF;
    padding: clamp(2.5rem, 1.92rem + 2.5vw, 4rem) 1.5rem;
}

.vol-apply-container {
    max-width: 1340px;
    margin: 0 auto;
}

.vol-apply-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 1.5rem + 4.25vw, 4rem);
}

.vol-apply-title {
    font-family: 'Phudu', sans-serif;
    font-size: clamp(2rem, 1.5rem + 4.25vw, 4rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.vol-apply-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 0.91rem + 0.38vw, 1.125rem);
    line-height: 1.5;
    color: #334155;
    max-width: 768px;
    margin: 0 auto;
}

.vol-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 1rem + 2.12vw, 2.5rem);
}

.vol-job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(1.5rem, 1rem + 2vw, 2rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vol-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.vol-job-title {
    font-family: 'Phudu', sans-serif;
    font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
    font-weight: 600;
    color: #0C2045;
    line-height: 1.2;
    margin: 0;
}

.vol-job-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    line-height: 1.5;
    color: #475569;
    margin: 0;
    flex-grow: 1;
}

.vol-job-commitment {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    color: #0055FF;
    margin: 0;
}

.vol-job-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0055FF 0%, #0C2045 100%);
    color: #ffffff;
    font-family: 'Phudu', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.vol-job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 85, 255, 0.3);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .vol-why-grid, .vol-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vol-benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vol-jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .vol-hero-container {
        min-height: 40vh;
    }

    .vol-benefits-list {
        gap: 0.875rem;
    }

    .vol-jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vol-hero-container {
        min-height: 35vh;
        padding: 2rem 1rem;
    }

    .vol-why-wrapper, .vol-benefits-wrapper, .vol-apply-wrapper {
        padding: 2rem 1rem;
    }

    .vol-slogan-wrapper {
        padding: 2.5rem 1rem;
    }
}
