/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            rgba(255, 248, 244, .97),
            rgba(255, 238, 228, .92)
        ),
        url('/frontend/img/about-banner.jpg') center/cover no-repeat;

    color: #24180f;
}


/* =========================================================
   BREADCRUMB - LIGHT COLOR
========================================================= */

.about-hero .breadcrumb {
    margin-bottom: 0;
}

.about-hero .breadcrumb a,
.about-hero .breadcrumb-item {
    color: #9b918b !important;
    text-decoration: none;
}

.about-hero .breadcrumb a:hover {
    color: #f34a00 !important;
}

.about-hero .breadcrumb-item.active {
    color: #b5aaa3 !important;
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: #c9beb7 !important;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    margin: 18px 0;
    color: #24180f;
}

.about-hero h1 span,
.about-intro h2 span,
.why-about-section h2 span,
.about-process h2 span {
    color: #f34a00;
}

.about-hero p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
    color: #756b63;
}


/* =========================================================
   HERO CARD
========================================================= */

.about-hero-card {
    padding: 40px;
    border-radius: 24px;

    background: rgba(255, 255, 255, .78);

    border: 1px solid rgba(243, 74, 0, .14);

    box-shadow:
        0 20px 55px rgba(243, 74, 0, .10);

    backdrop-filter: blur(12px);
}

.solar-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #f34a00;
    color: #fff;

    font-size: 30px;
    margin-bottom: 25px;

    box-shadow: 0 12px 25px rgba(243, 74, 0, .20);
}

.about-hero-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #24180f;
}

.about-hero-card p {
    font-size: 16px;
    margin: 0;
    color: #756b63;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    background: #fff;
}

.about-intro h2,
.why-about-section h2,
.about-process h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 22px;
    color: #24180f;
}

.about-intro p {
    color: #667085;
    line-height: 1.8;
}

.eyebrow {
    display: inline-block;

    color: #f34a00;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 13px;
    font-weight: 700;
}

.eyebrow.light {
    color: #ffb095;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature {
    padding: 28px;

    border: 1px solid #eee1da;
    border-radius: 18px;

    background: #fff;

    transition: .3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(243, 74, 0, .10);
}

.feature-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff0e9;
    color: #f34a00;

    font-size: 22px;
    margin-bottom: 18px;

    transition: .3s ease;
}

.about-feature:hover .feature-icon {
    background: #f34a00;
    color: #fff;
}

.about-feature h4 {
    font-size: 19px;
    font-weight: 700;
    color: #24180f;
}

.about-feature p {
    font-size: 14px;
    margin: 0;
    color: #667085;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #8f2900,
            #b83d00
        );

    color: #fff;
}

.stat-box {
    padding: 20px;
}

.stat-box i {
    font-size: 28px;
    color: #ff9b75;
}

.stat-box h3 {
    margin: 12px 0 5px;

    font-size: 26px;
    font-weight: 800;

    color: #fff;
}

.stat-box p {
    margin: 0;
    color: rgba(255,255,255,.72);
}


/* =========================================================
   MISSION
========================================================= */

.mission-section {
    background: #fff8f4;
}

.mission-card {
    height: 100%;

    padding: 40px;

    border-radius: 22px;

    background: #fff;

    border: 1px solid #eeded7;

    transition: .3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(243, 74, 0, .08);
}

.mission-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #fff0e9;
    color: #f34a00;

    font-size: 25px;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 800;

    margin: 12px 0 18px;

    color: #24180f;
}

.mission-card p {
    color: #667085;
    line-height: 1.8;
}


/* =========================================================
   WHY
========================================================= */

.why-about-section {
    background: #fff;
}

.section-description {
    max-width: 650px;

    color: #667085;

    line-height: 1.7;
}

.why-card {
    height: 100%;

    padding: 32px;

    border: 1px solid #eee1da;
    border-radius: 20px;

    background: #fff;

    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(243, 74, 0, .09);
}

.why-card > i {
    display: inline-flex;

    width: 55px;
    height: 55px;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #fff0e9;
    color: #f34a00;

    font-size: 24px;
    margin-bottom: 20px;

    transition: .3s ease;
}

.why-card:hover > i {
    background: #f34a00;
    color: #fff;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;

    color: #24180f;
}

.why-card p {
    color: #667085;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   PROCESS
========================================================= */

.about-process {
    background: #fff8f4;
}

.process-card {
    position: relative;

    height: 100%;

    padding: 35px 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #eeded7;

    transition: .3s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(243, 74, 0, .08);
}

.process-number {
    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 13px;
    font-weight: 800;

    color: #cbb8ae;
}

.process-card > i {
    display: block;

    font-size: 30px;

    color: #f34a00;

    margin-bottom: 22px;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;

    color: #24180f;
}

.process-card p {
    color: #667085;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #8f2900,
            #b83d00
        );
}

.cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-box h2 {
    color: #fff;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    margin: 12px 0;
}

.cta-box p {
    max-width: 650px;

    color: rgba(255,255,255,.75);

    margin: 0;

    line-height: 1.7;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.about-cta .btn-light {
    color: #f34a00;
    font-weight: 700;

    border: 0;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

    transition: .3s ease;
}

.about-cta .btn-light:hover {
    background: #f34a00;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL ORANGE ACCENTS
========================================================= */

.about-intro a,
.mission-section a,
.why-about-section a,
.about-process a {
    color: #f34a00;
}

.about-intro a:hover,
.mission-section a:hover,
.why-about-section a:hover,
.about-process a:hover {
    color: #d83f00;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-hero {
        padding: 75px 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 575px) {

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-feature,
    .mission-card,
    .why-card {
        padding: 25px;
    }

    .about-hero {
        padding: 60px 0;
    }

    .about-hero-card {
        padding: 28px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 16px;
    }

}