/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
    min-height: 90vh;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary), rgba(255, 230, 109, 0.1));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-warm);
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.pattern-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.pattern-circle:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    background: var(--gradient-cool);
    animation-delay: 3s;
}

.pattern-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 30%;
    background: var(--gradient-bright);
    animation-delay: 6s;
}

.pattern-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.08;
    animation: rotate 15s linear infinite;
}

.pattern-triangle:nth-child(4) {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--accent-coral);
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.pattern-triangle:nth-child(5) {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--accent-violet);
    bottom: 30%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.stat-item:nth-child(2) {
    transform: rotate(2deg);
    margin-left: 2rem;
}

.stat-item:nth-child(3) {
    transform: rotate(-1deg);
    margin-left: 1rem;
}

.stat-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: var(--shadow-bold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(2) .stat-number {
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(3) .stat-number {
    background: var(--gradient-bright);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--text-primary);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
}

/* Story Section */
.story-section {
    padding: 8rem 2rem;
    background: linear-gradient(45deg, rgba(106, 76, 147, 0.03), rgba(255, 111, 97, 0.05));
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-timeline {
    position: relative;
    margin-top: 4rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-warm);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.timeline-year {
    flex: 0 0 100px;
    background: var(--gradient-cool);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: var(--shadow-soft);
}

.timeline-item:nth-child(even) .timeline-year {
    background: var(--gradient-warm);
}

.timeline-item:nth-child(3n) .timeline-year {
    background: var(--gradient-bright);
    color: var(--text-primary);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
}

/* Team Section */
.team-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-member {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-warm);
}

.team-member:nth-child(2)::before {
    background: var(--gradient-cool);
}

.team-member:nth-child(3)::before {
    background: var(--gradient-bright);
}

.team-member:nth-child(4)::before {
    background: var(--gradient-warm);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
}

.member-photo {
    position: relative;
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-member:nth-child(2) .photo-placeholder {
    background: var(--gradient-cool);
}

.team-member:nth-child(3) .photo-placeholder {
    background: var(--gradient-bright);
    color: var(--text-primary);
}

.team-member:nth-child(4) .photo-placeholder {
    background: var(--gradient-warm);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

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

.member-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    color: var(--accent-yellow);
    transform: scale(1.2);
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
}

.team-member:nth-child(2) .member-role {
    color: var(--accent-violet);
}

.team-member:nth-child(3) .member-role {
    color: var(--accent-violet);
}

.team-member:nth-child(4) .member-role {
    color: var(--accent-coral);
}

.member-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
}

/* Values Section */
.values-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.05), rgba(106, 76, 147, 0.08));
}

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

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

.value-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    overflow: hidden;
}

.value-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-warm);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.value-card:nth-child(2)::before {
    background: var(--gradient-cool);
}

.value-card:nth-child(3)::before {
    background: var(--gradient-bright);
}

.value-card:nth-child(4)::before {
    background: var(--gradient-warm);
}

.value-card:hover::before {
    opacity: 0.05;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.value-card:nth-child(2) .value-icon {
    background: var(--gradient-cool);
}

.value-card:nth-child(3) .value-icon {
    background: var(--gradient-bright);
    color: var(--text-primary);
}

.value-card:nth-child(4) .value-icon {
    background: var(--gradient-warm);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Awards Section */
.awards-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.award-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.award-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-bold);
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.award-item:nth-child(2)::before {
    background: var(--gradient-cool);
}

.award-item:nth-child(3)::before {
    background: var(--gradient-bright);
}

.award-item:nth-child(4)::before {
    background: var(--gradient-cool);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.award-org {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.6;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        margin: 0;
        transform: none;
        flex: 1;
        min-width: 150px;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 4rem;
    }
    
    .timeline-year {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 6rem 1rem 2rem;
    }
    
    .story-section,
    .team-section,
    .values-section,
    .awards-section {
        padding: 4rem 1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
}