/* ========================================
   COVID PAGE STYLES
   ======================================== */

/* COVID Hero Section */
.covid-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0C359E 0%, #1a4bb8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/covid.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.covid-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.covid-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.covid-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Impact Statistics Section */
.impact-stats-section {
    padding: 60px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Relief Efforts Section */
.relief-efforts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Relief Cards */
.relief-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.relief-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.15);
}

.relief-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.relief-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.relief-card:hover .relief-image img {
    transform: scale(1.1);
}

.relief-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 53, 158, 0.9) 0%, rgba(74, 144, 226, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.relief-card:hover .relief-overlay {
    opacity: 1;
}

.relief-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.relief-card:hover .relief-icon {
    transform: scale(1);
}

.relief-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.relief-content {
    padding: 30px 25px;
}

.relief-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.relief-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: white;
}

.commitment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.commitment-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commitment-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.commitment-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .covid-hero-title {
        font-size: 2.5rem;
    }
    
    .covid-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .commitment-title {
        font-size: 2rem;
    }
    
    .impact-stats-section,
    .relief-efforts-section,
    .commitment-section {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .relief-image {
        height: 200px;
    }
    
    .commitment-image {
        margin-top: 30px;
    }
}
