/* ==========================================================
   NEW WORLD CLASS CLEANERS
   ABOUT PAGE
   ========================================================== */


/* ==========================================================
   1. PAGE
   ========================================================== */

.about-page {
    margin: 0;

    background: #ffffff;
    color: #082c61;
}


/* ==========================================================
   2. HERO
   ========================================================== */

.about-hero {
    position: relative;
    overflow: hidden;

    padding: 68px 0;

    background:
        linear-gradient(
            115deg,
            #052958 0%,
            #075c94 58%,
            #0782bd 100%
        );

    color: #ffffff;
}


.about-hero::after {
    content: "";

    position: absolute;
    top: -220px;
    right: -140px;

    width: 570px;
    height: 570px;

    border: 75px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


.about-hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    align-items: center;

    gap: 75px;
}


/* ----------------------------------------------------------
   HERO COPY
   ---------------------------------------------------------- */

.about-hero-copy {
    max-width: 700px;
}


.about-kicker,
.about-section-kicker,
.about-card-kicker,
.panel-kicker {
    display: block;

    color: #0872ad;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
}


.about-kicker {
    margin-bottom: 14px;

    color: #96daf7;
}


.about-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(45px, 5vw, 64px);
    line-height: 0.98;

    letter-spacing: -2px;
}


.about-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #91d8f7;
}


.about-hero-copy > p {
    max-width: 650px;

    margin: 0;

    color: #e1f0f8;

    font-size: 18px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   HERO PHONE
   ---------------------------------------------------------- */

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 25px;

    margin-top: 30px;
}


.about-phone-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 800;
}


.about-phone-link span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);
}


.about-phone-link:hover {
    color: #bce8fb;
}


/* ==========================================================
   3. HERO STANDARD CARD
   ========================================================== */

.about-standard-card {
    position: relative;

    padding: 34px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.11);

    box-shadow:
        0 20px 45px rgba(0, 25, 52, 0.18);

    backdrop-filter: blur(6px);
}


.about-logo-circle {
    width: 84px;
    height: 84px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #ffffff;
}


.about-logo-circle img {
    width: 70px;
    height: 70px;

    object-fit: contain;
}


.about-card-kicker {
    margin-bottom: 6px;

    color: #9edaf5;
}


.about-standard-card h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 28px;
}


.about-standard-card > p {
    margin: 0 0 22px;

    color: #d5eaf4;

    font-size: 14px;
    line-height: 1.5;
}


.about-card-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.about-card-points div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


.about-card-points span {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    flex: 0 0 22px;

    border-radius: 50%;

    background: #ffffff;
    color: #0769a5;

    font-size: 11px;
}


/* ==========================================================
   4. STORY
   ========================================================== */

.about-story {
    padding: 65px 0;

    background: #ffffff;
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(330px, 0.85fr);

    align-items: center;

    gap: 70px;
}


.about-section-kicker {
    margin-bottom: 9px;
}


.about-story-copy h2,
.about-local-copy h2 {
    margin: 0 0 16px;

    color: #082f66;

    font-size: 38px;
    line-height: 1.08;
}


.about-story-copy p {
    max-width: 660px;

    color: #4d6477;

    font-size: 16px;
    line-height: 1.65;
}


.about-story-copy .about-story-lead {
    color: #173b60;

    font-size: 19px;
    font-weight: 700;
}


.story-link {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-top: 8px;

    color: #0765a3;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
}


.story-link:hover {
    text-decoration: underline;
}


/* ==========================================================
   5. APPROACH PANEL
   ========================================================== */

.about-story-panel {
    padding: 34px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #073665,
            #076fa8
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(6, 55, 95, 0.14);
}


.panel-kicker {
    margin-bottom: 7px;

    color: #9edaf5;
}


.about-story-panel h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 26px;
}


.approach-item {
    display: grid;
    grid-template-columns: 46px 1fr;

    gap: 15px;

    padding: 19px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.16);
}


.approach-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

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

    color: #a6ddf5;

    font-size: 12px;
    font-weight: 900;
}


.approach-item strong {
    color: #ffffff;

    font-size: 15px;
}


.approach-item p {
    margin: 5px 0 0;

    color: #cee6f1;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   6. VALUES
   ========================================================== */

.about-values {
    padding: 65px 0;

    background: #f3f9fc;
}


.about-heading {
    max-width: 700px;

    margin: 0 auto 38px;

    text-align: center;
}


.about-heading h2 {
    margin: 7px 0 10px;

    color: #082f66;

    font-size: 38px;
}


.about-heading p {
    margin: 0;

    color: #657d8e;

    font-size: 16px;
    line-height: 1.55;
}


.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.about-value {
    padding: 28px 24px;

    border: 1px solid #d9e6ed;
    border-radius: 9px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 7px 20px rgba(7, 53, 88, 0.04);
}


.value-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #eaf6fc;
    color: #0769a7;

    font-size: 23px;
    font-weight: 900;
}


.about-value h3 {
    margin: 0 0 9px;

    color: #092f68;

    font-size: 18px;
}


.about-value p {
    margin: 0;

    color: #647b8d;

    font-size: 13px;
    line-height: 1.55;

}


/* ==========================================================
   7. LOCAL SERVICE
   ========================================================== */

