/* ===================================
   ABOUT PAGE CUSTOM STYLES (about.css)
   Akaal Advisory - aa- prefix classes
   =================================== */

/* ========== MISSION & VISION SECTION ========== */
.aa-mission-vision-section {
    overflow: hidden;
    padding-bottom: 60px;
}

.aa-mission-content {
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #1e97ac;
}

.aa-vision-light {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #1e97ac;
}

.aa-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1e97ac;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aa-subtitle img {
    width: 20px;
    height: 20px;
    margin: 0 8px;
}

.aa-title {
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.aa-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 0;
    letter-spacing: 1px;
}



.aa-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e97ac 0%, #FF8555 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.aa-feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.aa-feature-content {
    flex-grow: 1;
}

.aa-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.aa-feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}



/* ========== WHY CHOOSE SECTION ========== */
.aa-why-section {
    padding: 80px 0;
}

.aa-why-header {
    margin-bottom: 50px;
}

.aa-why-grid {
    display: grid;
    gap: 30px;
    margin: 0 -15px;
}

.aa-why-grid > div {
    padding: 0 15px;
}

.aa-why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aa-why-card:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.aa-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



.aa-card-icon {
    width: 60px;
    height: 60px;
    background: #FFF4EF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.aa-card-icon img {
    width: 35px;
    height: 35px;
}

.aa-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.aa-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    letter-spacing: 1px;
}

/* ========== ACHIEVEMENTS SECTION ========== */
.aa-achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #f9f1ff 100%);
    border-radius: 0;
}

.aa-achievements-header {
    margin-bottom: 50px;
}

.aa-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.aa-achievement-counter {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.aa-achievement-counter:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.aa-counter-number {
    font-size: 42px;
    font-weight: 700;
    color: #1e97ac;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.aa-counter-label {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .aa-mission-vision-section {
        padding: 50px 0;
    }

    .aa-why-section {
        padding: 60px 0;
    }

    .aa-achievements-section {
        padding: 60px 0;
    }

    .aa-title {
        font-size: 32px;
    }

    .aa-vision-light {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .aa-mission-vision-section {
        padding: 40px 0;
    }

    .aa-why-section,
    .aa-achievements-section {
        padding: 50px 0;
    }

    .aa-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .aa-subtitle {
        font-size: 12px;
    }

    .aa-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .aa-mission-item,
    .aa-vision-item {
        margin-bottom: 20px;
    }

    .aa-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .aa-feature-icon img {
        width: 25px;
        height: 25px;
    }

    .aa-feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .aa-feature-text {
        font-size: 14px;
    }

    .aa-vision-light {
        padding: 25px;
        margin-bottom: 25px;
    }

    .aa-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .aa-card-icon img {
        width: 30px;
        height: 30px;
    }

    .aa-card-title {
        font-size: 18px;
    }

    .aa-counter-number {
        font-size: 36px;
    }

    .aa-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .aa-mission-vision-section,
    .aa-why-section,
    .aa-achievements-section {
        padding: 30px 0;
    }

    .aa-title {
        font-size: 24px;
    }

    .aa-vision-light {
        padding: 20px;
        margin-bottom: 20px;
    }

    .aa-why-header,
    .aa-achievements-header {
        margin-bottom: 30px;
    }

    .aa-achievement-counter {
        padding: 20px;
    }

    .aa-why-grid > div {
        padding: 0;
    }

    .aa-achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .aa-counter-number {
        font-size: 32px;
    }

    .aa-counter-label {
        font-size: 14px;
    }
}

/* ========== UTILITY CLASSES ========== */
.aa-mission-section .row {
    align-items: center;
}

.aa-vision-section .row {
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aa-why-card {
    animation: fadeInUp 0.6s ease-out;
}

.aa-achievement-counter {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== COUNTER ANIMATION ========== */
.counter-number {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.aa-why-card,
.aa-achievement-counter {
    transition: all 0.3s ease !important;
}
