/* =====================================================
   CarryMen - About Us Page
   Pixel-perfect implementation
   Stack: Bootstrap 5.3 + Font Awesome 6 + AOS
   ===================================================== */

:root {
    --ab-orange: #F56A00;
    --ab-black: #1A1A1A;
    --ab-dark: #444444;
    --ab-gray: #777777;
    --ab-cream: #FFF7F2;
    --ab-white: #FFFFFF;
    --ab-shadow: 0 12px 40px rgba(0, 0, 0, .06);
    --ab-shadow-btn: 0 8px 20px rgba(245, 106, 0, .18);
    --ab-radius-hero: 20px;
    --ab-radius-stats: 24px;
    --ab-radius-story: 24px;
    --ab-radius-mission: 20px;
    --ab-radius-btn: 50px;
    --ab-transition: 0.3s ease;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ab-black);
    overflow-x: hidden;
}

/* ---------- Section Spacing ---------- */
.ab-section {
    padding: 90px 0;
}

.ab-section .container {
    max-width: 1320px;
}

/* =====================================================
   SECTION 1: ABOUT HERO
   ===================================================== */
.ab-hero {
    padding: 60px 0 80px;
    background: var(--ab-white);
    overflow: hidden;
}

.ab-hero .container {
    max-width: 1320px;
}

.ab-hero__grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 40px;
}

.ab-hero__subtitle {
    display: inline-block;
    color: var(--ab-orange);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ab-hero__title {
    margin: 0 0 6px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ab-black);
}

.ab-hero__title span {
    color: var(--ab-orange);
}

.ab-hero__subheading {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--ab-dark);
}

.ab-hero__line {
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background: var(--ab-orange);
    margin-bottom: 20px;
}

.ab-hero__text {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--ab-gray);
    max-width: 480px;
}

.ab-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--ab-radius-btn);
    border: 2px solid var(--ab-orange);
    background: transparent;
    color: var(--ab-orange) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--ab-transition);
    box-shadow: var(--ab-shadow-btn);
}

.ab-hero__btn i {
    font-size: 18px;
}

.ab-hero__btn:hover {
    background: var(--ab-orange);
    color: var(--ab-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 106, 0, 0.25);
}

.ab-hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--ab-radius-hero);
    display: block;
    box-shadow: var(--ab-shadow);
}

/* =====================================================
   SECTION 2: STATISTICS
   ===================================================== */
.ab-stats-wrap {
    margin-top: -50px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ab-stats-card {
    background: var(--ab-white);
    border-radius: var(--ab-radius-stats);
    box-shadow: var(--ab-shadow);
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.ab-stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #f0f0f0;
}

.ab-stat-item:last-child {
    border-right: 0;
}

.ab-stat-item i {
    color: var(--ab-orange);
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.ab-stat-item__value {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--ab-black);
    margin-bottom: 4px;
}

.ab-stat-item__label {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--ab-gray);
}

/* =====================================================
   SECTION 3: OUR STORY
   ===================================================== */
.ab-story {
    padding: 60px 0 80px;
    background: var(--ab-white);
}

.ab-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-story__heading {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--ab-black);
    letter-spacing: -0.5px;
}

.ab-story__heading span {
    color: var(--ab-orange);
}

.ab-story__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--ab-gray);
    max-width: 520px;
}

.ab-story__text:last-of-type {
    margin-bottom: 0;
}

.ab-story__grid--right {
    background: var(--ab-cream);
    border-radius: var(--ab-radius-story);
    padding: 40px 36px;
    box-shadow: var(--ab-shadow);
}

.ab-story-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ab-story-card {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.ab-story-card:nth-child(2n) {
    border-right: 0;
}

.ab-story-card:nth-last-child(-n+2) {
    border-bottom: 0;
}

.ab-story-card i {
    color: var(--ab-orange);
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.ab-story-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ab-black);
}

.ab-story-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--ab-gray);
}

/* =====================================================
   SECTION 4: MISSION & VISION
   ===================================================== */
.ab-mission {
    padding: 80px 0;
    background: var(--ab-white);
}

