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

/* ===== ABOUT HERO ===== */
.about-hero {
    padding: 8rem 2rem 5rem;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(249, 115, 22, 0.05)),
        var(--light-gray);
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.4rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 5rem 2rem;
    background: white;
}

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

.story-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--darker-text);
}

.story-content p {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.highlight-text {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    width: calc(50% - 4rem);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    z-index: 1;
}

.timeline-date {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--darker-text);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.7;
}

/* ===== VISION & MISSION ===== */
.vision-mission {
    padding: 5rem 2rem;
    background: white;
}

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

.vision-card,
.mission-card {
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, var(--orange), #FF6B35);
    color: white;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveGrid 15s linear infinite;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 60px rgba(0, 102, 255, 0.2);
}

.vision-card h2,
.mission-card h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
}

.vision-card p,
.mission-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.95;
    position: relative;
}

.vision-icon,
.mission-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.9;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
    border-top-color: var(--cyan);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--darker-text);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* ===== TEAM CTA ===== */
.team-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--darker-text), var(--deep-blue));
    color: white;
    text-align: center;
}

.team-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.team-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-icon {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .team-cta h2 {
        font-size: 2rem;
    }
}
