/* About Page Specific Styles */

.about-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    padding: 80px 0;
}

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

.story-image img {
    border-radius: 16px;
    box-shadow: 0 15px 50px var(--shadow-lg);
}

.story-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

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

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

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

.value-card p {
    color: var(--gray);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Choose Us About */
.why-choose-about {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
    padding-left: 4rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.feature-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.2;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

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

.team-note p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

/* Responsive */
@media (max-width: 968px) {
    .about-header h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .mv-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

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

    .feature-card {
        padding-left: 2rem;
    }

    .feature-number {
        left: 1rem;
        top: 1rem;
        font-size: 2rem;
    }
}
