/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 33, 71, 0.9), rgba(10, 33, 71, 0.9)), url('../images/donation-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 1.5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* History Section */
.history-section {
    padding: 1rem 0; 
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem; /* Reduced from 3rem */
    align-items: start;
}

.history-text {
    font-size: 1rem; /* Reduced from 1.1rem */
    line-height: 1.1; /* Reduced from 1.8 */
}

.history-text p {
    margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.highlight {
    background-color: var(--background-light);
    padding: 1.25rem; /* Reduced from 1.5rem */
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.history-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Reduced from 1.5rem */
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), #1a3a6b);
    padding: 0.5rem; /* Reduced from 2rem */
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px); /* Reduced from -5px */
}

.stat-number {
    font-size: 2rem; /* Reduced from 2.5rem */
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem; /* Reduced from 0.5rem */
}

.stat-label {
    color: white;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 1.2rem 0; /* Reduced from 4rem */
    background-color: var(--background-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem; /* Reduced from 3rem */
}

.mv-card {
    background: white;
    padding: 2rem; /* Reduced from 3rem */
    border-radius: 12px; /* Reduced from 15px */
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px); /* Reduced from -10px */
}

.mission-card {
    border-top: 5px solid var(--primary-color);
}

.vision-card {
    border-top: 5px solid var(--secondary-color);
}

.mv-icon {
    width: 70px; /* Reduced from 80px */
    height: 70px; /* Reduced from 80px */
    background: linear-gradient(135deg, var(--primary-color), #1a3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem; /* Reduced from 2rem */
}

.mv-icon i {
    font-size: 1.7rem; /* Reduced from 2rem */
    color: white;
}

.mv-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), #b40000);
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    font-size: 1.6rem; /* Reduced from 1.8rem */
}

.mv-card p {
    line-height: 1.5; /* Reduced from 1.7 */
    font-size: 1rem; /* Reduced from 1.1rem */
}

/* Operations Section */
.operations-section {
    padding: 3rem 0; /* Reduced from 4rem */
}

.operations-content {
    max-width: 800px;
    margin: 0 auto;
}

.operations-content > p {
    text-align: center;
    font-size: 0.1rem; 
    margin-bottom: 1rem; /* Reduced from 3rem */
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem; 
}

.operation-item {
    text-align: center;
    padding: 1rem 0.5rem; /* Reduced from 2rem 1rem */
}

.operation-icon {
    width: 60px; /* Reduced from 70px */
    height: 60px; /* Reduced from 70px */
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem; /* Reduced from 1.5rem */
    transition: var(--transition);
}

.operation-item:hover .operation-icon {
    background: var(--secondary-color);
    transform: scale(1.05); /* Reduced from 1.1 */
}

.operation-icon i {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    color: white;
}

.operation-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem; /* Reduced from 1rem */
}

.operation-item p {
    line-height: 1.5; /* Reduced from 1.6 */
}

/* Team Section */
.team-section {
    padding: 1.5rem 0; 
    background-color: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem; /* Reduced from 2rem */
    margin-bottom: 1.75rem; /* Reduced from 3rem */
}

.team-card {
    background: white;
    border-radius: 12px; /* Reduced from 15px */
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px); /* Reduced from -10px */
}

.team-image {
    position: relative;
    height: 300px; /* Reduced from 300px */
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1); /* Reduced from 1.1 */
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 33, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 0.75rem; /* Reduced from 1rem */
}

.team-social a {
    width: 35px; /* Reduced from 40px */
    height: 35px; /* Reduced from 40px */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.team-info {
    padding: 1.5rem; /* Reduced from 2rem */
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem; /* Reduced from 0.5rem */
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    font-size: 0.9rem;
}

.team-bio {
    line-height: 1.5; /* Reduced from 1.6 */
    color: var(--text-color);
}

.team-note {
    text-align: center;
    padding: 1.5rem; /* Reduced from 2rem */
    background: white;
    border-radius: 8px; /* Reduced from 10px */
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    padding: 3rem 0; /* Reduced from 4rem */
    background: linear-gradient(135deg, var(--primary-color), #b7cae4);
    color: var(--light-text);
    text-align: center;
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 0.75rem; /* Reduced from 1rem */
}

.cta-content p {
    font-size: 1rem; /* Reduced from 1.1rem */
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem; /* Reduced from 1rem */
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem; /* Reduced from 2.5rem */
    }
    
    .page-header {
        padding: 2.5rem 0; /* Further reduced for mobile */
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .mv-card {
        padding: 1.5rem; /* Reduced from 2rem */
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Further reduced for mobile */
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Further reduced for mobile */
    }
    
    .team-image {
        height: 220px; /* Further reduced for mobile */
    }
    
    .team-info {
        padding: 1.25rem; /* Further reduced for mobile */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem; /* Reduced from 1rem */
    }
    
    .cta-buttons .btn {
        width: 180px; /* Slightly reduced */
    }
}

/* Ultra-compact for very small screens */
@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0; /* Further reduced */
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .history-section,
    .mission-vision-section,
    .operations-section,
    .team-section,
    .cta-section {
        padding: 2rem 0; /* Further reduced */
    }
    
    .mv-card {
        padding: 1.25rem; /* Further reduced */
    }
    
    .operation-item {
        padding: 1rem 0.5rem; /* Further reduced */
    }
    
    .team-image {
        height: 200px; /* Further reduced */
    }
}

/* Operations Section */
.operations-section {
    padding: 3rem 0;
}

.operations-content {
    max-width: 1200px; /* Increased from 800px */
    margin: 0 auto;
}

.operations-content > p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 1.5rem;
}

.operation-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
}

.operation-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.operation-item:hover .operation-icon {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.operation-icon i {
    font-size: 1.5rem;
    color: white;
}

.operation-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem; /* Slightly larger for better readability */
}

.operation-item p {
    line-height: 1.5;
    font-size: 0.9rem; /* Slightly smaller to fit in one line */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .operations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .operations-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1rem;
    }
    
    .operation-item {
        padding: 1.25rem 0.5rem;
    }
    
    .operation-item h4 {
        font-size: 1rem;
    }
    
    .operation-item p {
        font-size: 0.85rem;
    }
}

/* Ultra-compact for very small screens */
@media (max-width: 480px) {
    .operations-grid {
        gap: 0.75rem;
    }
    
    .operation-item {
        padding: 1rem 0.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .operations-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1rem;
    }
    
    .operation-item {
        padding: 1.25rem 0.5rem;
    }
    
    .operation-item h4 {
        font-size: 1rem;
    }
    
    .operation-item p {
        font-size: 0.85rem;
    }
}

