/* ================== About Hero ================== */
.about-hero {
    background-image:
        linear-gradient(to right, rgba(9, 64, 114, 0.95) 0%, rgba(9, 64, 114, 0.75) 60%, rgba(9, 64, 114, 0.35) 100%),
        url('../assets/about-us/about-us-background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* ================== Our Story Image ================== */
.about-img-wrap {
    padding-bottom: 20px;
    padding-right: 20px;
}

.about-img-accent {
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.12;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.about-badge {
    bottom: 10px;
    left: -10px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(9, 64, 114, 0.4);
    z-index: 2;
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    line-height: 1.4;
}

/* ================== Stats ================== */
.about-stats-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.about-stat-card {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-5px);
}

.about-stat-icon {
    font-size: 1.8rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

/* ================== Core Values ================== */
.value-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

/* ================== Locations ================== */
.location-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.3s ease;
}

.location-badge {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-badge-sales {
    background-color: #0d6efd;
}

.location-detail-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 2px;
}

.map-wrap {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-wrap iframe {
    display: block;
}

/* ================== CTA Banner ================== */
.about-cta {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.about-cta-outline {
    display: inline-block;
    padding: 15px 35px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.about-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ================== Responsive ================== */
@media (max-width: 991.98px) {
    .map-wrap iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 240px;
    }
    /* Offset accent overflows the right edge and gets clipped on mobile */
    .about-img-wrap {
        padding-right: 0;
        padding-bottom: 0;
    }
    .about-img-accent {
        display: none;
    }
    .about-badge {
        left: 6px;
        bottom: 6px;
        padding: 12px 16px;
    }
    .about-badge-num {
        font-size: 1.6rem;
    }
    .about-stat-card {
        padding: 22px 16px;
    }
    .map-wrap iframe {
        height: 260px;
    }
}