
/*==========================================================
ABOUT PAGE
==========================================================*/

.about-page {
    background: #fffdf8;
    color: #172033;
}


/*==========================================================
ABOUT HERO
==========================================================*/

.about-hero {
    position: relative;
    padding: 45px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 30%, rgba(245,212,134,.22), transparent 30%),
        linear-gradient(135deg, #fff8e8, #fffdf8);
}

.about-hero-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.about-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 20px;
    border-radius: 30px;
    background: #f8e4ad;
    color: #7b3208;
    font-size: 15px;
    font-weight: 700;
}

.about-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    color: #172033;
}

.about-hero h1 span {
    color: #9b1c12;
}

.about-hero p {
    max-width: 720px;
    margin: auto;
    font-size: 19px;
    line-height: 1.9;
    color: #5e6470;
}


/*==========================================================
INTRO
==========================================================*/

.about-intro {
    padding: 90px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    position: relative;
    max-width: 480px;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(80,50,10,.16);
}

.about-image-badge {
    position: absolute;
    right: -25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    padding: 18px 25px;
    border-radius: 15px;
    background: #7b3208;
    color: #fff;
    box-shadow: 0 12px 30px rgba(80,40,10,.25);
}

.about-image-badge strong {
    font-size: 22px;
}

.about-image-badge span {
    color: #f5d486;
}

.about-intro-content {
    max-width: 650px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #9b1c12;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.about-intro-content h2,
.about-approach h2 {
    margin: 0 0 22px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    color: #172033;
}

.about-intro-content h2 span,
.about-approach h2 span,
.about-trust h2 span {
    color: #9b1c12;
}

.about-intro-content p,
.about-approach-content > p {
    margin: 0 0 18px;
    color: #606773;
    font-size: 17px;
    line-height: 1.9;
}

.about-btn,
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 24px;
    border-radius: 10px;
    background: #9b1c12;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.about-btn:hover,
.about-cta-btn:hover {
    background: #7b160e;
    color: #fff;
    transform: translateY(-2px);
}


/*==========================================================
EXPERTISE
==========================================================*/

.about-expertise {
    padding: 90px 0;
    background: #fff9ed;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 44px);
    color: #172033;
}

.section-heading h2 span {
    color: #9b1c12;
}

.section-heading p {
    margin: 0;
    color: #70757e;
    font-size: 17px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.expertise-card {
    padding: 30px 25px;
    border: 1px solid #eadfce;
    border-radius: 16px;
    background: #fff;
    transition: .3s ease;
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(80,50,10,.10);
}

.expertise-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #f8e4ad;
    color: #8b3a08;
    font-size: 25px;
}

.expertise-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 21px;
}

.expertise-card p {
    margin: 0;
    color: #70757e;
    line-height: 1.75;
}


/*==========================================================
APPROACH
==========================================================*/

.about-approach {
    padding: 100px 0;
    background: #fff;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.approach-list {
    margin-top: 30px;
}

.approach-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.approach-number {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9b1c12;
    color: #fff;
    font-weight: 800;
}

.approach-item h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.approach-item p {
    margin: 0;
    color: #737780;
    line-height: 1.6;
}

.approach-visual {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background:
        radial-gradient(circle, rgba(245,212,134,.2), transparent 55%),
        linear-gradient(145deg, #241327, #5b2410);
}

.cosmic-card {
    width: 75%;
    padding: 55px 30px;
    text-align: center;
    border: 1px solid rgba(245,212,134,.35);
    border-radius: 25px;
    background: rgba(255,255,255,.07);
    color: #fff;
    backdrop-filter: blur(8px);
}

.cosmic-icon {
    margin-bottom: 20px;
    color: #f5d486;
    font-size: 55px;
}

.cosmic-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #fff;
}

.cosmic-card p {
    margin: 0;
    color: #eadfc9;
}


/*==========================================================
TRUST
==========================================================*/

.about-trust {
    padding: 90px 0;
    background: #fff9ed;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    padding: 30px 22px;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eadfce;
}

.trust-card > i {
    display: inline-flex;
    margin-bottom: 16px;
    color: #9b1c12;
    font-size: 32px;
}

.trust-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.trust-card p {
    margin: 0;
    color: #70757e;
    line-height: 1.7;
}


/*==========================================================
CTA
==========================================================*/

.about-cta {
    padding: 70px 0;
    background: #fff;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 50px;
    border-radius: 24px;
    background: linear-gradient(135deg, #7b3208, #9b1c12);
    color: #fff;
    box-shadow: 0 20px 50px rgba(100,40,10,.18);
}

.about-cta-box > div {
    max-width: 700px;
}

.about-cta-box span {
    color: #f5d486;
    font-weight: 700;
}

.about-cta-box h2 {
    margin: 10px 0;
    font-size: clamp(27px, 4vw, 40px);
    color: #fff;
}

.about-cta-box p {
    margin: 0;
    color: #f7ead5;
    font-size: 17px;
}

.about-cta-btn {
    flex-shrink: 0;
    background: #f5d486;
    color: #6d3207;
}

.about-cta-btn:hover {
    background: #fff;
    color: #6d3207;
}


/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width: 991px) {

    .about-hero {
        padding: 75px 0;
    }

    .about-intro,
    .about-expertise,
    .about-approach,
    .about-trust {
        padding: 70px 0;
    }

    .about-intro-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        margin: auto;
    }

    .about-intro-content {
        max-width: 100%;
        text-align: center;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-content {
        text-align: center;
    }

    .approach-list {
        text-align: left;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-box {
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .about-hero {
        padding: 60px 0;
    }

    .about-hero p {
        font-size: 16px;
        line-height: 1.75;
    }

    .about-intro,
    .about-expertise,
    .about-approach,
    .about-trust {
        padding: 55px 0;
    }

    .about-image-badge {
        right: 10px;
        bottom: 15px;
        padding: 12px 17px;
    }

    .about-intro-content h2,
    .about-approach h2 {
        font-size: 30px;
    }

    .expertise-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .approach-visual {
        min-height: 300px;
    }

    .cosmic-card {
        width: 85%;
        padding: 40px 20px;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }

}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 40px;
    }

    .about-tag {
        font-size: 13px;
    }

    .about-intro-content p,
    .about-approach-content > p {
        font-size: 15px;
    }

    .expertise-card {
        padding: 25px 20px;
    }

    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }

}