/* ============================================
   ABOUT PAGE — Full UI Design
   ============================================ */

.about-page .site-header:not(.scrolled) {
    background: transparent;
    box-shadow: none;
}

.about-page .site-header:not(.scrolled) .site-nav__link {
    color: var(--color-gray-800);
}

/* ---- Hero ---- */
.about-hero {
    position: relative;
    min-height: 420px;
    padding: 120px 0 90px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        rgba(255, 251, 247, 0.97) 0%,
        rgba(255, 251, 247, 0.88) 35%,
        rgba(255, 251, 247, 0.45) 60%,
        rgba(255, 251, 247, 0.15) 100%);
}

.about-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero__content {
    max-width: 520px;
}

.about-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    margin-bottom: 18px;
}

.about-hero__breadcrumb a {
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
}

.about-hero__breadcrumb a:hover {
    color: var(--color-primary);
}

.about-hero__breadcrumb i {
    font-size: 10px;
    color: var(--color-gray-400);
}

.about-hero__breadcrumb span {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.about-hero__title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-900);
    margin-bottom: 10px;
    line-height: 1.1;
}

.about-hero__tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: 14px;
}

.about-hero__intro {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin: 0;
}

.about-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.about-hero__wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

/* ---- Our Story ---- */
.about-story {
    padding: 80px 0 70px;
    background: var(--color-white);
}

.about-story__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-story__label-line {
    width: 36px;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.about-story__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-900);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-story__text {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-story__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.about-story__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-story__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-story__feature-icon--orange {
    background: #FFF3E0;
    color: var(--color-primary);
}

.about-story__feature-icon--blue {
    background: #E3F2FD;
    color: #1976D2;
}

.about-story__feature-icon--green {
    background: #E8F5E9;
    color: #388E3C;
}

.about-story__feature-icon--purple {
    background: #F3E5F5;
    color: #7B1FA2;
}

.about-story__feature strong {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.about-story__feature span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.about-story__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-story__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 380px;
}

/* ---- Mission, Vision, Values ---- */
.about-mvv {
    padding: 0 0 80px;
    background: var(--color-white);
}

.about-mvv__card {
    padding: 36px 32px;
    border-radius: 18px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-mvv__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(245, 124, 0, 0.1);
}

.about-mvv__card--mission {
    background: #FFF8F0;
}

.about-mvv__card--vision {
    background: #FFFBF5;
}

.about-mvv__card--values {
    background: #F1F8F4;
}

.about-mvv__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.about-mvv__card--mission .about-mvv__icon {
    background: rgba(245, 124, 0, 0.12);
    color: var(--color-primary);
}

.about-mvv__card--vision .about-mvv__icon {
    background: rgba(245, 124, 0, 0.1);
    color: var(--color-primary-dark);
}

.about-mvv__card--values .about-mvv__icon {
    background: rgba(56, 142, 60, 0.12);
    color: #388E3C;
}

.about-mvv__title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    margin-bottom: 14px;
}

.about-mvv__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.about-mvv__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-mvv__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
}

.about-mvv__list i {
    color: #4CAF50;
    font-size: 14px;
}

/* ---- Stats Bar ---- */
.about-stats-bar {
    padding: 0 0 80px;
    background: var(--color-white);
}

.about-stats-bar__grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    background: var(--gradient-stats);
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(245, 124, 0, 0.25);
}

.about-stats-bar__item {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: var(--color-white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stats-bar__item:last-child {
    border-right: none;
}

.about-stats-bar__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-stats-bar__item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.about-stats-bar__item span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ---- Team ---- */
.about-team {
    padding: 0 0 80px;
    background: var(--color-white);
}

.about-team__header {
    margin-bottom: 48px;
}

.about-team__label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.about-team__label-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.about-team__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-900);
    margin: 0;
}

.about-team__card {
    text-align: center;
    padding: 32px 24px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
}

.about-team__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(245, 124, 0, 0.12);
    border-color: var(--color-primary-pale);
}

.about-team__photo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 4px;
    border: 3px solid var(--color-primary);
    overflow: hidden;
}

.about-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-team__name {
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.about-team__role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.about-team__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-team__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-gray-100);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
}

.about-team__social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ---- CTA Banner ---- */
.about-cta {
    padding: 0 0 80px;
    background: var(--color-white);
}

.about-cta__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 36px;
    background: #FFF8F0;
    border: 1px solid #FFE0B2;
    border-radius: 16px;
}

.about-cta__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245, 124, 0, 0.12);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.about-cta__content {
    flex: 1;
    min-width: 220px;
}

.about-cta__title {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.about-cta__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 124, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-cta__btn:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 124, 0, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .about-stats-bar__item {
        min-width: 140px;
        padding: 12px 14px;
    }
}

@media (max-width: 991.98px) {
    .about-hero {
        min-height: 380px;
        padding: 110px 0 80px;
    }

    .about-hero__bg {
        background-position: center;
    }

    .about-hero__overlay {
        background: linear-gradient(180deg,
            rgba(255, 251, 247, 0.95) 0%,
            rgba(255, 251, 247, 0.85) 60%,
            rgba(255, 251, 247, 0.5) 100%);
    }

    .about-story {
        padding: 60px 0 50px;
    }

    .about-story__img {
        min-height: 300px;
    }

    .about-stats-bar__grid {
        flex-direction: column;
        gap: 0;
        padding: 24px;
    }

    .about-stats-bar__item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 16px 12px;
        min-width: 100%;
    }

    .about-stats-bar__item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .about-story__features {
        grid-template-columns: 1fr;
    }

    .about-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .about-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .about-hero__title {
        font-size: 2.25rem;
    }

    .about-hero__wave svg {
        height: 50px;
    }
}
