/* =========================================================
   BASKIT ABOUT PAGE
   Page-specific CSS
   Does NOT modify index page styles
========================================================= */


/* =========================================================
   COMMON
========================================================= */
.about-hero {
    padding: 90px 0;
}


.about-section {
    padding: 100px 0;
}

.about-light {
    background: #f7faf8;
}

.about-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */
.about-hero {
    padding: 90px 0;
}


.about-hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;

    min-height: 520px;
}





#about-title {
    max-width: 850px;

}

.about-hero-content{max-width:850px}

.about-hero-content {
    max-width: 650px;
}


.about-hero-content h1 {
    margin-top: 18px;
}


.about-hero-content p {
    max-width: 620px;

    line-height: 1.8;
}

/* ---------------------------------------------------------
   GREEN GLOW
   --------------------------------------------------------- */








/* =========================================================
   TWO COLUMN SECTIONS
========================================================= */

.about-two-column {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}





.about-heading h2 {
    margin: 0;

    color: var(--dark);

    font-size:
        clamp(38px, 4vw, 57px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.about-heading h2 span {
    color: var(--primary);
}


.about-content {
    max-width: 700px;
}


.about-content p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


.about-content strong {
    color: var(--dark);
}


/* =========================================================
   WHAT WE DO
========================================================= */

.about-what-grid {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 80px;
}


.about-what-content {
    max-width: 620px;
}


.about-what-content h2 {
    margin: 0 0 25px;

    color: var(--dark);

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.about-what-content h2 span {
    color: var(--primary);
}


.about-what-content p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;
}


.about-what-content p strong {
    color: var(--dark);
}


/* =========================================================
   WHAT WE DO - FEATURE LIST
========================================================= */

.about-simple-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}


.about-simple-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 58px;

    padding: 12px 15px;

    border:
        1px solid
        var(--gray-200);

    border-radius: 12px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.about-simple-list div:hover {
    transform: translateY(-3px);

    border-color: var(--primary);

    box-shadow:
        0 10px 25px
        rgba(0, 152, 70, 0.08);
}


.about-simple-list span {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size: 13px;

    font-weight: 800;
}


.about-simple-list strong {
    color: var(--dark);

    font-size: 14px;
}


/* =========================================================
   WHAT WE DO - IMAGE
========================================================= */

.about-what-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-image-glow {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 152, 70, 0.14),
            rgba(0, 152, 70, 0.05) 50%,
            transparent 72%
        );
}


.about-what-image {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    max-width: 570px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 45px
            rgba(16, 24, 40, 0.12)
        );

    transition:
        transform 0.35s ease;
}


.about-what-image:hover {
    transform:
        translateY(-8px);
}


/* =========================================================
   WHAT WE DO NOTE
========================================================= */

.about-note {
    margin-top: 28px !important;

    padding:
        14px 18px;

    border-left:
        3px solid
        var(--primary);

    border-radius:
        0 8px 8px 0;

    background:
        #f1faf5;

    color:
        var(--dark) !important;

    font-size:
        15px !important;

    font-weight:
        600;
}


/* =========================================================
   WHY WE EXIST
========================================================= */

.about-centered {
    max-width: 780px;

    margin:
        0 auto 60px;

    text-align: center;
}


.about-centered h2 {
    margin: 0;

    color: var(--dark);

    font-size:
        clamp(38px, 4.5vw, 60px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.about-centered h2 span {
    color: var(--primary);
}


.about-centered p {
    max-width: 700px;

    margin:
        25px auto 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   WHY WE EXIST CARDS
========================================================= */

.about-reason-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.about-reason-card {
    position: relative;

    min-height: 245px;

    padding: 30px;

    border:
        1px solid
        var(--gray-200);

    border-radius: 18px;

    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.about-reason-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(0, 152, 70, 0.3);

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.08);
}


.about-reason-number {
    display: block;

    margin-bottom: 55px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.about-reason-card h3 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 22px;
}


.about-reason-card p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   OUR MISSION
========================================================= */

.about-mission {
    padding: 100px 0;
}


.about-mission-box {
    position: relative;

    overflow: hidden;

    max-width: 1000px;

    margin: 0 auto;

    padding:
        70px 80px;

    text-align: center;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #007f3b,
            var(--primary)
        );

    box-shadow:
        0 25px 60px
        rgba(0, 152, 70, 0.18);
}


.about-mission-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    right: -100px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}


.about-mission-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -130px;
    left: -80px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}


.about-mission-box .about-label {
    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.72);
}


.about-mission-box h2 {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    color: var(--white);

    font-size:
        clamp(34px, 4.5vw, 58px);

    line-height: 1.1;

    letter-spacing: -2px;
}


.about-mission-box h2 span {
    color: #b8f5d0;
}


