/**
 * About Us Page Styles
 */

/* ==========================================================================
   PAGE HEADER - ABOUT
   ========================================================================== */
.page-header--about {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header--about .page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-header--about .page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header--about .page-header__content {
    position: relative;
    z-index: 2;
}

.page-header--about .page-header__title {
    font-size: 56px;
    font-weight: 700;
    color: var(--pf-white);
    margin-bottom: 15px;
}

.page-header--about .page-header__subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.page-header--about .page-header__subtitle strong {
    color: var(--pf-primary);
    font-weight: 600;
}

/* ==========================================================================
   INTRO ABOUT SECTION
   ========================================================================== */
.pf-intro-about {
    padding: 80px 0;
    background: var(--pf-white);
}

.pf-intro-about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pf-intro-about__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--pf-primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.pf-intro-about__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--pf-primary);
}

.pf-intro-about__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--pf-text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.pf-intro-about__text strong {
    color: var(--pf-secondary);
}

/* Buttons Row */
.pf-intro-about__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT STATS SECTION (Full Width)
   ========================================================================== */
.pf-about-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--pf-primary) 0%, var(--pf-secondary) 100%);
}

.pf-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.pf-about-stats__item {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pf-about-stats__item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.pf-about-stats__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pf-white);
    border-radius: 50%;
    color: var(--pf-primary);
}

.pf-about-stats__icon svg {
    stroke: var(--pf-primary);
}

.pf-about-stats__number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--pf-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.pf-about-stats__label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Stats Section */
@media (max-width: 1199px) {
    .pf-about-stats__grid {
        gap: 25px;
    }

    .pf-about-stats__number {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .pf-about-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pf-about-stats__item:nth-child(4),
    .pf-about-stats__item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .pf-about-stats {
        padding: 50px 0;
    }

    .pf-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pf-about-stats__item {
        padding: 25px 15px;
    }

    .pf-about-stats__icon {
        width: 60px;
        height: 60px;
    }

    .pf-about-stats__icon svg {
        width: 28px;
        height: 28px;
    }

    .pf-about-stats__number {
        font-size: 32px;
    }

    .pf-about-stats__label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .pf-about-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pf-about-stats__item:last-child {
        grid-column: 1 / -1;
    }

    .pf-about-stats__number {
        font-size: 28px;
    }
}

/* ==========================================================================
   VISION & MISSION SECTION
   ========================================================================== */
.pf-vision-mission {
    padding: 60px 0;
    background: var(--pf-primary);
}

.pf-vision-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pf-vision-mission__item {
    padding: 40px;
    background: var(--pf-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pf-vision-mission__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pf-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pf-primary);
}

.pf-vision-mission__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pf-text-light);
    margin: 0;
    text-align: justify;
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.pf-hero-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pf-hero-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.pf-hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.pf-hero-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pf-hero-banner__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--pf-white);
    margin: 0;
    line-height: 1.3;
}

.pf-hero-banner__divider {
    width: 80px;
    height: 3px;
    background: var(--pf-white);
    margin: 25px auto 0;
}

/* ==========================================================================
   WE CREATE SECTION
   ========================================================================== */
.pf-we-create {
    padding: 80px 0;
    background: var(--pf-bg-light);
}

.pf-we-create__content {
    text-align: center;
}

.pf-we-create__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--pf-primary);
    margin: 0;
    line-height: 1.3;
}

.pf-we-create__divider {
    width: 80px;
    height: 3px;
    background: var(--pf-primary);
    margin: 25px auto 0;
}

/* ==========================================================================
   TWO COLUMN SECTION
   ========================================================================== */
.pf-two-col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    position: relative;
}

.pf-two-col__left {
    background: var(--pf-primary);
    padding: 60px;
    display: flex;
    align-items: center;
}

.pf-two-col__right {
    background: var(--pf-white);
    padding: 60px;
    display: flex;
    align-items: center;
}

.pf-two-col__circle {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -100px;
}

.pf-two-col__circle img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--pf-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pf-two-col__inner {
    max-width: 400px;
}

.pf-two-col__left .pf-two-col__inner {
    margin-left: auto;
    text-align: justify;
    padding-right: 60px;
}

.pf-two-col__right .pf-two-col__inner {
    margin-right: auto;
    text-align: justify;
    padding-left: 60px;
}

.pf-two-col__left .pf-two-col__title {
    color: var(--pf-white);
    text-align: right;
}

.pf-two-col__left .pf-two-col__text {
    color: rgba(255, 255, 255, 0.9);
}

