/* ================================
   ABOUT PAGE - MODERN DESIGN
   ================================ */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    text-align: center;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero .hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-hero .hero-description {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-year {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    line-height: 1;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-content {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 0 8px var(--white);
}

.timeline-icon i {
    font-size: 32px;
    color: var(--white);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Mission Vision Values */
.mvv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mvv-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--duration-normal) var(--ease-smooth);
    cursor: pointer;
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mvv-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.mvv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.mvv-card:hover .mvv-image img {
    transform: scale(1.1);
}

.mvv-content {
    padding: 32px;
    text-align: center;
}

.mvv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(237, 28, 36, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -56px auto 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.2);
    background: var(--white);
    border: 4px solid var(--white);
}

.mvv-icon i {
    font-size: 32px;
    color: var(--primary);
}

.mvv-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.mvv-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.quote-content blockquote {
    margin: 0;
}

.quote-content p {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-content cite {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-style: normal;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0049 0%, #1a0a5e 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.stat-card .stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.stat-card .stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* CTA Outline White Button */
.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        direction: ltr !important;
        padding-left: 0;
    }
    
    .timeline-year {
        text-align: left !important;
        font-size: 48px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }
    
    .timeline-section,
    .mvv-section,
    .quote-section,
    .services-overview,
    .stats-section {
        padding: 60px 0;
    }
    
    .mvv-grid,
    .services-grid,
    .stats-grid {
        margin-top: 40px;
    }
    
    .timeline-item {
        margin-bottom: 60px;
        padding-left: 0;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .mvv-image {
        height: 200px;
    }
    
    .quote-icon {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .timeline {
        padding: 0;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-year {
        font-size: 36px;
    }
    
    .mvv-content,
    .service-card {
        padding: 24px;
    }
    
    .stat-card {
        padding: 32px 16px;
    }
}