/* ============================================
   PREMIUM ABOUT SECTION
   Modern Layout with Cards
============================================ */

.about-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Decoration */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 167, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

/* Left Content */
.about-intro-wrapper {
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 30px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin-top: 15px;
}

.about-lead {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.highlight-count {
    color: var(--primary-dark-blue);
    position: relative;
    display: inline-block;
}

.highlight-count::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 170, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
    max-width: 90%;
}

.about-description.secondary {
    font-size: 15px;
    margin-bottom: 40px;
}

.about-actions {
    display: flex;
    gap: 20px;
}

/* Right Cards */
.about-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-card:hover {
    transform: translateY(-10px) translateX(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 167, 225, 0.1);
}

.card-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mission .card-icon-wrapper {
    background: linear-gradient(135deg, #00d4aa 0%, #00a7e1 100%);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
}

.vision .card-icon-wrapper {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.card-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 8px;
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-lead {
        font-size: 24px;
    }

    .about-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-grid {
        gap: 36px;
    }

    .about-lead {
        font-size: 22px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-card {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
    }

    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}