/* ===================================
   ABOUT PAGE STYLES
   XFiat About Page - Modern & Professional
   =================================== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 120, 255, 0.1);
    border: 1px solid rgba(0, 120, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

[data-theme="dark"] .about-hero-section .hero-badge {
    background: rgba(0, 120, 255, 0.15);
    border-color: rgba(0, 120, 255, 0.3);
}

.about-hero-section .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-hero-section .hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.03), rgba(0, 210, 255, 0.03));
}

[data-theme="dark"] .mission-section {
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.05), rgba(0, 210, 255, 0.05));
}

.mission-content {
    padding: 60px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.mission-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
}

.problem-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 120, 255, 0.02));
}

[data-theme="dark"] .solution-section {
    background: linear-gradient(180deg, transparent, rgba(0, 120, 255, 0.05));
}

.solution-narrative {
    max-width: 1400px;
    margin: 0 auto;
}

.narrative-block {
    margin-bottom: 40px;
}

.narrative-block p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.narrative-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.narrative-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.narrative-column p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
    padding: 32px;
    background: rgba(255, 255, 255, 0.4);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

[data-theme="dark"] .narrative-column p {
    background: rgba(255, 255, 255, 0.03);
}

.narrative-column p:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 120, 255, 0.1);
}

[data-theme="dark"] .narrative-column p:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.05), rgba(0, 210, 255, 0.05));
}

[data-theme="dark"] .vision-section {
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.08), rgba(0, 210, 255, 0.08));
}

.vision-content {
    padding: 60px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.vision-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.vision-tagline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0 100px;
}

.cta-card {
    padding: 60px 48px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .about-hero-section .hero-title {
        font-size: 2rem;
    }

    .about-hero-section .hero-description {
        font-size: 1.125rem;
    }

    .mission-content,
    .vision-content,
    .solution-content,
    .cta-card {
        padding: 40px 24px;
    }

    .mission-title,
    .vision-title,
    .solution-title,
    .cta-title {
        font-size: 2rem;
    }

    .mission-text,
    .vision-text,
    .solution-text,
    .cta-description {
        font-size: 1.0625rem;
    }

    .narrative-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .narrative-block p {
        font-size: 1.0625rem;
        text-align: left;
    }

    .narrative-column p {
        padding: 24px;
        font-size: 1rem;
        text-align: left;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-section .hero-title {
        font-size: 1.75rem;
    }

    .mission-content,
    .vision-content,
    .solution-content {
        padding: 32px 20px;
    }

    .mission-title,
    .vision-title,
    .solution-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .narrative-block p {
        font-size: 1rem;
        text-align: left;
    }

    .narrative-column p {
        padding: 20px;
        font-size: 0.9375rem;
        text-align: left;
    }

    .solution-section,
    .impact-section,
    .why-choose-section,
    .problem-section {
        padding: 60px 0;
    }
}

/* Animation Enhancements */
.solution-feature,
.problem-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .about-hero-section,
    .about-cta-section {
        page-break-inside: avoid;
    }

    .hero-background,
    .cta-buttons {
        display: none;
    }
}
