/* Global Health Outreach Page Styles */

/* Hero Section */
.outreach-hero {
    position: relative;
    height: 380px;
    background-image: url('image/Global Health Outreach/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.outreach-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 84, 172, 0.88) 0%, rgba(20, 190, 217, 0.7) 100%);
    z-index: 1;
}

.outreach-hero .container {
    position: relative;
    z-index: 2;
}

.outreach-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ldr-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Intro Section */
.outreach-intro {
    padding: 6rem 0;
    background-color: #ebedf0;
}

.outreach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .outreach-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.outreach-content h2 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.outreach-content h3 {
    font-size: 20px;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
    font-weight: 500;
}

.outreach-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
}

.outreach-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.outreach-features {
    padding: 0rem 0 6rem;
    background-color: #ebedf0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--primary-navy);
    padding: 3rem 2rem;
    border-radius: 12px;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.feature-card.dark {
    background-color: #333333;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: #1954AC;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
}

.feature-card h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats Card Specifics */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA & Form Section */
.outreach-cta-form {
    padding: 6rem 0;
    background-color: #fbfcfe;
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .cta-form-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.cta-info h2 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.cta-info p {
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    background-color: #22C55E;
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-green-hover);
    transform: translateX(10px);
}

.cta-btn-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-icon i {
    width: 18px;
    height: 18px;
}

/* Form Styling */
.form-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.form-card p {
    margin-bottom: 2rem;
    font-size: 16px;
}

/* Shared form group styles from contact.css likely exist, but we ensure specificity */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 13px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-cyan);
    outline: none;
    background-color: var(--white);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-group p {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

/* Support Section */
.outreach-support {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .outreach-support {
        flex-direction: row;
    }
}

.support-image {
    flex: 1;
    min-height: 400px;
    background: url('image/Global Health Outreach/Support Our Mission.jpg');
    background-size: cover;
    background-position: center;
}

.support-content {
    flex: 1;
    background-color: var(--primary-cyan);
    padding: 6rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.support-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.support-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}