/* ==========================================================================
   About Us Page
   ========================================================================== */

/* Hero */
.about-hero {
    padding: 80px 0;
    text-align: center;
}
.about-page-title {
    margin-bottom: 20px;
    font-size: 42px;
}
.about-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats */
.about-stats-section {
    padding: 40px 0;
    background: var(--color-primary);
    color: #fff;
}
.about-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.about-stat-item {
    text-align: center;
}
.about-stat-val {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History / Text block */
.about-history-section {
    padding: 80px 0;
    background: var(--color-light);
}
.about-history-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-history-container:not(.has-image) .about-history-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about-history-content {
    flex: 1;
}
.about-history-title {
    margin-bottom: 30px;
    font-size: 32px;
}
.about-history-text-body {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}
.about-history-text-body p {
    margin-bottom: 20px;
}
.about-history-text-body p:last-child {
    margin-bottom: 0;
}
.about-history-image {
    flex: 1;
}
.about-history-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Features */
.about-features-section {
    padding: 80px 0;
}
.about-features-maintitle {
    margin-bottom: 50px;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.about-feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}
.about-feature-card:hover {
    transform: translateY(-8px);
}
.about-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
}
.about-feature-icon svg {
    width: 32px;
    height: 32px;
}
.about-feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-dark);
}
.about-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-history-container {
        flex-direction: column;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .about-stats-grid {
        flex-direction: column;
        align-items: center;
    }
    .about-stat-item {
        margin-bottom: 20px;
    }
    .about-stat-item:last-child {
        margin-bottom: 0;
    }
}
