/* About Page Styles */

/* Page Sections */
.page-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-section:last-child {
    border-bottom: none;
}

.section-label {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 0;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a6f 100%);
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 1.2rem;
    opacity: 0.9;
}

.image-placeholder-alt {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e06810 100%);
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: var(--bg-light);
    margin: 0 -15px;
    padding: 60px 15px;
    border-radius: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 121, 32, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.value-card h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-list li i {
    color: #28a745;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    border-bottom: none;
    padding-bottom: 30px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a6f 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

/* Contact CTA */
.contact-cta {
    padding-top: 0;
}

.contact-cta-content {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-cta-content > i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.contact-cta-content > div {
    flex: 1;
}

.contact-cta-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-cta-content p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid,
    .mission-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-image {
        order: -1;
    }

    .why-image {
        order: -1;
    }

    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 40px 0;
    }

    .story-content h2,
    .why-content h2,
    .section-header h2,
    .cta-card h2 {
        font-size: 1.5rem;
    }

    .story-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .contact-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .contact-cta-content > div {
        margin-bottom: 15px;
    }
}
