/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #87CEEB 0%, #ffffff 50%, #B0E0E6 100%);
    position: relative;
    overflow: hidden;
}

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

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #1e90ff, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Floating Elements Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-book,
.floating-video,
.floating-brain {
    position: absolute;
    font-size: 3rem;
    color: rgba(30, 144, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-book {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-video {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-brain {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-description {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Animated Statistics */
.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #1e90ff;
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mission Visual */
.visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 300px;
}

.book-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.book {
    width: 80px;
    height: 100px;
    border-radius: 4px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    animation: bookStack 3s ease-in-out infinite;
}

.book-1 { animation-delay: 0s; }
.book-2 { animation-delay: 0.5s; }
.book-3 { animation-delay: 1s; }

@keyframes bookStack {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.transformation-arrow {
    font-size: 2rem;
    color: #1e90ff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.video-screen {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1e90ff;
    animation: videoGlow 3s ease-in-out infinite;
}

.video-screen i {
    color: #1e90ff;
    font-size: 1.5rem;
}

@keyframes videoGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 144, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(30, 144, 255, 0.6); }
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.2);
    border-color: #1e90ff;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

/* About Content Sections */
.about-content {
    background: #ffffff;
}

.about-section {
    padding: 4rem 0;
}

.intro-section {
    background: #ffffff;
}

.why-section {
    background: #f8f9fa;
}

.building-section {
    background: #ffffff;
}

.creators-section {
    background: #f8f9fa;
}

.about-text,
.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.body-text {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
    margin: 2rem 0;
}

.highlight-text {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.quote-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text {
    font-size: 1.3rem;
    color: #1e90ff;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(30, 144, 255, 0.15);
    border-color: #1e90ff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666666;
    font-size: 0.9rem;
}

/* Building Section Styles */
.building-content {
    max-width: 900px;
    margin: 0 auto;
}

.building-list {
    display: grid;
    gap: 2rem;
}

.building-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.building-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(30, 144, 255, 0.15);
    border-color: #1e90ff;
}

.building-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.building-item p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Creators Section Styles */
.creators-content {
    max-width: 900px;
    margin: 0 auto;
}

.roles-section {
    margin: 3rem 0;
}

.roles-intro {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.role-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(30, 144, 255, 0.15);
    border-color: #1e90ff;
}

.role-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.role-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.roles-outro {
    font-size: 1.2rem;
    color: #1e90ff;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.final-message {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
    margin-top: 3rem;
}

.final-message .body-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
}

.section-header .section-title i {
    color: #1e90ff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e90ff, #87CEEB);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .visual-container {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 40px;
    }
    

}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
} 