.ab-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.ab-mission__divider {
    width: 1px;
    height: 200px;
    background: #e0e0e0;
    margin: 0 auto;
}

.ab-mission__item {
    text-align: center;
    padding: 20px 40px;
}

.ab-mission__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ab-cream);
    color: var(--ab-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 20px;
}

.ab-mission__item h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--ab-black);
    letter-spacing: 1px;
}

.ab-mission__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--ab-gray);
    max-width: 380px;
    margin: 0 auto;
}

/* =====================================================
   SECTION 5: OUR VALUES
   ===================================================== */
.ab-values {
    padding: 80px 0;
    background: var(--ab-cream);
}

.ab-values__title {
    text-align: center;
    margin: 0 0 50px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--ab-black);
    letter-spacing: 1px;
}

.ab-values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.ab-value-item {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid #e0d5cc;
}

.ab-value-item:last-child {
    border-right: 0;
}

.ab-value-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--ab-orange);
    color: var(--ab-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: all var(--ab-transition);
}

.ab-value-item:hover .ab-value-item__icon {
    background: var(--ab-orange);
    color: var(--ab-white);
    transform: translateY(-4px);
}

.ab-value-item h4 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ab-black);
}

.ab-value-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--ab-gray);
}

/* =====================================================
   SECTION 6: BOTTOM CTA
   ===================================================== */
.ab-cta {
    background: var(--ab-orange);
    padding: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.ab-cta .container {
    max-width: 1320px;
}

.ab-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
}

.ab-cta__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ab-cta__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--ab-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 auto;
}

.ab-cta__text {
    color: var(--ab-white);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

.ab-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: var(--ab-radius-btn);
    border: 0;
    background: var(--ab-white);
    color: var(--ab-orange) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--ab-transition);
    flex: 0 0 auto;
}

.ab-cta__btn i {
    font-size: 16px;
    transition: transform var(--ab-transition);
}

.ab-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    color: var(--ab-orange) !important;
}

.ab-cta__btn:hover i {
    transform: translateX(4px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1199px) {
    .ab-hero__title {
        font-size: 40px;
    }

    .ab-story__grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .ab-section {
        padding: 60px 0;
    }

    .ab-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ab-hero__content {
        text-align: center;
    }

    .ab-hero__line {
        margin: 0 auto 20px;
    }

    .ab-hero__text {
        max-width: 100%;
        margin: 0 auto 28px;
    }

    .ab-hero__title {
        font-size: 36px;
    }

    .ab-stats-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
        padding: 30px 20px;
    }

    .ab-stat-item:nth-child(3) {
        border-right: 0;
    }

    .ab-stat-item:nth-child(4),
    .ab-stat-item:nth-child(5) {
        border-right: 0;
    }

    .ab-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-story__text {
        max-width: 100%;
    }

    .ab-mission__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ab-mission__divider {
        width: 80px;
        height: 1px;
    }

    .ab-values__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ab-value-item:nth-child(3) {
        border-right: 0;
    }

    .ab-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .ab-cta__left {
        flex-direction: column;
        text-align: center;
    }

    .ab-cta__text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .ab-stats-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-stat-item:nth-child(2) {
        border-right: 0;
    }

    .ab-stat-item:nth-child(3) {
        border-right: 1px solid #f0f0f0;
    }

    .ab-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-value-item:nth-child(2) {
        border-right: 0;
    }

    .ab-story-cards {
        grid-template-columns: 1fr;
    }

    .ab-story-card {
        border-right: 0;
    }

    .ab-story-card:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .ab-story-card:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .ab-hero__title {
        font-size: 30px;
    }

    .ab-hero__subheading {
        font-size: 17px;
    }

    .ab-stats-card {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ab-stat-item {
        border-right: 0 !important;
    }

    .ab-stat-item__value {
        font-size: 24px;
    }

    .ab-story__heading {
        font-size: 28px;
    }

    .ab-story__grid--right {
        padding: 28px 20px;
    }

    .ab-values__grid {
        grid-template-columns: 1fr;
    }

    .ab-values__title {
        font-size: 26px;
    }

    .ab-cta__text {
        font-size: 16px;
    }

    .ab-mission__item {
        padding: 20px;
    }
}