/* MAIN */
#about-main {
    min-height: unset !important;
    padding: 100px 60px 80px;
    box-sizing: border-box;
}

#about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* TITLE */
#about-title {
    font-family: Inter-Bold;
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 8px;
}

/* STATS CARD */
#about-stats-card {
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 36px 32px;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

#about-stats-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0,128,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex: 1 1 120px;
    position: relative;
    z-index: 1;
}

.about-stat-item img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.about-stat-item span {
    font-family: Inter-SemiBold;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.3;
}

.about-stat-divider {
    width: 1px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* CONTENT CARDS */
#about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.about-card-tag {
    font-family: Inter-SemiBold;
    font-size: 0.72rem;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.about-card-title {
    font-family: Inter-Bold;
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.4;
}

.about-card p {
    font-family: Inter-Regular;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.7;
}

.about-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-services-list li {
    font-family: Inter-Regular;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.75;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.about-services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1e3a5f;
    opacity: 0.6;
    font-size: 0.8rem;
}

.about-card-divider {
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
    margin: 8px 0;
}

.about-map-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: Inter-SemiBold;
    font-size: 0.85rem;
    color: #1e3a5f;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.about-map-btn:hover {
    opacity: 0.65;
}

/*---------- RESPONSIVE ----------*/

@media (max-width: 992px) {
    #about-cards {
        grid-template-columns: 1fr;
    }

    .about-stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    #about-main {
        padding: 90px 24px 60px;
    }

    #about-title {
        font-size: 2rem;
    }

    #about-stats-card {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    #about-main {
        padding: 80px 16px 48px;
    }
}
