/* About Page Specific Styles */

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    top: -100px;
    left: -100px;
}

.hero-glow-2 {
    bottom: -100px;
    right: -100px;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-hero-content {
    max-width: 600px;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 24px;
}

.about-hero-title {
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.about-hero-image {
    position: relative;
}

.image-wrapper {
    padding: 8px;
    border-radius: var(--radius-2xl);
}

.image-wrapper::before {
    display: none;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    opacity: 0.9;
}

.image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    padding: 24px;
    border-radius: var(--radius-xl);
}

.image-badge::before {
    display: none;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
    background: var(--surface-container-low);
}

.leadership-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .leadership-card {
        grid-template-columns: 5fr 7fr;
        gap: 64px;
    }
}

.leader-image-wrapper {
    position: relative;
}

.leader-image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), transparent);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    border-radius: var(--radius-2xl);
}

.leader-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.leader-content h2 {
    margin-bottom: 24px;
}

.leader-title {
    margin-bottom: 24px;
}

.leader-title h3 {
    margin-bottom: 8px;
}

.leader-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.leader-stat {
    padding: 16px;
    padding-left: 20px;
    border-left: 2px solid var(--primary-container);
    background: rgba(0, 240, 255, 0.05);
}

.leader-stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--on-background);
    margin-bottom: 4px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-gutter);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card-highlight {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon .material-symbols-outlined {
    font-size: 32px;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background: var(--surface-container-lowest);
}

.evolution-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-container), transparent);
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .timeline-connector {
        display: block;
    }
}

.timeline-entry {
    position: relative;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .timeline-entry {
        display: flex;
        align-items: flex-start;
        margin-bottom: 48px;
    }
    
    .timeline-entry-left {
        flex-direction: row;
        justify-content: flex-end;
        padding-right: calc(50% + 32px);
    }
    
    .timeline-entry-right {
        flex-direction: row-reverse;
        justify-content: flex-end;
        padding-left: calc(50% + 32px);
    }
}

.timeline-date {
    margin-bottom: 12px;
}

.timeline-entry-left .timeline-date {
    text-align: right;
}

.timeline-entry-right .timeline-date {
    text-align: left;
}

.timeline-content {
    padding: 24px;
    border-radius: var(--radius-xl);
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-container);
    border: 4px solid var(--surface-container-lowest);
    display: none;
}

@media (min-width: 768px) {
    .timeline-dot {
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
    background: var(--background);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr 2fr;
        gap: 64px;
        align-items: start;
    }
}

.approach-sidebar {
    position: sticky;
    top: 120px;
}

.approach-badge {
    padding: 24px;
    border-radius: var(--radius-xl);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-step {
    padding: 40px;
    border-radius: var(--radius-2xl);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: color var(--transition-base);
    flex-shrink: 0;
}

.approach-step:hover .step-number {
    color: rgba(0, 240, 255, 0.2);
}

.step-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-content h3 .material-symbols-outlined {
    font-size: 24px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--surface-container);
}

.cta-card {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 48px;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 80px;
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-button {
    margin-top: 32px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .leader-stats {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        font-size: 48px;
    }
}
