/* ============================================
   ABOUT PAGE - CUSTOM STYLING
   ============================================ */

/* Hero About Section */
.hero-about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-about .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-about .hero-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-about .hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-about .hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.hero-about .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #fff;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 145, 77, 0.1);
}

.mission-card .mission-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card .mission-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Problems & Solutions */
.problems-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.problems-box,
.solutions-box {
    padding: 2rem;
    border-radius: 12px;
}

.problems-box {
    background: #ffe6e6;
    border-left: 5px solid #ff6b6b;
}

.solutions-box {
    background: #e6ffe6;
    border-left: 5px solid #51cf66;
}

.problems-box h3,
.solutions-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.problems-list,
.solutions-list {
    list-style: none;
    padding: 0;
}

.problems-list li,
.solutions-list li {
    padding: 0.8rem 0;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.problems-list li:last-child,
.solutions-list li:last-child {
    border-bottom: none;
}

.problems-list li:before {
    content: "✗ ";
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solutions-list li:before {
    content: "✓ ";
    color: #51cf66;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF914D 0%, #FF7F2C 100%);
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 145, 77, 0.15);
}

.value-card .value-icon-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card .value-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Stats Section */
.impact-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF914D 0%, #FF7F2C 100%);
    color: #fff;
}

.impact-stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.team-member {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member .team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 145, 77, 0.3);
}

.team-member .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-member .team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member .team-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Journey/Slideshow Section */
.journey-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slide {
    display: none;
    animation: fadeEffect 1s ease-in-out;
}

.slide.fade {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

.slide-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.slide-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 10;
}

.prev,
.next {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    user-select: none;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 145, 77, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #FFF8F0 0%, #F0F8F5 100%);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FFE6D5 0%, #D5F5F0 100%);
}

.faq-question h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: #f8f9fa;
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF914D 0%, #e29634 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 145, 77, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-about .hero-content,
    .mission-grid,
    .problems-solutions,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .slide-content {
        grid-template-columns: 1fr;
    }

    .slide-image {
        height: 300px;
    }

    .slide-text {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-about .hero-text h2 {
        font-size: 2rem;
    }

    .mission-section h2,
    .values-section h2,
    .journey-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    .hero-about,
    .mission-section,
    .values-section,
    .impact-stats-section,
    .team-section,
    .journey-section,
    .faq-section,
    .contact-section {
        padding: 2rem 0;
    }

    .mission-card,
    .value-card,
    .team-member,
    .contact-form {
        padding: 1.5rem;
    }

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

    .slide-text {
        padding: 1.5rem;
    }

    .slideshow-nav {
        padding: 0 0.5rem;
    }

    .prev,
    .next {
        padding: 0.25rem 0.75rem;
        font-size: 1.5rem;
    }
}