/* About Us Page - Modern, Full-Width Design */

/* About Wrapper - Full Width */
.about-wrapper {
    width: 100%;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
}

.about-hero-content {
    text-align: left;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Main Content */
.about-main-content {
    width: 100%;
    padding: 0;
    max-width: none;
    box-sizing: border-box;
}

/* About Sections */
.about-section {
    padding: 4rem 2rem;
    background: white;
    margin-bottom: 0;
}

.about-section:nth-child(even) {
    background: #f8fafc;
}

.about-section-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.about-section-impact {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.about-section-contact {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 105, 5, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 181, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006905' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.about-section-cta .about-section-content {
    position: relative;
    z-index: 2;
}

.about-section-cta .about-section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.about-section-cta .about-section-header h2 i {
    color: #00b590;
    font-size: 0.9em;
    opacity: 0.9;
}

.about-section-cta .about-section-subtitle {
    font-size: 1.4rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.about-section-cta .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.about-section-contact .about-section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-section-contact .about-section-subtitle {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Section Content */
.about-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-section-header h2 i {
    color: #00b590;
}

.about-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section-contact .about-section-header h2,
.about-section-contact .about-section-subtitle {
    color: white;
}

/* Section Grid */
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Mission Quote */
.mission-quote {
    margin: 2rem 0;
}

.mission-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a5568;
    border-left: 4px solid #00b590;
    padding-left: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

.mission-quote footer {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-weight: 500;
}

.mission-description p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Policy Badge */
.policy-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.3);
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.achievement-content h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Achievements Actions */
.achievements-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.value-card h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.impact-card-primary {
    background: linear-gradient(135deg, #00b590, #006905);
}

.impact-card-success {
    background: linear-gradient(135deg, #059669, #047857);
}

.impact-card-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.impact-card-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.impact-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.impact-card p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.95rem;
}

/* Accountability Content */
.accountability-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accountability-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.important-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-content h5 {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notice-content p {
    color: #92400e;
    margin: 0;
    font-size: 1rem;
}

.receipt-note {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Buttons */
.about-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
    min-width: 140px;
}

.about-btn-primary {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
}

.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

.about-btn-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-btn-outline:hover {
    background: white;
    color: #00b590;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 0;
    }
    
    .about-hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-section-header h2 {
        font-size: 2rem;
    }
    
    .about-section-cta {
        padding: 3rem 1rem;
        min-height: 350px;
    }
    
    .about-section-cta .about-section-header h2 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-section-cta .about-section-subtitle {
        font-size: 1.2rem;
    }
    
    .about-section-cta .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .about-hero-actions {
        justify-content: center;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0.5rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 2rem 0.5rem;
    }
    
    .about-section-header h2 {
        font-size: 1.75rem;
    }
    
    .about-section-cta {
        padding: 2.5rem 0.5rem;
        min-height: 300px;
    }
    
    .about-section-cta .about-section-header h2 {
        font-size: 2rem;
    }
    
    .about-section-cta .about-section-subtitle {
        font-size: 1.1rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .impact-card {
        padding: 1.5rem;
    }
}


/* Bank Transfer Details */
.bank-transfer-details {
    max-width: 800px;
    margin: 0 auto;
}

.bank-info-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.bank-info-card h3 {
    color: #2c8b33;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.bank-details-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bank-detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.bank-detail-item.full-width {
    flex-direction: column;
    align-items: flex-start;
}

.detail-label {
    font-weight: 600;
    color: #2c8b33;
    min-width: 140px;
    margin-right: 1rem;
    font-size: 1rem;
}

.detail-value {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.5;
}

.bank-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.bank-notice p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.bank-notice a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.bank-notice a:hover {
    text-decoration: underline;
}

/* Important Information Section */
.important-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    color: #2c8b33;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    border-left: 3px solid #00b590;
    padding-left: 1rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.info-list li:last-child {
    border-bottom: none;
}

.warning-card {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.warning-card h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.warning-card p {
    color: #856404;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.warning-card p:last-child {
    margin-bottom: 0;
}

/* Donation Actions */
.donation-actions {
    margin-top: 2rem;
}

.donation-actions .about-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-actions .about-btn-primary {
    background: #00b590;
    color: white;
    border: none;
}

.donation-actions .about-btn-primary:hover {
    background: #009975;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 144, 0.3);
}

.donation-actions .about-btn-outline {
    background: transparent;
    color: #00b590;
    border: 2px solid #00b590;
    border-radius: 8px;
}

.donation-actions .about-btn-outline:hover {
    background: #00b590;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 144, 0.3);
}

/* Remove PayPal-specific styles since PayPal is not available */

/* Address and Office Info */
.address-info, .office-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
}

.address-info h4, .office-info h4 {
    color: #2c8b33;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.address-details, .office-details {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Bank Transfer */
@media (max-width: 768px) {
    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .bank-info-card {
        padding: 1.5rem;
    }
    
    .info-card, .warning-card {
        padding: 1.5rem;
    }
}


/* Donation Help Section - Unique Classes to Avoid Conflicts */
.donation-help-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.donation-help-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.donation-help-contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.donation-help-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #00b590;
}

.donation-help-contact-icon {
    font-size: 3rem;
    color: #00b590;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.donation-help-contact-item:hover .donation-help-contact-icon {
    transform: scale(1.1);
}

.donation-help-contact-item h4 {
    color: #2c8b33;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.donation-help-contact-item p {
    color: #374151;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.donation-help-contact-item small {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
}

.donation-help-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.donation-help-text {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donation-help-cta .about-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-help-cta .about-btn-outline {
    background: transparent;
    color: #00b590;
    border: 2px solid #00b590;
}

.donation-help-cta .about-btn-outline:hover {
    background: #00b590;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 144, 0.3);
}

/* Responsive Design for Donation Help Section */
@media (max-width: 768px) {
    .donation-help-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-help-contact-item {
        padding: 2rem 1.5rem;
    }
    
    .donation-help-cta {
        padding: 2rem 1.5rem;
    }
    
    .donation-help-text {
        font-size: 1rem;
    }
}
