/* ===== ABOUT HERO ===== */
.about-hero {
    height: 70vh;
 margin-top: 15px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
            linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
            url('/images/image26.png') center/cover no-repeat;
}

.about-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 20px;

    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;

    border-radius: 40px;

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);

    margin-bottom: 25px;
}

.about-content h1 {
    font-size: 64px;
    line-height: 1.1;

    margin-bottom: 24px;
}

.about-content h1 span {
    color: #FF7043;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,0.9);
}


/* ===== COMMON ===== */
.container {
    width: 90%;
    max-width: 1200px;

    margin: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #2F5D50;
    font-weight: 600;

    margin-bottom: 18px;
}


/* ===== ABOUT SECTION ===== */
.about-section {

    padding: 50px 0 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.about-image img {
    width: 100%;

    border-radius: 28px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 48px;
    line-height: 1.2;

    margin-bottom: 22px;

    color: #2F5D50;
}

.about-text h2 span {
    color: #FF7043;
}

.about-text p {
    line-height: 1.9;

    color: #666;

    margin-bottom: 18px;
}


/* ===== FEATURES ===== */
.about-features {

    margin-top: 22px;

    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px;

    background: white;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card i {
    color: #FF7043;
    font-size: 20px;
}



/* ===== MISSION ===== */
/* ===== MISSION SECTION ===== */
.mission-section {

    padding: 10px 0 60px;

    background: #f9f6f2;
}

/* GRID */
.mission-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 25px;
}

/* CARD */
.mission-card {

    background: white;

    padding: 35px 25px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.35s ease;
}

/* HOVER */
.mission-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;

    margin: auto auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,112,67,0.12);

    color: #FF7043;

    font-size: 28px;
}

.mission-card h3 {
    margin-bottom: 18px;

    font-size: 28px;

    color: #2F5D50;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}


/* ===== CTA ===== */
.about-cta {
    padding: 100px 20px;

    text-align: center;

    background:
            linear-gradient(rgba(47,93,80,0.9), rgba(47,93,80,0.92)),
            url('/images/group_photo.png') center/cover no-repeat;
}

.cta-content {
    max-width: 800px;
    margin: auto;

    color: white;
}

.cta-content h2 {
    font-size: 52px;

    margin-bottom: 24px;
}

.cta-content p {
    line-height: 1.8;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.85);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}


/* ===== MOBILE ===== */
/* =========================================
   MOBILE NAVBAR SAME AS HOME
========================================= */

.menu-toggle {

    display: none;

    font-size: 26px;

    cursor: pointer;

    color: #2F5D50;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* navbar */
    header {

        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        z-index: 9999;

        background: white;

        box-shadow:
            0 4px 18px rgba(0,0,0,0.08);
    }

    /* avoid overlap */
    body {

        padding-top: 90px;
    }

    /* nav menu */
    nav {

        position: absolute;

        top: 70px;

        right: 0;

        background: white;

        width: 100%;

        flex-direction: column;

        display: none;

        text-align: center;

        padding: 20px 0;

        box-shadow:
            0 10px 20px rgba(0,0,0,0.1);
    }

    nav.active {

        display: flex;
    }

    /* menu button */
    .menu-toggle {

        display: block;
    }

    /* hide tagline */
    .brand span {

        display: none;
    }

    /* logo size */
    .brand img {

        width: 55px;
    }

    /* brand title */
    .brand h2 {

        font-size: 18px;

        line-height: 1.2;
    }

.brand {

    gap: 10px;
}
    /* ===== ABOUT PAGE ===== */

    .about-hero {


        height: auto;

        min-height: calc(100vh - 90px);

        margin-top: 15px;

        padding: 30px 18px 40px;

        display: flex;

        align-items: center;

        justify-content: center;

        background-position: center center !important;

        background-size: cover !important;
    }
    .about-content h1 {

        font-size: 38px;
    }

    .about-content p {

        font-size: 15px;
    }

    .about-section {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 0 30px;
    }

    .about-text h2 {

        font-size: 34px;
    }

    .about-features {

        grid-template-columns: 1fr;
    }

    .mission-grid {

        grid-template-columns: 1fr;
    }

    .cta-content h2 {

        font-size: 36px;
    }

    .cta-buttons {

        flex-direction: column;
    }

    .btn,
    .btn-glass {

        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;
    }

    /* HERO FIX MOBILE */
    .hero,
    .about-hero {

        width: 100%;

        overflow: hidden;
    }

    .hero-bg,
    .about-hero {

        background-position: left center !important;

        background-size: cover !important;
    }

    /* fix image overflow */
    .about-content {

        width: 100%;

        padding: 20px 10px;
    }

    /* fix large text
    .about-content h1 {

        font-size: 52px;

        line-height: 1.15;
    }*/


}/* =========================================
   SAFE PREMIUM ANIMATION
========================================= */

/* DEFAULT VISIBLE */
.reveal,
.from-left,
.from-right,
.from-bottom {

    opacity: 1;

    transform: none;

    transition:
            all 1s ease;
}

/* ONLY animate when JS adds class */
.js-enabled .reveal {

    opacity: 0;
}

/* LEFT */
.js-enabled .from-left {

    transform: translateX(-100px);
}

/* RIGHT */
.js-enabled .from-right {

    transform: translateX(100px);
}

/* BOTTOM */
.js-enabled .from-bottom {

    transform: translateY(80px);
}

/* ACTIVE */
.js-enabled .reveal.active {

    opacity: 1;

    transform: translate(0,0);
}

/* DELAYS */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================
   FIX ABOUT PAGE ZOOM / NAVBAR ISSUE
========================================= */

html,
body {

    overflow-x: hidden;

    width: 100%;
}

/* navbar spacing */
body {

    padding-top: 80px;
}

/* hero section */
/*.about-hero {

    margin-top: -90px;

    padding-top: 90px;

    width: 100%;

    min-height: 100vh;

    overflow: hidden;

    background-size: cover;

    background-position: center;
}*/

