/**
 * TOWD About Page Styles
 * Styles for mission, values, stats, testimonials, and CTA sections
 */

/* Mission Section */
.mission-section {
    padding: 5rem 1rem;
    background: var(--white);
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 1rem;
    background: var(--gray-light);
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.values-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.values-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(252, 238, 33, 0.3);
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--yellow);
    transform: scale(1.1);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--black);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 5rem 1rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 238, 33, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.stats-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(252, 238, 33, 0.3);
    transform: translateY(-4px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(252, 238, 33, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1rem;
    background: var(--white);
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonials-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.testimonials-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.testimonial-stars {
    display: inline-flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    background: var(--black);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-stars svg polygon {
    fill: #FCEE21;
}

.testimonial-card p {
    color: var(--black);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.15rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--yellow-pale) 0%, #fff8dc 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(252, 238, 33, 0.4);
}

.cta-icon svg {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.cta-container h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cta-container p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--black-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (min-width: 768px) {
    .mission-section {
        padding: 6rem 2rem;
    }

    .mission-content h2 {
        font-size: 2.5rem;
    }

    .values-section {
        padding: 6rem 2rem;
    }

    .values-header h2 {
        font-size: 2.5rem;
    }

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

    .stats-section {
        padding: 6rem 2rem;
    }

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

    .stat-card .number {
        font-size: 3rem;
    }

    .testimonials-section {
        padding: 6rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-section {
        padding: 6rem 2rem;
    }

    .cta-container h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
