/* About Page Specific Styles */

/* About Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.about-hero .hero-title {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story */
.our-story {
    padding: 80px 0;
}

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

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.mission-content {
    text-align: center;
}

.mission-text {
    margin-bottom: 4rem;
}

.mission-statement {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    font-weight: 500;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 280px;
}

.value-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.value-card h3 {
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.2;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    margin-top: 40px;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-light);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

.member-bio {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Recognition */
.recognition {
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.award-icon {
    margin-bottom: 1.5rem;
}

.award-item h4 {
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--text-light);
    margin: 0;
}

/* Join Team */
.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #0052CC);
    color: white;
    text-align: center;
}

.join-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.join-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.join-team .btn-primary {
    background: white;
    color: var(--primary-color);
}

.join-team .btn-primary:hover {
    background: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

