/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--premium-green) 0%, var(--premium-green-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 1.875rem 1.875rem;
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 50rem;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Intro Section */
.about-intro {
    padding: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--premium-dark);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--premium-gray);
    margin-bottom: 1.5rem;
}

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

.stat-item-about {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 0.9375rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.1);
}

.stat-number-about {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-green);
    margin-bottom: 0.625rem;
}

.stat-label-about {
    color: var(--premium-gray);
    font-weight: 600;
}

.intro-image {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

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

/* Advantages Section */
.about-advantages .advantage-item.card {
    background: white;
    border: 2px solid var(--primary-peach, #FFCF9D) !important;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.about-advantages .advantage-item.shadow-sm {
    box-shadow: none !important;
}

.about-advantages .advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: none !important;
}

.about-advantages .advantage-item h3,
.about-advantages .advantage-item .card-title {
    color: var(--primary-blue, #0A2647) !important;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

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

.values-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--premium-dark);
}

.values-header p {
    font-size: 1.2rem;
    color: var(--premium-gray);
    max-width: 37.5rem;
    margin: 0 auto;
}

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

.value-card {
    background: white;
    padding: 2.5rem 1.875rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--premium-green), var(--premium-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

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

.value-icon {
    width: 5rem;
    height: 5rem;
    background: var(--premium-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5625rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--premium-gold);
    color: var(--premium-dark);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
    color: var(--premium-dark);
}

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

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--premium-cream);
}

.team-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.team-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--premium-dark);
}

.team-header p {
    font-size: 1.2rem;
    color: var(--premium-gray);
    max-width: 37.5rem;
    margin: 0 auto;
}

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

.team-member {
    background: white;
    padding: 2.5rem 1.875rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    margin: 0 auto 1.5625rem;
    overflow: hidden;
    border: 0.25rem solid var(--premium-green);
    position: relative;
}

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

.member-name {
    font-size: 1.4rem;
    margin-bottom: 0.625rem;
    color: var(--premium-dark);
    font-weight: 600;
}

.member-role {
    color: var(--premium-green);
    font-weight: 600;
    margin-bottom: 0.9375rem;
    font-size: 1.1rem;
}

.member-bio {
    color: var(--premium-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

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

.social-link-about {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--premium-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-about:hover {
    background: var(--premium-gold);
    color: var(--premium-dark);
    transform: translateY(-0.125rem);
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--premium-dark);
}

.timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.125rem;
    background: var(--premium-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3.125rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.875rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
    margin: 0 1.875rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -0.9375rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0.9375rem solid transparent;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -0.9375rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0.9375rem solid transparent;
    border-right-color: white;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--premium-green);
    margin-bottom: 0.625rem;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 0.625rem;
    color: var(--premium-dark);
}

.timeline-description {
    color: var(--premium-gray);
    line-height: 1.6;
}

.timeline-dot {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--premium-green);
    border-radius: 50%;
    border: 0.25rem solid white;
    box-shadow: 0 0 0 0.25rem var(--premium-green);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 1.25rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline-content {
        margin: 0 0 0 3.125rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -0.9375rem;
        border-left-color: transparent;
        border-right-color: white;
    }
    
    .timeline-dot {
        left: 1.25rem;
    }
}