.about-local {
    padding: 65px 0;

    background: #ffffff;
}


.about-local-grid {
    display: grid;
    grid-template-columns: 400px 1fr;

    align-items: stretch;

    gap: 60px;
}


/* ----------------------------------------------------------
   GOOGLE MAP
   ---------------------------------------------------------- */

.about-local-badge {
    position: relative;

    min-height: 320px;

    overflow: hidden;

    border: 1px solid #d6e5ed;
    border-radius: 10px;

    background: #eaf4f9;

    box-shadow:
        0 10px 28px rgba(6, 55, 95, 0.10);
}


.about-map {
    width: 100%;
    height: 100%;
    min-height: 320px;

    display: block;

    border: 0;
}


/* ----------------------------------------------------------
   LOCAL COPY
   ---------------------------------------------------------- */

.about-local-copy {
    max-width: 700px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-local-copy > p {
    color: #536b7e;

    font-size: 16px;
    line-height: 1.65;
}


/* ----------------------------------------------------------
   LOCATION DETAILS
   ---------------------------------------------------------- */

.local-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 27px;
}


.local-details > div {
    padding: 17px 0;

    border-top: 2px solid #dcebf2;
}


.local-details span {
    display: block;

    margin-bottom: 5px;

    color: #7890a0;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
}


.local-details strong,
.local-details a {
    color: #082f66;

    text-decoration: none;

    font-size: 17px;
    font-weight: 800;
}


.local-details a:hover {
    color: #0872ad;

    text-decoration: underline;
}


/* ==========================================================
   8. STANDARD STRIP
   ========================================================== */

.about-standard-strip {
    padding: 25px 0;

    border-top: 1px solid #d6e5ed;
    border-bottom: 1px solid #d6e5ed;

    background: #eef7fb;
}


.about-standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.about-standard-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 5px 20px;

    border-right: 1px solid #c8dce6;

    text-align: center;
}


.about-standard-grid > div:last-child {
    border-right: 0;
}


.about-standard-grid strong {
    color: #092f68;

    font-size: 15px;
}


.about-standard-grid span {
    margin-top: 4px;

    color: #6e8393;

    font-size: 11px;
}


/* ==========================================================
   9. CALL TO ACTION
   ========================================================== */

.about-cta {
    padding: 43px 0;

    background:
        linear-gradient(
            110deg,
            #073462,
            #006ca5
        );

    color: #ffffff;
}


.about-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


.about-cta-row > div > span {
    display: block;

    margin-bottom: 5px;

    color: #99d9f5;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
}


.about-cta h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 30px;
}


.about-cta p {
    margin: 0;

    color: #d5eaf4;

    font-size: 14px;
}


.about-cta-button {
    flex: 0 0 auto;

    background: #ffffff;
    color: #075b9c;
}


.about-cta-button:hover {
    background: #edf8fd;
}


/* ==========================================================
   10. FOOTER
   ========================================================== */

.about-page footer a {
    color: #075b9c;

    text-decoration: none;
}


.about-page .footer-brand {
    color: #082c61;
}


.about-page .footer-logo {
    width: 55px;
    height: 55px;

    object-fit: contain;
}


/* ==========================================================
   11. TABLET
   ========================================================== */

@media (max-width: 950px) {

    .about-hero-grid {
        grid-template-columns: 1fr 320px;

        gap: 40px;
    }


    .about-story-grid {
        grid-template-columns: 1fr 360px;

        gap: 40px;
    }


    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-local-grid {
        grid-template-columns: 340px 1fr;

        gap: 40px;
    }

}


/* ==========================================================
   12. SMALL TABLET
   ========================================================== */

@media (max-width: 800px) {

    .about-hero {
        padding: 48px 0;
    }


    .about-hero-grid,
    .about-story-grid,
    .about-local-grid {
        grid-template-columns: 1fr;
    }


    .about-standard-card {
        max-width: 480px;
    }


    .about-local-badge,
    .about-map {
        min-height: 350px;
    }


    .about-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* ==========================================================
   13. MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .about-hero {
        padding: 40px 0;
    }


    .about-hero h1 {
        font-size: 40px;
    }


    .about-hero-copy > p {
        font-size: 16px;
    }


    .about-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }


    .about-story,
    .about-values,
    .about-local {
        padding: 45px 0;
    }


    .about-story-copy h2,
    .about-local-copy h2,
    .about-heading h2 {
        font-size: 31px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;
    }


    .about-local-badge,
    .about-map {
        min-height: 280px;
    }


    .local-details {
        grid-template-columns: 1fr;
    }


    .about-standard-grid {
        grid-template-columns: 1fr 1fr;

        gap: 20px 0;
    }


    .about-standard-grid > div {
        border-right: 0;
    }


    .about-cta h2 {
        font-size: 26px;
    }


    .about-cta-button {
        width: 100%;
    }

}


/* ==========================================================
   14. SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .about-hero h1 {
        font-size: 35px;
    }


    .about-standard-card,
    .about-story-panel {
        padding: 25px 21px;
    }


    .about-card-points {
        grid-template-columns: 1fr;
    }


    .about-standard-grid {
        grid-template-columns: 1fr;
    }

}