/* About Page Specific Styles */

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--warm-gray) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, var(--blue-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--orange-soft) 0%, transparent 50%);
    opacity: 0.4;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

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

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content .highlight {
    font-size: 1.4rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-visual {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px var(--gentle-shadow);
}

.story-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 16px;
}

.story-visual-content {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.story-visual h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-visual p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 6rem 2rem;
    background: var(--warm-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px 16px 0 0;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
}

.mvv-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.mvv-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Our Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

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

.approach-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    border-left: 4px solid var(--primary-orange);
}

.approach-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.approach-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: var(--warm-gray);
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--gentle-shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.team-bio {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-credentials {
    list-style: none;
}

.team-credentials li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1rem;
}

.team-credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--orange-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.choose-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.choose-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        height: 300px;
    }

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

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

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

@media (max-width: 480px) {
    .page-header,
    .our-story,
    .mvv-section,
    .approach-section,
    .team-section,
    .why-choose {
        padding: 4rem 1rem;
    }

    .mvv-card,
    .team-content {
        padding: 2rem;
    }
}
