/* ============================================
   ABOUT PAGE - COMPLETE STYLES
   ============================================ */

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.2);
    color: #5dcf78;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-title span {
    color: #5dcf78;
    position: relative;
}

.about-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5dcf78, #40a836);
    border-radius: 2px;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #5dcf78;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.about-story {
    background: #ffffff;
    padding: 80px 0;
}

.about-story .section-badge {
    display: inline-block;
    background: #1a237e;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-story .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 25px;
}

.about-story .section-title span {
    color: #28a745;
}

.story-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.story-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.02);
}

.story-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-left: 4px solid #28a745;
}

.story-image-badge i {
    color: #28a745;
    font-size: 1.2rem;
}

/* ============================================
   MISSION, VISION, VALUES CARDS
   ============================================ */
.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-badge {
    display: inline-block;
    background: #1a237e;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.section-header .section-title span {
    color: #28a745;
}

.section-header .section-subtitle {
    color: #6c7a8a;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.mv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px 40px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mission-card .mv-icon {
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.values-card .mv-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 12px;
}

.mv-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li i {
    color: #28a745;
    font-size: 1rem;
    min-width: 20px;
}

.mv-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover .mv-border {
    transform: scaleX(1);
}

/* ============================================
   ABOUT CTA HERO
   ============================================ */
.about-cta-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.05), transparent);
    border-radius: 50%;
}

.cta-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.15);
    color: #5dcf78;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-title span {
    color: #5dcf78;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background: #ffffff;
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #28a745, #20c997);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    right: -8px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #28a745;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #28a745;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-social a:nth-child(2) { transition-delay: 0.1s; }
.team-social a:nth-child(3) { transition-delay: 0.2s; }

.team-social a:hover {
    background: #28a745;
    color: #ffffff;
    transform: translateY(-3px);
}

.team-info {
    padding: 20px 25px 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 2px;
}

.team-info span {
    display: block;
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-info p {
    color: #6c7a8a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .about-story .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        right: auto;
        left: 12px;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-story .section-title {
        font-size: 1.7rem;
    }
    
    .story-text {
        font-size: 0.9rem;
    }
    
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .mv-card {
        padding: 25px 20px 30px;
    }
    
    .mv-card h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .team-image {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .about-story .section-title {
        font-size: 1.4rem;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.85rem;
    }
    
    .team-info h4 {
        font-size: 1rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .mv-card,
    .timeline-content,
    .team-card,
    .story-image,
    .team-image img,
    .team-overlay,
    .team-social a {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .mv-card:hover {
        transform: none !important;
    }
    
    .team-card:hover {
        transform: none !important;
    }
    
    .team-card:hover .team-image img {
        transform: none !important;
    }
    
    .team-card:hover .team-overlay {
        opacity: 1 !important;
    }
    
    .mv-border {
        transform: scaleX(1) !important;
    }
}