/* =============================================
   ABOUT SECTION - ENHANCED DESIGN
   Matching Hero & Programs Aesthetics
   ============================================= */

/* SECTION CONTAINER */
.about-section {
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* =============================================
   DYNAMIC BACKGROUND
   ============================================= */

.about-dynamic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(255,68,0,0.08) 0%, transparent 70%);
    opacity: 0.7;
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        linear-gradient(180deg, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(0deg, var(--bg-dark) 0%, transparent 15%),
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

/* SECTION HEADER */
.about-section .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 70px;
}

.about-section .section-header h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.about-section .section-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    font-weight: 500;
}

/* =============================================
   ABOUT WRAPPER - GRID LAYOUT
   ============================================= */

.about-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   MAIN CONTENT CARD
   ============================================= */

.about-main-card {
    opacity: 0;
    transform: translateY(40px);
}

.about-main-card.reveal {
    animation: revealCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.about-card-inner {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.about-card-inner:hover {
    border-color: rgba(255, 68, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}

/* Icon Header */
.about-icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.3);
    flex-shrink: 0;
}

.about-icon-circle i {
    font-size: 32px;
    color: var(--text-white);
}

.about-icon-header h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--text-white);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Text Content */
.about-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-card-inner p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-card-inner p:last-of-type {
    margin-bottom: 35px;
}

/* =============================================
   FEATURES LIST
   ============================================= */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 68, 0, 0.05);
    border: 1px solid rgba(255, 68, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(255, 68, 0, 0.1);
    border-color: rgba(255, 68, 0, 0.3);
    transform: translateX(10px);
}

.about-feature-item > i {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.about-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 5px 0;
}

.about-feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* =============================================
   STATS GRID
   ============================================= */

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    opacity: 0;
    transform: translateY(40px);
}

.stat-card.reveal {
    animation: revealCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stat-card:nth-child(1).reveal { animation-delay: 0.2s; }
.stat-card:nth-child(2).reveal { animation-delay: 0.3s; }
.stat-card:nth-child(3).reveal { animation-delay: 0.4s; }
.stat-card:nth-child(4).reveal { animation-delay: 0.5s; }

.stat-card-inner {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-card-inner {
    border-color: rgba(255, 68, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-card:hover .stat-card-inner::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: rgba(255, 68, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: var(--text-white);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */

@media (max-width: 1024px) {
    .about-section {
        padding: 100px 0 80px;
    }
    
    .about-wrapper {
        gap: 35px;
    }
    
    .about-card-inner {
        padding: 35px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 60px;
    }
    
    .about-section .section-header {
        margin-bottom: 50px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-card-inner {
        padding: 30px 25px;
    }
    
    .about-icon-header {
        flex-direction: column;
        text-align: center;
    }
    
    .about-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .about-icon-circle i {
        font-size: 28px;
    }
    
    .about-lead {
        font-size: 16px;
    }
    
    .about-card-inner p {
        font-size: 15px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .about-feature-item {
        padding: 18px;
    }
    
    .about-feature-item > i {
        font-size: 24px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card-inner {
        padding: 25px 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE
   ============================================= */

@media (max-width: 480px) {
    .about-section {
        padding: 70px 0 50px;
    }
    
    .about-card-inner {
        padding: 25px 20px;
    }
    
    .about-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .about-icon-circle i {
        font-size: 24px;
    }
    
    .about-lead {
        font-size: 15px;
    }
    
    .about-card-inner p {
        font-size: 14px;
    }
    
    .about-feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-item:hover {
        transform: translateY(-5px) !important;
    }
    
    .about-feature-text h4 {
        font-size: 15px;
    }
    
    .about-feature-text p {
        font-size: 13px;
    }
    
    .stat-card-inner {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}