.about-mission-box p {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin:
        24px auto 0;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-cta {
    padding: 100px 0;

    background:
        #101828;
}


.about-cta-content {
    max-width: 800px;
}


.about-cta .about-label {
    color: #6ee7a5;
}


.about-cta h2 {
    margin: 0;

    color: var(--white);

    font-size:
        clamp(40px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.about-cta h2 span {
    color: #6ee7a5;
}


.about-cta p {
    max-width: 650px;

    margin:
        25px 0 32px;

    color: var(--gray-400);

    font-size: 17px;

    line-height: 1.7;
}


.about-cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   ABOUT BUTTONS
========================================================= */

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding:
        0 24px;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.about-btn:hover {
    transform:
        translateY(-3px);
}


.about-btn-primary {
    color: var(--white);

    background: var(--primary);
}


.about-btn-primary:hover {
    background: var(--primary-dark);
}


.about-btn-secondary {
    color: var(--white);

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    background: transparent;
}


.about-btn-secondary:hover {
    border-color: var(--white);

    background:
        rgba(255, 255, 255, 0.06);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-two-column {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-what-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-what-content {
        max-width: 100%;
    }


    .about-what-visual {
        min-height: auto;
    }


    .about-what-image {
        max-width: 550px;
    }


    .about-reason-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 700px) {

    .about-section {
        padding: 75px 0;
    }


    .about-hero {
        padding:
            80px 0 85px;
    }


    .about-hero h1 {
        letter-spacing: -2px;
    }


    .about-hero p {
        font-size: 16px;
    }


    .about-simple-list {
        grid-template-columns: 1fr;
    }


    .about-image-glow {
        width: 320px;
        height: 320px;
    }


    .about-reason-grid {
        grid-template-columns: 1fr;
    }


    .about-reason-card {
        min-height: auto;
    }


    .about-reason-number {
        margin-bottom: 35px;
    }


    .about-mission {
        padding: 75px 0;
    }


    .about-mission-box {
        padding:
            50px 25px;

        border-radius: 22px;
    }


    .about-cta {
        padding: 75px 0;
    }


    .about-cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .about-btn {
        width: 100%;
    }

}


@media (max-width: 500px) {

    .about-hero h1 {
        font-size: 43px;
    }


    .about-heading h2,
    .about-what-content h2,
    .about-centered h2 {
        font-size: 36px;
    }


    .about-mission-box h2 {
        font-size: 34px;
    }


    .about-what-visual {
        padding:
            10px 0;
    }


    .about-what-image {
        width: 100%;
    }

}
/* =========================================================
   WHERE TO FIND US
   ========================================================= */

.about-contact-section {
    padding: 100px 0;
    background: #f8faf9;
}


/* ---------------------------------------------------------
   CONTACT HEADING
   --------------------------------------------------------- */

.about-contact-heading {
   /* max-width: 760px;*/
    margin-bottom: 55px;
}

.about-contact-heading h2 {
    margin: 12px 0 20px;

    color: var(--dark);

    font-size: clamp(36px, 4.5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.about-contact-heading h2 span {
    color: var(--primary);
}

.about-contact-heading p {
    /*max-width: 620px;*/

    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   CONTACT GRID
   --------------------------------------------------------- */

.about-contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.5fr;

    gap: 25px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   MAIN COMPANY CARD
   --------------------------------------------------------- */

.about-contact-main {
    padding: 38px;

    border: 1px solid var(--gray-200);

    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 12px 35px
        rgba(16, 24, 40, 0.05);
}

.about-contact-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 25px;

    font-weight: 800;
}

.about-contact-main h3 {
    max-width: 330px;

    margin: 0 0 14px;

    color: var(--dark);

    font-size: 25px;

    line-height: 1.25;
}

.about-contact-main > p {
    margin: 0 0 30px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   CONTACT DETAILS
   --------------------------------------------------------- */

.about-contact-details {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.about-contact-details a,
.about-contact-details > div {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px;

    border-radius: 14px;

    text-decoration: none;

    background: #f7faf8;
}

.about-contact-details a {
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.about-contact-details a:hover {
    background: var(--primary-light);

    transform: translateX(4px);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--white);

    color: var(--primary);

    font-size: 18px;

    box-shadow:
        0 4px 12px
        rgba(16, 24, 40, 0.06);
}

.about-contact-details small {
    display: block;

    margin-bottom: 3px;

    color: var(--gray-400);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.about-contact-details strong {
    display: block;

    color: var(--dark);

    font-size: 14px;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   OFFICE GRID
   --------------------------------------------------------- */

.about-office-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* ---------------------------------------------------------
   OFFICE CARD
   --------------------------------------------------------- */

.about-office-card {
    padding: 30px;

    border: 1px solid var(--gray-200);

    border-radius: 22px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-office-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 152, 70, 0.25);

    box-shadow:
        0 18px 40px
        rgba(16, 24, 40, 0.07);
}


/* ---------------------------------------------------------
   OFFICE TOP
   --------------------------------------------------------- */

.about-office-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}

.about-office-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-light);

    font-size: 17px;
}

.about-office-label {
    color: var(--gray-400);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* ---------------------------------------------------------
   OFFICE CONTENT
   --------------------------------------------------------- */

.about-office-card h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 22px;
}

.about-office-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   BASKIT OFFICE HIGHLIGHT
   --------------------------------------------------------- */

.about-office-highlight {
    border-color:
        rgba(0, 152, 70, 0.22);

    background:
        linear-gradient(
            145deg,
            #f0fff6,
            #ffffff
        );
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {
	.about-hero {
        padding: 65px 0;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .about-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-content .hero-buttons {
        justify-content: center;
    }

    .about-hero-visual {
        min-height: auto;

        order: 2;
    }

    .about-hero-image {
        max-width: 460px;
    }


    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .about-office-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {
	.about-hero {
        padding: 45px 0;
    }

    .about-hero-grid {
        gap: 35px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-hero-image {
        max-width: 100%;
        border-radius: 20px;
    }

    .about-hero-glow {
        width: 230px;
        height: 230px;
    }

    .about-contact-section {
        padding: 70px 0;
    }

    .about-contact-heading {
        margin-bottom: 35px;
    }

    .about-contact-main {
        padding: 28px;
    }

    .about-office-grid {
        grid-template-columns: 1fr;
    }

    .about-office-card {
        padding: 25px;
    }

}