/* About Page Specific Styles */

/* About Hero */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-primary);
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.about-hero .hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.value-icon {
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s;
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.value-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    max-width: 600px;
}

.story-content .section-title {
    margin-bottom: 32px;
}

.story-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Timeline Visual */
.timeline-visual {
    position: relative;
    padding-left: 40px;
}

.timeline-visual::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #667eea, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.timeline-year {
    position: absolute;
    left: -80px;
    top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #667eea;
    transform: scale(1.1);
}

.member-info {
    padding: 0 20px;
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 12px;
}

.member-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.team-stats .stat-item {
    text-align: center;
}

.team-stats .stat-number {
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.team-stats .stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.tech-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.tech-screen {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s;
}

.tech-showcase:hover .tech-screen {
    transform: perspective(1000px) rotateY(0deg);
}

.screen-header {
    background: #2a2a2a;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
}

.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28ca42; }

.screen-title {
    color: #999;
    font-size: 14px;
}

.screen-content {
    padding: 40px;
    background: #0a0a0a;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.metric-widget h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.mini-chart {
    height: 80px;
    background: linear-gradient(to right, #667eea, #764ba2);
    opacity: 0.3;
    border-radius: 8px;
}

/* Tech Features */
.tech-features {
    display: grid;
    gap: 32px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tech-feature .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

.tech-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-feature p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.award-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s;
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.award-icon {
    margin-bottom: 24px;
}

.award-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.award-item p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.culture-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.gallery-main {
    grid-row: span 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.main-image {
    height: 100%;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Culture Benefits */
.culture-benefits {
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.culture-benefits h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 24px;
}

/* Join CTA Section */
.join-cta-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.join-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.join-cta-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.join-cta-section .cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.join-cta-section .cta-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero .hero-title {
        font-size: 48px;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-screen {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .about-hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-title {
        font-size: 36px;
    }
    
    .about-hero .hero-subtitle {
        font-size: 18px;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Timeline */
    .timeline-visual {
        padding-left: 20px;
    }
    
    .timeline-year {
        position: static;
        margin-bottom: 8px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Awards */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Culture */
    .culture-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-main {
        grid-row: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .join-cta-section .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .story-text {
        font-size: 16px;
    }
    
    .team-member .image-placeholder {
        height: 250px;
        font-size: 36px;
    }
    
    .culture-benefits {
        padding: 40px 20px;
    }
    
    .culture-benefits h3 {
        font-size: 24px;
    }
    
    .benefit-item {
        font-size: 14px;
    }
}

/* Animations */
.value-card,
.timeline-item,
.team-member,
.award-item,
.gallery-image {
    opacity: 0;
    transform: translateY(30px);
}

.value-card.aos-animate,
.timeline-item.aos-animate,
.team-member.aos-animate,
.award-item.aos-animate,
.gallery-image.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.section-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .about-hero,
    .join-cta-section,
    .scroll-indicator {
        display: none;
    }
    
    .values-section,
    .story-section,
    .team-section,
    .technology-section,
    .awards-section,
    .culture-section {
        page-break-inside: avoid;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title,
    .gradient-text {
        color: #000;
        -webkit-text-fill-color: #000;
    }
}