/* COVID Service Page Specific Styles */

/* COVID Header */
.covid-header {
    background: var(--bg-light);
    padding: 120px 0 80px;
    position: relative;
}

.covid-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.covid-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.covid-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.covid-stats-quick {
    margin-top: 2rem;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.quick-stat p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.covid-hero-image {
    position: relative;
    text-align: center;
}

.covid-hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* COVID Services */
.covid-services {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* COVID Gallery */
.covid-gallery {
    background: var(--secondary);
    position: relative;
}

.covid-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.covid-gallery .container {
    position: relative;
    z-index: 2;
}

.covid-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 2rem;
}

.covid-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.covid-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.covid-gallery-item:hover img {
    transform: scale(1.05);
}

.covid-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 31, 52, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

.covid-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.covid-gallery-item .gallery-overlay h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.covid-gallery-item .gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.category-badge {
    background: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.gallery-filters .filter-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 31, 0.3);
}

/* COVID Impact */
.covid-impact {
    background: var(--bg-light);
}

.impact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.impact-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* COVID Testimonials */
.covid-testimonials {
    background: var(--secondary);
    position: relative;
}

.covid-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.covid-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Image Modal */
.modal-xl {
    max-width: 90%;
}

#modalCovidImage {
    max-height: 70vh;
    object-fit: contain;
}

#modalImageTitle {
    color: var(--primary);
    font-weight: 600;
}

/* Gallery Filter Animation */
.covid-gallery-item.filtering {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.covid-gallery-item.filtered-out {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .covid-title {
        font-size: 2.5rem;
    }
    
    .covid-subtitle {
        font-size: 1.1rem;
    }
    
    .covid-description {
        font-size: 1rem;
    }
    
    .quick-stat h3 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .covid-gallery-item img {
        height: 250px;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filters .filter-btn {
        width: 200px;
        justify-content: center;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .covid-title {
        font-size: 2rem;
    }
    
    .covid-header {
        padding: 100px 0 60px;
    }
    
    .quick-stat {
        padding: 0.8rem;
    }
    
    .quick-stat h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .covid-gallery-item img {
        height: 200px;
    }
    
    .impact-icon {
        width: 60px;
        height: 60px;
    }
    
    .impact-icon i {
        font-size: 1.5rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .testimonial-content i {
        font-size: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.impact-number {
    animation: countUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .gallery-filters {
        display: none;
    }
    
    .covid-gallery-item .gallery-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .service-card,
    .impact-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}