/* ============================================
   ABOUT PAGE - CREATIVE STYLES
   Modern, Animated, Professional
   ============================================ */

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: transparent;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 179, 227, 0.2));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 179, 227, 0.3), rgba(42, 123, 155, 0.2));
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(42, 123, 155, 0.4), rgba(37, 99, 235, 0.2));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 179, 227, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
    color: var(--text-primary);
    padding: 0.25rem;
}

.title-line.gradient-text {
    background: linear-gradient(135deg, #2a7b9b 0%, #3bb3e3 50%, #165770 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2a7b9b, #3bb3e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STORY SECTION ===== */
.about-story-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 179, 227, 0.1));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.story-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Story Visual */
.story-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.visual-card.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    z-index: 3;
}

.visual-card.card-2 {
    bottom: 50px;
    left: 20px;
    width: 140px;
    height: 140px;
    z-index: 2;
}

.visual-card.card-3 {
    bottom: 30px;
    right: 20px;
    width: 140px;
    height: 140px;
    z-index: 2;
}

.big-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2a7b9b, #3bb3e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.section-header-creative {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-creative h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.section-header-creative p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2a7b9b, #3bb3e3);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a7b9b, #3bb3e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(42, 123, 155, 0.3);
}

.timeline-year {
    color: white;
    font-weight: 800;
    font-size: 1rem;
}

.timeline-content {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    margin-right: 60px;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 60px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

/* ===== DARK THEME ADJUSTMENTS ===== */
[data-theme="dark"] .about-hero {
    background: transparent;
}

[data-theme="dark"] .floating-orb {
    opacity: 0.3;
}

[data-theme="dark"] .visual-card {
    background: var(--bg-secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .timeline-content {
    background: var(--bg-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .story-feature {
    background: var(--bg-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        height: 300px;
        order: -1;
    }
    
    .visual-card.card-1 {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .visual-card.card-2 {
        left: 10%;
    }
    
    .visual-card.card-3 {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-visual {
        height: 250px;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .visual-card.card-1 {
        width: 120px;
        height: 120px;
    }
    
    .visual-card.card-2,
    .visual-card.card-3 {
        width: 110px;
        height: 110px;
    }
    
    .big-num {
        font-size: 1.8rem;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-marker {
        left: 20px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-year {
        font-size: 0.85rem;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .section-header-creative h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-features {
        flex-direction: column;
    }
    
    .story-feature {
        justify-content: center;
    }
}
