/* About Us Page Styles */

/* Page-level about styles */
.about-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    font-family: 'JetBrains Mono', monospace;
}

.about-page h1, .about-page h2, .about-page h3, .about-page h4, .about-page h5, .about-page h6 {
    font-family: 'Orbitron', monospace;
}

/* Enhanced gradient effects for about theme */
.about-gradient-text {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* About Hero Section */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.about-badge .badge-icon {
    font-size: 1.2rem;
}

.about-badge .badge-text {
    font-weight: 600;
    color: #4f46e5;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.greeting-text-bold {
    color: #1e293b;
    font-weight: 700;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 90%;
}

/* About Stats */
.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4f46e5;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Our Story Section */
.about-story {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Timeline */
.story-visual {
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4f46e5, #7c3aed);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #4f46e5;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #4f46e5;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4f46e5;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Mission Section */
.about-mission {
    padding: 3rem 0;
    background: #f8fafc;
}

.about-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mission-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-description {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.value-item {
    font-size: 0.9rem;
    color: #4f46e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Advantages Section */
.about-advantages {
    padding: 3rem 0;
    background: #ffffff;
}

.about-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.advantages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.advantages-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.advantage-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.advantage-item:hover {
    border-color: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.advantage-description {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Location Section */
.about-location {
    padding: 3rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: stretch;
    justify-content: space-between;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 50%;
}

.location-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: bold;
    color: #1e293b;
}

.location-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.2rem;
    color: #4f46e5;
    width: 24px;
    text-align: center;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

/* Location Visual - Simplified */
.location-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    padding-left: 2rem;
}

.location-highlight {
    background: #ffffff !important;
    border: 2px solid #4f46e5 !important;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15) !important;
    width: 100%;
    max-width: 280px;
}

.location-highlight .location-icon {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
    display: block;
}

.location-highlight .location-city {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.location-highlight .location-country {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.location-highlight .location-tagline {
    font-size: 0.9rem;
    color: #4f46e5;
    font-weight: 600;
    margin-top: 0.5rem;
}

.coverage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.coverage-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4f46e5;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Section */
.about-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    margin: 0;
    color: #e2e8f0;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #cbd5e1;
    border-color: #475569;
}

.cta-button.secondary:hover {
    background: #475569;
    color: white;
    transform: translateY(-2px);
}

.cta-button .cta-icon {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-container,
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .location-info,
    .location-visual {
        max-width: 100%;
    }

    .location-visual {
        padding-left: 0;
    }
    
    .about-hero {
        padding-top: 60px;
        text-align: center;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -0.25rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-container,
    .about-story-container,
    .about-mission-container,
    .about-advantages-container,
    .about-location-container,
    .about-cta-container {
        padding: 0 1rem;
    }
    
    
    .mission-card,
    .advantage-item {
        padding: 1.5rem;
    }
}