.pf-two-col__right .pf-two-col__title {
    color: var(--pf-secondary);
    text-align: left;
}

.pf-two-col__right .pf-two-col__text {
    color: var(--pf-text-light);
}

.pf-two-col__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pf-two-col__text {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   GROUP SECTION
   ========================================================================== */
.pf-group-section {
    padding: 80px 0;
    background: var(--pf-white);
}

.pf-group-section__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pf-group-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--pf-secondary);
    margin-bottom: 25px;
}

.pf-group-section__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--pf-text-light);
    margin: 0;
}

/* ==========================================================================
   CORE SECTION
   ========================================================================== */
.pf-core-section {
    padding: 80px 0;
    background: var(--pf-bg-light);
}

.pf-core-section__content {
    max-width: 900px;
    margin: 0 auto;
}

.pf-core-section__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--pf-secondary);
    margin-bottom: 25px;
}

.pf-core-section__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--pf-text-light);
    margin: 0;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.pf-features {
    padding: 80px 0;
    background: var(--pf-white);
}

.pf-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pf-features__card {
    position: relative;
    padding: 40px 30px;
    background: var(--pf-bg-light);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pf-features__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pf-features__number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pf-primary);
}

.pf-features__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pf-white);
    border-radius: 50%;
    color: var(--pf-primary);
}

.pf-features__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--pf-secondary);
    margin: 0;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.pf-partners {
    padding: 80px 0;
    background: var(--pf-bg-light);
}

.pf-partners__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--pf-primary);
    text-align: center;
    margin-bottom: 50px;
}

.pf-partners__slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pf-partners__slider {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pf-partners__slider::-webkit-scrollbar {
    display: none;
}

.pf-partners__track {
    display: flex;
    gap: 30px;
    align-items: center;
}

.pf-partners__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--pf-primary);
    border: none;
    color: var(--pf-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.pf-partners__arrow:hover {
    background: var(--pf-secondary);
}

.pf-partners__logo {
    background: var(--pf-white);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 150px;
    flex-shrink: 0;
}

.pf-partners__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.pf-partners__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pf-btn--primary {
    background: var(--pf-primary);
    color: var(--pf-white);
}

.pf-btn--primary:hover {
    background: var(--pf-primary-dark);
    color: var(--pf-white);
}

.pf-btn--outline {
    background: transparent;
    color: var(--pf-primary);
    border: 2px solid var(--pf-primary);
}

.pf-btn--outline:hover {
    background: var(--pf-primary);
    color: var(--pf-white);
}

/* Outline button on green background */
.pf-two-col__left .pf-btn--outline {
    color: var(--pf-white);
    border-color: var(--pf-white);
}

.pf-two-col__left .pf-btn--outline:hover {
    background: var(--pf-white);
    color: var(--pf-primary);
}

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

@media (max-width: 991px) {
    .page-header--about {
        min-height: 400px;
    }

    .page-header--about .page-header__title {
        font-size: 42px;
    }

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

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

    .pf-hero-banner {
        min-height: 300px;
    }

    .pf-hero-banner__title {
        font-size: 32px;
    }

    .pf-two-col {
        grid-template-columns: 1fr;
    }

    .pf-two-col__circle {
        order: -1;
        margin: 0;
        padding: 30px 0;
        background: linear-gradient(to bottom, var(--pf-primary) 50%, var(--pf-white) 50%);
    }

    .pf-two-col__left,
    .pf-two-col__right {
        padding: 40px;
    }

    .pf-two-col__left .pf-two-col__inner,
    .pf-two-col__right .pf-two-col__inner {
        text-align: justify;
        margin: 0 auto;
        padding: 0;
        max-width: 100%;
    }

    .pf-two-col__left .pf-two-col__title,
    .pf-two-col__right .pf-two-col__title {
        text-align: center;
    }

    .pf-we-create__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .page-header--about {
        min-height: 350px;
    }

    .page-header--about .page-header__title {
        font-size: 32px;
    }

    .page-header--about .page-header__subtitle {
        font-size: 18px;
    }

    .pf-intro-about,
    .pf-group-section,
    .pf-core-section,
    .pf-features,
    .pf-partners {
        padding: 60px 0;
    }

    .pf-intro-about__title,
    .pf-group-section__title,
    .pf-partners__title {
        font-size: 28px;
    }

    .pf-vision-mission__item {
        padding: 30px;
    }

    .pf-features__grid {
        grid-template-columns: 1fr;
    }

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

    .pf-hero-banner {
        min-height: 250px;
    }

    .pf-hero-banner__title {
        font-size: 26px;
        padding: 0 20px;
    }
}
