/* =============================================
   About Us Page — about-us.css
   ============================================= */

/* ── Hero ── */
.page-about-us .about-hero {
    position: relative;
    padding: 140px 0 96px;
    overflow: hidden;
    background: var(--color-white);
}

.page-about-us .about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 79, 79, 0.12), transparent);
}

.page-about-us .about-hero .hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232, 184, 109, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #fff 0%, var(--color-white) 100%);
    z-index: 0;
}

.page-about-us .about-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.page-about-us .about-hero .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 184, 109, 0.2);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-about-us .about-hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-about-us .about-hero .hero-title .highlight {
    color: var(--color-primary);
}

.page-about-us .about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Values Accordion ── */
.page-about-us .about-values {
    padding: 88px 0;
    background: var(--color-white);
}

.page-about-us .about-values .section-title {
    margin-bottom: 12px;
}

.page-about-us .values-accordion {
    max-width: 680px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-about-us .value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.page-about-us .value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-about-us .value-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    transition: background 0.2s;
}

.page-about-us .value-card-header:hover {
    background: rgba(13, 79, 79, 0.03);
}

.page-about-us .value-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 79, 79, 0.06);
    border-radius: 50%;
}

.page-about-us .value-title {
    flex: 1;
}

.page-about-us .value-toggle {
    margin-left: auto;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}

.page-about-us .value-toggle::before,
.page-about-us .value-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.page-about-us .value-toggle::before {
    width: 12px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-about-us .value-toggle::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-about-us .value-card[data-expanded] .value-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.page-about-us .value-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.page-about-us .value-card[data-expanded] .value-card-body {
    max-height: 140px;
}

.page-about-us .value-card-body p {
    padding: 0 28px 24px 80px;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    border-top: 1px solid rgba(13, 79, 79, 0.06);
    padding-top: 16px;
}

/* ── How We Help ── */
.page-about-us .about-help {
    padding: 88px 0;
    background: var(--color-bg);
}

.page-about-us .about-help .section-title {
    margin-bottom: 48px;
}

.page-about-us .about-help .features-grid {
    margin-top: 0;
    justify-items: center;
}

.page-about-us .about-help .feature {
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.page-about-us .about-help .feature-icon {
    display: block;
}

.page-about-us .about-help .feature-icon img {
    width: 56px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* ── Final CTA override for about page ── */
.page-about-us .final-cta {
    padding: 88px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-about-us .about-hero {
        padding: 120px 0 72px;
    }

    .page-about-us .about-values {
        padding: 64px 0;
    }

    .page-about-us .about-help {
        padding: 64px 0;
    }

    .page-about-us .final-cta {
        padding: 64px 0;
    }

    .page-about-us .value-card-body p {
        padding-left: 28px;
    }
}

@media (max-width: 480px) {
    .page-about-us .about-hero .hero-title {
        font-size: 1.75rem;
    }

    .page-about-us .about-hero .hero-subtitle {
        font-size: 1rem;
    }

    .page-about-us .value-card-header {
        padding: 18px 20px;
    }

    .page-about-us .value-card-body p {
        padding: 12px 20px 20px;
    }
}
