/* ============================================
   ABOUT US PAGE - CSS STYLES
   ============================================ */

/* ============================================
   ABOUT BANNER
   ============================================ */
.about-banner {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
}

.about-banner-image {
    position: absolute;
    inset: 0;
}

.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%);
    pointer-events: none;
}

/* ============================================
   ABOUT PAGE SECTIONS
   ============================================ */
.about-row {
    display: flex;
    gap: 56px;
    align-items: stretch;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
    max-width: 752px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content .section-text {
    margin-bottom: 24px;
}

.about-content .section-text:last-child {
    margin-bottom: 0;
}

.about-image {
    flex-shrink: 0;
    width: 752px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   WHO ARE WE - ABOUT PAGE
   ============================================ */
.about-who-we-are {
    padding-top: 100px;
}

.about-who-we-are .about-image img {
    height: 100%;
    object-fit: cover;
}

/* ============================================
   OUR JOURNEY
   ============================================ */
.our-journey .about-image img {
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MILESTONES OF PROGRESS
   ============================================ */
.milestones .section-title {
    margin-bottom: 68px;
}

.milestones-image {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
}

.milestones-image img {
    width: 100%;
    height: auto;
}

/* ============================================
   MEET THE VISIONARIES
   ============================================ */
.visionaries .section-title {
    margin-bottom: 68px;
}

.visionaries .about-row {
    margin-bottom: 80px;
    align-items: center;
}

.visionaries .about-image {
    height: 500px;
}


.visionaries .about-row:last-child {
    margin-bottom: 0;
}

.visionary-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--black);
    margin: 0 0 8px 0;
}

.visionary-role {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--primary);
    margin: 0 0 24px 0;
}

/* ============================================
   VISION MISSION VALUES - ACCORDION
   ============================================ */
.vision-mission .about-image img {
    height: 100%;
    object-fit: cover;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.accordion-item {
    border-bottom: 2px solid rgba(0,0,0,0.2);
    padding-bottom: 16px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--black);
    margin: 0;
}

.accordion-toggle {
    width: 44px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-toggle svg {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding-top: 16px;
}

.accordion-body p,
.accordion-body ul {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    line-height: 1.6;
}

.accordion-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.accordion-body ul li {
    margin-bottom: 12px;
}

.accordion-body ul li:last-child {
    margin-bottom: 0;
}

/* ============================================
   MANUFACTURING FACILITIES
   ============================================ */
.manufacturing .about-row {
    align-items: stretch;
}

.manufacturing .about-image img {
    height: 100%;
    object-fit: cover;
}

/* ============================================
   WHY CHOOSE US - ABOUT PAGE
   ============================================ */
.about-why-choose {
    padding-bottom: 120px;
}

.about-why-choose .section-title {
    margin-bottom: 24px;
}

.why-choose-text {
    max-width: 100%;
}

/* ============================================
   MOBILE STYLES - 768px and below
   ============================================ */
@media screen and (max-width: 768px) {
    /* ABOUT BANNER - MOBILE */
    .about-banner {
        height: auto;
    }

    .about-banner-image {
        position: relative;
    }

    .about-banner-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-banner-gradient {
        background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 20%);
    }

    /* ABOUT PAGE SECTIONS - MOBILE */
    .about-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-row.reverse {
        flex-direction: column;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content .section-title {
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .about-content .section-text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* WHO ARE WE - MOBILE */
    .about-who-we-are {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .about-who-we-are .about-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-who-we-are .about-content {
        order: 1;
    }

    .about-who-we-are .about-image {
        height: 194px;
        order: 2;
    }

    /* OUR JOURNEY - MOBILE */
    .our-journey {
        padding: 40px 0;
    }

    .our-journey .about-row {
        flex-direction: column;
        gap: 24px;
    }

    .our-journey .about-content {
        order: 1;
    }

    .our-journey .about-image {
        height: 175px;
        order: 2;
    }

    /* MILESTONES - MOBILE */
    .milestones {
        padding: 40px 0;
    }

    .milestones .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .milestones-image {
        max-width: 100%;
    }

    .milestones-image img {
        width: 100%;
        height: auto;
    }

    /* MEET THE VISIONARIES - MOBILE */
    .visionaries {
        padding: 40px 0;
    }

    .visionaries .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .visionaries .about-row {
        margin-bottom: 40px;
    }

    .visionaries .about-content {
        order: 1;
    }

    .visionaries .about-image {
        height: 194px;
        order: 2;
    }

    .visionary-name {
        font-size: 28px;
    }

    .visionary-role {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* VISION MISSION VALUES - MOBILE */
    .vision-mission {
        padding: 40px 0;
    }

    .vision-mission .about-row {
        flex-direction: column;
        gap: 24px;
    }

    .vision-mission .about-image {
        height: 234px;
        order: 1;
    }

    .vision-mission .about-content {
        order: 2;
    }

    .vision-mission .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .accordion-list {
        gap: 0;
        margin-top: 16px;
    }

    .accordion-item {
        padding: 16px 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }

    .accordion-item:first-child {
        padding-top: 0;
    }

    .accordion-title {
        font-size: 22px;
        width: calc(100% - 50px);
    }

    .accordion-toggle {
        width: 34px;
        height: 34px;
        border: none;
        background: transparent;
    }

    .accordion-toggle svg {
        width: 34px;
        height: 34px;
        stroke: var(--black);
    }

    .accordion-body p,
    .accordion-body ul {
        font-size: 16px;
        line-height: 1.5;
    }

    .accordion-item.active .accordion-body {
        padding-top: 10px;
    }

    /* MANUFACTURING FACILITIES - MOBILE */
    .manufacturing {
        padding: 40px 0;
    }

    .manufacturing .about-row {
        flex-direction: column;
        gap: 24px;
    }

    .manufacturing .about-content {
        order: 1;
    }

    .manufacturing .about-image {
        height: 228px;
        order: 2;
    }

    .manufacturing .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    /* WHY CHOOSE US - MOBILE */
    .about-why-choose {
        padding: 40px 0;
        padding-bottom: 60px;
    }

    .about-why-choose .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .why-choose-text {
        font-size: 16px;
        line-height: 1.5;
    }
}
