/* ============================================================
   Achol HR - About Page Stylesheet
   ============================================================
   
   Page-specific styles for the About Us page.
   Global styles come from style.css
   
   @author  Magar
   @version 1.0
   ============================================================ */


/* ============================================================
   1. VISUALLY HIDDEN (Accessibility Utility)
   ============================================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   2. ABOUT HERO SECTION
   ============================================================ */

.about-hero {
    background-color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.about-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.about-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-hero .divider-gold {
    margin: 24px auto 0;
}


/* ============================================================
   3. ABOUT INTRO SECTION
   ============================================================ */

.about-intro {
    background-color: var(--white);
    padding: 60px 0 80px;
}

.about-intro-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-lead {
    font-size: 1.25rem !important;
    color: var(--navy) !important;
    font-weight: 500;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
}

.about-belief {
    font-size: 1.15rem !important;
    color: var(--navy) !important;
    font-weight: 600;
    font-style: italic;
    padding: 24px;
    margin-top: 24px !important;
    border-left: 3px solid var(--gold);
    background-color: var(--grey-light);
    border-radius: var(--radius-md);
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   4. WHAT WE DO SECTION
   ============================================================ */

.about-values {
    background-color: var(--grey-light);
}

.value-card {
    background-color: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-medium);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grey-light);
    border-radius: 50%;
    color: var(--navy);
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--gold);
    color: var(--white);
}

.value-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.value-text {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}


/* ============================================================
   5. FOCUS SECTION
   ============================================================ */

.about-focus {
    background-color: var(--white);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.focus-content h2 {
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.focus-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.focus-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.focus-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    background-color: var(--grey-light);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.highlight-item:hover {
    background-color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.highlight-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.highlight-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}


/* ============================================================
   6. CTA SECTION
   ============================================================ */

.about-cta {
    background-color: var(--navy);
    color: var(--white);
    padding: 70px 0;
}

.about-cta .cta-content h2 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 2rem;
}

.about-cta .cta-content .text-muted {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.about-cta .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-cta .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.about-cta .btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}


/* ============================================================
   7. RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 992px) {

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {

    .about-hero {
        padding: 60px 0 30px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .about-intro {
        padding: 40px 0 60px;
    }

    .about-lead {
        font-size: 1.1rem !important;
    }

    .about-belief {
        font-size: 1rem !important;
        padding: 18px;
    }

    .value-card {
        padding: 28px 20px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
    }

    .about-cta {
        padding: 50px 0;
    }

    .about-cta .cta-content h2 {
        font-size: 1.65rem;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-lead {
        font-size: 1.05rem !important;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}


/* ============================================================
   END OF ABOUT PAGE STYLESHEET
   ============================================================ */