/* Work Area Page Specific Styles */
.bwf-banner{
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/banners/workarea-banner.jpg');
}

/* Work Area Banner */
.workarea-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.workarea-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    border-radius: 0 0 0 100px;
}

.workarea-banner .banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.workarea-banner .banner-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.workarea-banner .banner-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.workarea-banner .banner-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.workarea-banner .banner-breadcrumbs {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

.workarea-banner .breadcrumb-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.workarea-banner .breadcrumb-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.workarea-banner .breadcrumb-links a:hover {
    color: white;
}

/* Work Area Hero */
.workarea-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(0, 61, 122, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.workarea-hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.workarea-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.workarea-hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

/* Mission Statement */
.mission-statement {
    padding: 80px 0;
    background-color: var(--light);
}

.mission-content h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.mission-text p {
    margin-bottom: 20px;
}

/* Support Options */
.support-options {
    padding: 100px 0;
}

.section-header h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.support-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 30px;
    border-top: 5px solid var(--primary);
    height: 100%;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.support-icon {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.option-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.support-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.support-description {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Specific option styles */
.sponsorship-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.option-detail {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.option-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.option-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

.option-note {
    background-color: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.95rem;
}

.option-note p {
    margin: 0;
}

.construction-options, .vehicle-options, .salary-options {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.construction-item, .vehicle-option, .salary-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.vehicle-option {
    display: block;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    border-bottom: none;
}

.salary-option {
    display: block;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    border-bottom: none;
}

.item-name, .vehicle-type, .position-title {
    font-weight: 600;
    color: var(--primary);
}

.item-amount, .vehicle-amount, .salary-amount {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

.vehicle-desc, .salary-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

.kind-donations, .volunteer-options {
    margin: 20px 0;
}

.donation-category, .volunteer-role {
    margin-bottom: 20px;
}

.donation-category h4, .volunteer-role h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.donation-category ul, .volunteer-role ul {
    list-style: none;
    padding-left: 20px;
}

.donation-category li, .volunteer-role li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.donation-category li:before, .volunteer-role li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.library-contributions, .volunteer-note {
    margin: 20px 0;
}

.contribution-option {
    background-color: var(--primary-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
}

.contribution-title, .vehicle-desc, .salary-desc {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contribution-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contribution-desc {
    font-size: 0.95rem;
    color: var(--gray);
}

.volunteer-note {
    background-color: #E8F4FF;
    border-left: 4px solid var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.impact-content h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.impact-content > p {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.impact-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.impact-desc {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* CTA Section */
.workarea-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(227, 24, 55, 0.9), rgba(227, 24, 55, 0.95)), url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .workarea-hero h1 {
        font-size: 2.8rem;
    }
    
    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 768px) {
    .workarea-hero {
        padding: 140px 0 80px;
    }
    
    .workarea-hero h1 {
        font-size: 2.2rem;
    }
    
    .workarea-hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-card {
        padding: 25px;
    }
    
    .sponsorship-options {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .workarea-hero h1 {
        font-size: 1.8rem;
    }
    
    .mission-content h2,
    .section-header h2,
    .impact-content h2 {
        font-size: 1.8rem;
    }
    
    .support-card {
        padding: 20px;
    }
}