/* ==========================================
CONTRACTS PAGE HERO
========================================== */

.contracts-page-hero {

    background-image:
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2000&q=85");
}



/* ==========================================
CONTRACTS INTRO
========================================== */

.contracts-intro {

    background: white;
}


.contracts-intro-grid {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: end;
}


.contracts-intro-copy {

    border-left: 4px solid var(--yellow);

    padding-left: 30px;
}


.contracts-intro-copy p {

    color: #666;

    line-height: 1.85;
}


.contracts-intro-copy p + p {

    margin-top: 18px;
}



/* ==========================================
CONTRACT NOTICE
========================================== */

.contract-notice-section {

    background: #f4f4f4;

    padding-bottom: 90px;
}


.contract-notice {

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 35px;

    background: #171717;

    color: white;

    padding: 45px 55px;

    border-left: 7px solid var(--yellow);
}


.contract-notice-icon {

    width: 90px;

    height: 90px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 34px;
}


.contract-notice span {

    color: var(--yellow);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contract-notice h3 {

    font-family: var(--heading-font);

    font-size: 36px;

    margin: 7px 0 13px;
}


.contract-notice p {

    color: #aaa;

    line-height: 1.8;

    max-width: 850px;
}



/* ==========================================
CONTRACT TERMS
========================================== */

.contract-terms {

    background: #f4f4f4;
}


.contract-term-grid {

    display: grid;

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

    gap: 20px;
}


.contract-term-card {

    position: relative;

    background: white;

    padding: 45px;

    min-height: 340px;

    border-top: 5px solid var(--yellow);

    overflow: hidden;

    transition: 0.3s ease;
}


.contract-term-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}


.dark-contract-card {

    background: #171717;

    color: white;
}


.contract-term-number {

    position: absolute;

    right: 25px;

    top: 5px;

    font-family: var(--heading-font);

    font-size: 90px;

    font-weight: 800;

    color: rgba(0,0,0,0.04);
}


.dark-contract-card .contract-term-number {

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


.contract-term-icon {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 25px;

    margin-bottom: 25px;
}


.contract-term-card h3 {

    font-family: var(--heading-font);

    font-size: 30px;

    margin-bottom: 14px;
}


.contract-term-card p {

    color: #707070;

    line-height: 1.8;

    font-size: 14px;
}


.dark-contract-card p {

    color: #aaa;
}


.dark-contract-card ul {

    list-style: none;

    margin-top: 22px;

    display: grid;

    gap: 8px;
}


.dark-contract-card li {

    color: #ddd;

    font-size: 13px;
}


.dark-contract-card li::before {

    content: "✓";

    color: var(--yellow);

    font-weight: 900;

    margin-right: 10px;
}


.no-cash {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: var(--yellow);

    font-size: 13px;
}



/* ==========================================
LABOR SECTION
========================================== */

.labor-section {

    background: #151515;

    color: white;
}


.labor-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}


.labor-heading {

    position: sticky;

    top: 130px;

    align-self: start;
}


.labor-heading h2 span {

    display: block;

    color: var(--yellow);
}


.labor-heading p {

    color: #aaa;

    margin-top: 25px;

    line-height: 1.8;
}


.labor-rules {

    display: grid;

    gap: 20px;
}


.labor-rule {

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 35px;

    background: #202020;

    border-left: 4px solid var(--yellow);
}


.labor-rule-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 27px;
}


.labor-rule span {

    color: var(--yellow);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;
}


.labor-rule h3 {

    font-family: var(--heading-font);

    font-size: 30px;

    margin: 5px 0 12px;
}


.labor-rule p {

    color: #aaa;

    line-height: 1.75;

    font-size: 14px;
}


.labor-rule p + p {

    margin-top: 12px;
}



/* ==========================================
CANCELLATION
========================================== */

.cancellation-section {

    background: white;
}


.cancellation-grid {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 70px;

    align-items: center;
}


.cancellation-icon {

    width: 270px;

    height: 270px;

    background: var(--yellow);

    display: grid;

    place-items: center;

    font-size: 80px;

    position: relative;
}


.cancellation-icon::after {

    content: "";

    position: absolute;

    inset: 18px;

    border: 2px dashed rgba(0,0,0,0.3);
}


.cancellation-content p {

    color: #666;

    line-height: 1.8;

    max-width: 720px;

    margin-top: 20px;
}


.cancellation-warning {

    display: inline-flex;

    gap: 12px;

    align-items: center;

    background: #171717;

    color: white;

    padding: 17px 22px;

    margin-top: 30px;

    font-size: 13px;

    font-weight: 700;
}


.cancellation-warning i {

    color: var(--yellow);
}



/* ==========================================
ADDITIONAL TERMS
========================================== */

.additional-terms {

    background: #f4f4f4;
}


.additional-terms-grid {

    display: grid;

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

    gap: 18px;
}


.additional-term {

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 22px;

    padding: 32px;

    background: white;

    border-bottom: 4px solid transparent;

    transition: 0.25s ease;
}


.additional-term:hover {

    border-color: var(--yellow);

    transform: translateY(-4px);
}


.additional-term > i {

    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 22px;
}


.additional-term h3 {

    font-family: var(--heading-font);

    font-size: 26px;

    margin-bottom: 8px;
}


.additional-term p {

    color: #777;

    line-height: 1.7;

    font-size: 13px;
}



/* ==========================================
MOBILIZATION
========================================== */

.mobilization-section {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=85")
        center / cover;

    color: white;
}


.mobilization-overlay {

    position: absolute;

    inset: 0;

    background: rgba(10,10,10,0.9);
}


.mobilization-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 40px;

    align-items: center;
}


.mobilization-icon {

    width: 100px;

    height: 100px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 38px;
}


.mobilization-content span {

    color: var(--yellow);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}


.mobilization-content h2 {

    font-size: 55px;

    margin-top: 5px;
}


.mobilization-content p {

    color: #bbb;

    max-width: 700px;

    margin-top: 15px;

    line-height: 1.8;
}


.mobilization-rate {

    margin-top: 25px;

    display: flex;

    align-items: baseline;

    gap: 12px;
}


.mobilization-rate strong {

    color: var(--yellow);

    font-family: var(--heading-font);

    font-size: 52px;
}


.mobilization-rate span {

    color: white;
}



/* ==========================================
PRICE VALIDITY
========================================== */

.pricing-validity {

    background: white;
}


.pricing-validity-grid {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 70px;

    align-items: center;
}


.pricing-date {

    background: var(--yellow);

    min-height: 270px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.pricing-date > span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.pricing-date strong {

    font-family: var(--heading-font);

    font-size: 85px;

    line-height: 0.9;
}


.pricing-date small {

    font-family: var(--heading-font);

    font-size: 35px;

    font-weight: 800;
}


.pricing-validity-content p {

    color: #666;

    line-height: 1.8;

    margin-top: 18px;
}



/* ==========================================
FINAL NOTICE
========================================== */

.terms-final-notice {

    background: #111;

    color: white;

    padding: 45px 0;
}


.terms-final-notice .container {

    display: flex;

    align-items: center;

    gap: 25px;
}


.terms-final-notice i {

    color: var(--yellow);

    font-size: 35px;
}


.terms-final-notice strong {

    font-family: var(--heading-font);

    color: var(--yellow);

    font-size: 20px;
}


.terms-final-notice p {

    color: #aaa;

    font-size: 13px;

    margin-top: 3px;
}



/* ==========================================
CONTRACTS RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .contracts-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .labor-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .labor-heading {

        position: static;
    }


    .cancellation-grid,
    .pricing-validity-grid {

        grid-template-columns: 240px 1fr;

        gap: 45px;
    }


    .cancellation-icon {

        width: 220px;

        height: 220px;
    }

}



@media (max-width: 750px) {

    .contract-term-grid,
    .additional-terms-grid {

        grid-template-columns: 1fr;
    }


    .contract-notice {

        grid-template-columns: 1fr;

        padding: 35px;
    }


    .labor-rule {

        grid-template-columns: 1fr;
    }


    .cancellation-grid,
    .pricing-validity-grid {

        grid-template-columns: 1fr;
    }


    .mobilization-content {

        grid-template-columns: 1fr;
    }

}



@media (max-width: 550px) {

    .contract-term-card {

        padding: 35px 25px;
    }


    .additional-term {

        grid-template-columns: 1fr;
    }


    .mobilization-section {

        padding: 70px 0;
    }


    .mobilization-content h2 {

        font-size: 42px;
    }


    .pricing-date {

        min-height: 220px;
    }

}

/
* ==========================================
CONTACT PAGE HERO
========================================== */

.contact-page-hero {

    background-image:
        url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=2000&q=85");
}



/* ==========================================
CONTACT INTRO
========================================== */

.contact-intro {

    background: #ffffff;
}


.contact-intro-grid {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: end;
}


.contact-intro-text {

    border-left: 4px solid var(--yellow);

    padding-left: 30px;
}


.contact-intro-text p {

    color: #666;

    line-height: 1.85;
}


.contact-intro-text p + p {

    margin-top: 18px;
}



/* ==========================================
CONTACT INFO CARDS
========================================== */

.contact-info-section {

    background: #f4f4f4;

    padding: 0 0 100px;
}


.contact-info-grid {

    display: grid;

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

    gap: 20px;
}


.contact-info-card {

    position: relative;

    min-height: 340px;

    background: white;

    padding: 40px;

    border-top: 5px solid var(--yellow);

    transition: 0.3s ease;
}


.contact-info-card:hover {

    transform: translateY(-7px);

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


.contact-info-card.dark-card {

    background: #171717;

    color: white;
}


.contact-info-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 25px;

    margin-bottom: 30px;
}


.contact-info-card > span {

    color: #999;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.dark-card > span {

    color: var(--yellow);
}


.contact-info-card h3 {

    font-family: var(--heading-font);

    font-size: 32px;

    margin: 8px 0 14px;
}


.contact-info-card p {

    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;
}


.dark-card p {

    color: #aaa;
}


.contact-info-card > a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 800;

    font-size: 14px;

    border-bottom: 3px solid var(--yellow);

    padding-bottom: 4px;
}


.contact-info-card > a i {

    font-size: 12px;
}



/* ==========================================
QUOTE SECTION
========================================== */

.quote-section {

    background: #151515;

    color: white;
}


.quote-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


.quote-content {

    position: sticky;

    top: 130px;
}


.quote-content .section-label {

    color: var(--yellow);
}


.quote-content h2 span {

    display: block;

    color: var(--yellow);
}


.quote-content > p {

    color: #aaa;

    margin-top: 25px;

    line-height: 1.8;
}


.quote-features {

    margin-top: 40px;

    display: grid;

    gap: 16px;
}


.quote-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #ddd;

    font-size: 14px;
}


.quote-feature > div {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;
}


.quote-feature i {

    font-size: 12px;
}


.quote-safety {

    margin-top: 45px;

    padding: 25px;

    border: 1px solid #333;

    display: flex;

    align-items: center;

    gap: 18px;
}


.quote-safety > i {

    color: var(--yellow);

    font-size: 35px;
}


.quote-safety div {

    display: flex;

    flex-direction: column;
}


.quote-safety strong {

    font-family: var(--heading-font);

    font-size: 22px;
}


.quote-safety span {

    color: #888;

    font-size: 12px;
}



/* ==========================================
CONTACT FORM
========================================== */

.contact-form-wrap {

    background: white;

    color: #111;

    padding: 50px;

    border-top: 6px solid var(--yellow);

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}


.form-heading {

    margin-bottom: 35px;
}


.form-heading span {

    color: #888;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}


.form-heading h3 {

    font-family: var(--heading-font);

    font-size: 38px;

    line-height: 1;

    margin-top: 7px;
}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 8px;

    color: #333;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #d8d8d8;

    background: #f7f7f7;

    color: #111;

    padding: 15px 16px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    outline: none;

    transition: 0.2s ease;
}


.form-group input,
.form-group select {

    min-height: 52px;
}


.form-group textarea {

    resize: vertical;

    min-height: 150px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--yellow-dark);

    background: white;

    box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}


.form-submit {

    border: none;

    cursor: pointer;

    width: 100%;

    min-height: 58px;

    font-size: 14px;
}


.form-message {

    display: none;

    margin-top: 20px;

    padding: 15px 18px;

    font-size: 13px;

    font-weight: 600;
}


.form-message.success {

    display: block;

    background: #eaf8ed;

    border-left: 4px solid #31a44b;

    color: #236a32;
}


.form-message.error {

    display: block;

    background: #fff0f0;

    border-left: 4px solid #d33;

    color: #a12626;
}



/* ==========================================
CONTACT SERVICE AREA
========================================== */

.contact-area {

    background: #f4f4f4;
}


.contact-area-grid {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    align-items: center;
}


.area-graphic {

    display: flex;

    justify-content: center;
}


.area-circle {

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: var(--yellow);

    color: #111;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    text-align: center;
}


.area-circle::before {

    content: "";

    position: absolute;

    inset: 18px;

    border: 2px dashed rgba(0,0,0,0.3);

    border-radius: 50%;
}


.area-circle i {

    position: relative;

    font-size: 55px;

    margin-bottom: 12px;
}


.area-circle strong {

    position: relative;

    font-family: var(--heading-font);

    font-size: 60px;

    line-height: 0.9;
}


.area-circle span {

    position: relative;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-top: 10px;
}


.contact-area-content > p {

    color: #666;

    line-height: 1.8;

    max-width: 650px;

    margin-top: 22px;
}


.area-locations {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.area-locations div {

    background: white;

    border: 1px solid #ddd;

    padding: 13px 18px;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 13px;

    font-weight: 700;
}


.area-locations i {

    color: var(--yellow-dark);
}



/* ==========================================
FINAL CONTACT CTA
========================================== */

.contact-final-cta {

    background: var(--yellow);

    padding: 75px 0;
}


.contact-final-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.contact-final-content > div > span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-final-content h2 {

    font-size: 57px;

    margin-top: 6px;
}


.contact-final-content p {

    color: #444;

    margin-top: 10px;
}



/* ==========================================
CONTACT RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .contact-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contact-info-grid {

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


    .contact-info-card:last-child {

        grid-column: span 2;
    }


    .quote-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .quote-content {

        position: static;
    }


    .contact-area-grid {

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

}



@media (max-width: 750px) {

    .contact-info-grid {

        grid-template-columns: 1fr;
    }


    .contact-info-card:last-child {

        grid-column: auto;
    }


    .form-row {

        grid-template-columns: 1fr;
    }


    .contact-area-grid {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .contact-area-content p {

        margin-left: auto;
        margin-right: auto;
    }


    .area-locations {

        justify-content: center;
    }


    .contact-final-content {

        display: block;
    }


    .contact-final-content .btn {

        margin-top: 30px;
    }

}



@media (max-width: 550px) {

    .contact-form-wrap {

        padding: 35px 22px;
    }


    .form-heading h3 {

        font-size: 32px;
    }


    .area-circle {

        width: 240px;

        height: 240px;
    }


    .area-circle strong {

        font-size: 48px;
    }


    .contact-final-content h2 {

        font-size: 44px;
    }

}
/* ==========================================
SERVICES PAGE HERO
========================================== */

.services-page-hero {

    background-image:
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85");
}



/* ==========================================
SERVICES INTRO
========================================== */

.services-intro {

    background: white;
}


.services-intro-grid {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: end;
}


.services-intro-copy {

    border-left: 4px solid var(--yellow);

    padding-left: 30px;
}


.services-intro-copy p {

    color: #666;

    line-height: 1.85;
}


.services-intro-copy p + p {

    margin-top: 18px;
}



/* ==========================================
DETAILED SERVICES
========================================== */

.services-detail-section {

    background: #f4f4f4;

    padding: 30px 0 100px;
}


.service-detail {

    position: relative;

    min-height: 380px;

    background: white;

    margin-bottom: 22px;

    padding: 55px 70px;

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 45px;

    align-items: center;

    overflow: hidden;

    border-left: 6px solid var(--yellow);

    transition: 0.3s ease;
}


.service-detail:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}


.service-detail.reverse {

    background: #171717;

    color: white;

    border-left-color: #171717;

    border-right: 6px solid var(--yellow);
}


.service-detail-number {

    position: absolute;

    right: 35px;

    top: 10px;

    font-family: var(--heading-font);

    font-size: 120px;

    line-height: 1;

    font-weight: 800;

    color: rgba(0,0,0,0.045);
}


.service-detail.reverse .service-detail-number {

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


.service-detail-icon {

    width: 100px;

    height: 100px;

    background: var(--yellow);

    color: #111;

    display: grid;

    place-items: center;

    font-size: 38px;

    position: relative;

    z-index: 2;
}


.service-detail-content {

    position: relative;

    z-index: 2;

    max-width: 800px;
}


.service-detail-content > span {

    color: var(--yellow-dark);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}


.service-detail.reverse .service-detail-content > span {

    color: var(--yellow);
}


.service-detail-content h2 {

    font-size: 48px;

    margin-top: 7px;

    margin-bottom: 20px;
}


.service-detail-content p {

    color: #6b6b6b;

    line-height: 1.8;

    max-width: 760px;
}


.service-detail-content p + p {

    margin-top: 14px;
}


.service-detail.reverse .service-detail-content p {

    color: #aaa;
}


.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


.service-tags span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #f1f1f1;

    color: #333;

    padding: 9px 14px;

    font-size: 12px;

    font-weight: 700;
}


.service-detail.reverse .service-tags span {

    background: #282828;

    color: #ddd;
}


.service-tags i {

    color: #CC6200;
}


.service-detail.reverse .service-tags i {

    color: var(--yellow);
}



/* ==========================================
PROJECT TYPES
========================================== */

.project-types {

    background: white;
}


.project-type-grid {

    display: grid;

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

    gap: 18px;
}


.project-type-card {

    text-align: center;

    padding: 45px 25px;

    background: #f5f5f5;

    border-bottom: 5px solid transparent;

    transition: 0.25s ease;
}


.project-type-card:hover {

    background: #111;

    color: white;

    transform: translateY(-6px);

    border-color: var(--yellow);
}


.project-type-card i {

    width: 75px;

    height: 75px;

    display: grid;

    place-items: center;

    margin: 0 auto 25px;

    background: var(--yellow);

    color: #111;

    font-size: 30px;
}


.project-type-card h3 {

    font-family: var(--heading-font);

    font-size: 27px;

    margin-bottom: 10px;
}


.project-type-card p {

    color: #777;

    font-size: 14px;
}


.project-type-card:hover p {

    color: #aaa;
}



/* ==========================================
PROCESS
========================================== */

.service-process {

    background: #151515;

    color: white;
}


.service-process .section-heading p {

    color: #aaa;
}


.process-grid {

    display: grid;

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

    gap: 20px;
}


.process-card {

    position: relative;

    min-height: 330px;

    padding: 40px;

    background: #202020;

    border-top: 4px solid var(--yellow);

    overflow: hidden;
}


.process-card > i {

    color: var(--yellow);

    font-size: 38px;

    margin-bottom: 30px;
}


.process-number {

    position: absolute;

    right: 20px;

    top: 5px;

    font-family: var(--heading-font);

    font-size: 80px;

    font-weight: 800;

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


.process-card h3 {

    font-family: var(--heading-font);

    font-size: 30px;

    line-height: 1;

    margin-bottom: 18px;
}


.process-card p {

    color: #aaa;

    line-height: 1.75;

    font-size: 14px;
}



/* ==========================================
SERVICES AREA
========================================== */

.services-area {

    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;

    color: white;

    background:
        url("https://images.unsplash.com/photo-1473445361085-b9a07f55608b?auto=format&fit=crop&w=1800&q=85")
        center / cover;
}


.services-area-overlay {

    position: absolute;

    inset: 0;

    background: rgba(8,8,8,0.88);
}


.services-area-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 100px 1fr auto;

    gap: 35px;

    align-items: center;
}


.services-area-icon {

    width: 90px;

    height: 90px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 35px;
}


.services-area-content span {

    color: var(--yellow);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}


.services-area-content h2 {

    font-size: 50px;

    margin-top: 5px;
}


.services-area-content p {

    color: #bbb;

    margin-top: 10px;

    max-width: 650px;
}



/* ==========================================
SERVICES RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .services-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .project-type-grid {

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


    .services-area-content {

        grid-template-columns: 90px 1fr;
    }


    .services-area-content .btn {

        grid-column: 2;
        justify-self: start;
    }

}



@media (max-width: 800px) {

    .service-detail {

        grid-template-columns: 1fr;

        padding: 45px 35px;

        gap: 30px;
    }


    .service-detail-icon {

        width: 80px;

        height: 80px;

        font-size: 30px;
    }


    .service-detail-content h2 {

        font-size: 42px;
    }


    .process-grid {

        grid-template-columns: 1fr;
    }

}



@media (max-width: 600px) {

    .services-detail-section {

        padding-bottom: 70px;
    }


    .service-detail {

        padding: 38px 25px;

        min-height: auto;
    }


    .service-detail-number {

        font-size: 80px;
    }


    .service-detail-content h2 {

        font-size: 36px;
    }


    .service-tags {

        flex-direction: column;

        align-items: flex-start;
    }


    .project-type-grid {

        grid-template-columns: 1fr;
    }


    .services-area {

        padding: 70px 0;
    }


    .services-area-content {

        grid-template-columns: 1fr;
    }


    .services-area-content .btn {

        grid-column: auto;
    }


    .services-area-content h2 {

        font-size: 42px;
    }

}
/* ==========================================
RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: #1c1c1c;
    background: #ffffff;
    line-height: 1.6;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    max-width: 100%;
}


button {
    font-family: inherit;
}


:root {

    --yellow: #FF7A00;
    --yellow-dark: #CC6200;

    --black: #111111;
    --dark: #191919;
    --charcoal: #242424;

    --gray: #696969;
    --light-gray: #f5f5f5;

    --white: #ffffff;

    --heading-font: "Barlow Condensed", sans-serif;
}


.container {
    width: min(1180px, 90%);
    margin: auto;
}


.section {
    padding: 100px 0;
}



/* ==========================================
HEADER
========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(15, 15, 15, 0.96);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;
}


.header.scrolled {
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}


.nav-container {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

    color: white;
}


.logo-mark {

    background: var(--yellow);
    color: var(--black);

    font-family: var(--heading-font);
    font-weight: 800;

    font-size: 27px;

    line-height: 1;

    padding: 10px 12px;

    transform: skew(-5deg);
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.logo-text strong {

    font-family: var(--heading-font);

    font-size: 20px;

    letter-spacing: 1px;

    line-height: 1;
}


.logo-text span {

    color: #aaa;

    font-size: 9px;

    letter-spacing: 1px;

    margin-top: 5px;
}


.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}


.nav > a {

    color: #ddd;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s;
}


.nav > a:hover,
.nav > a.active {

    color: var(--yellow);
}


.nav .nav-button {

    background: var(--yellow);

    color: #111;

    padding: 12px 20px;

    font-weight: 700;
}


.nav .nav-button:hover {

    color: #111;

    background: white;
}


.mobile-menu-btn {

    display: none;

    border: none;
    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;
}



/* ==========================================
HERO
========================================== */

.hero {

    min-height: 820px;

    position: relative;

    display: flex;
    align-items: center;

    background:
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=85")
    center / cover no-repeat;

    color: white;

    padding-top: 80px;
}


.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,0.96) 0%,
            rgba(8,8,8,0.82) 45%,
            rgba(8,8,8,0.35) 100%
        );
}


.hero-content {

    position: relative;

    z-index: 2;
}


.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px;

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

    border-left: 3px solid var(--yellow);

    color: var(--yellow);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 25px;
}


.hero h1 {

    font-family: var(--heading-font);

    font-size: clamp(70px, 8vw, 118px);

    line-height: 0.86;

    letter-spacing: -2px;

    max-width: 900px;

    margin-bottom: 30px;
}


.hero h1 span {

    color: var(--yellow);

    display: block;
}


.hero > .container > p,
.hero-content > p {

    max-width: 670px;

    color: #d0d0d0;

    font-size: 19px;

    line-height: 1.7;
}


.hero-buttons {

    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


.btn {

    min-height: 52px;

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

    gap: 11px;

    padding: 0 25px;

    font-size: 14px;

    font-weight: 700;

    border: 2px solid transparent;

    transition: all 0.25s ease;
}


.btn i {
    transition: transform 0.25s;
}


.btn:hover i {
    transform: translateX(4px);
}


.btn-yellow {

    background: var(--yellow);

    color: var(--black);
}


.btn-yellow:hover {

    background: white;
}


.btn-outline {

    border-color: rgba(255,255,255,0.7);

    color: white;
}


.btn-outline:hover {

    background: white;

    color: black;
}


.hero-features {

    display: flex;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 45px;

    font-size: 13px;

    font-weight: 600;
}


.hero-features div {

    display: flex;
    align-items: center;

    gap: 8px;

    color: #ddd;
}


.hero-features i {

    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    color: black;

    font-size: 11px;
}


.hero-bottom-line {

    position: absolute;

    bottom: 0;

    left: 0;

    height: 7px;

    width: 100%;

    background:
        repeating-linear-gradient(
            135deg,
            var(--yellow),
            var(--yellow) 20px,
            #111 20px,
            #111 40px
        );
}



/* ==========================================
GENERAL HEADINGS
========================================== */

.section-label {

    display: block;

    color: #777;

    font-weight: 800;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 13px;
}


h2 {

    font-family: var(--heading-font);

    font-size: clamp(48px, 6vw, 74px);

    line-height: 0.95;

    letter-spacing: -1px;
}


h2 span {
    color: var(--yellow-dark);
}



/* ==========================================
INTRO
========================================== */

.intro-section {

    background: white;
}


.intro-grid {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}


.intro-content p {

    color: #666;

    margin-top: 23px;

    max-width: 650px;

    font-size: 16px;

    line-height: 1.8;
}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #111;

    font-weight: 800;

    margin-top: 28px;

    border-bottom: 3px solid var(--yellow);

    padding-bottom: 4px;
}


.intro-cards {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.stat-card {

    min-height: 300px;

    padding: 35px 28px;

    background: #f5f5f5;

    border-top: 5px solid var(--yellow);
}


.stat-card:nth-child(2) {

    margin-top: 55px;

    background: #171717;

    color: white;
}


.stat-icon {

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    background: var(--yellow);

    color: black;

    font-size: 22px;

    margin-bottom: 30px;
}


.stat-card h3 {

    font-family: var(--heading-font);

    font-size: 27px;

    margin-bottom: 12px;
}


.stat-card p {

    color: #777;
}


.stat-card:nth-child(2) p {

    color: #bbb;
}



/* ==========================================
SERVICES
========================================== */

.services-section {

    background: #f4f4f4;
}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 55px;
}


.section-heading p {

    color: #777;

    max-width: 470px;
}


.services-grid {

    display: grid;

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

    gap: 18px;
}


.service-card {

    position: relative;

    padding: 36px 28px;

    background: white;

    min-height: 390px;

    border-bottom: 5px solid transparent;

    transition: all 0.25s ease;
}


.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--yellow);

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


.service-number {

    position: absolute;

    right: 22px;

    top: 18px;

    color: #ebebeb;

    font-family: var(--heading-font);

    font-size: 55px;

    font-weight: 800;
}


.service-icon {

    position: relative;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    background: var(--yellow);

    font-size: 23px;

    margin-bottom: 45px;
}


.service-card h3 {

    font-family: var(--heading-font);

    font-size: 28px;

    line-height: 1.05;

    margin-bottom: 17px;
}


.service-card p {

    color: #777;

    font-size: 14px;

    margin-bottom: 25px;
}


.service-card a {

    position: absolute;

    bottom: 32px;

    font-size: 13px;

    font-weight: 800;

    display: flex;

    align-items: center;

    gap: 8px;
}


.service-card a:hover {

    color: var(--yellow-dark);
}


.services-button {

    text-align: center;

    margin-top: 45px;
}


.btn-dark {

    background: #111;

    color: white;
}


.btn-dark:hover {

    background: var(--yellow);

    color: black;
}



/* ==========================================
WHY SECTION
========================================== */

.why-section {

    position: relative;

    background: #151515;

    color: white;

    overflow: hidden;
}


.why-background {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15,15,15,1) 0%,
            rgba(15,15,15,0.95) 50%,
            rgba(15,15,15,0.83) 100%
        ),
        url("https://images.unsplash.com/photo-1513467535987-fd81bc7d62f8?auto=format&fit=crop&w=1800&q=80")
        center / cover;

    opacity: 0.6;
}


.why-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 100px;

    align-items: center;
}


.yellow-label {

    color: var(--yellow);
}


.why-content h2 span {

    display: block;

    color: var(--yellow);
}


.why-content > p {

    max-width: 650px;

    color: #bbb;

    margin-top: 25px;
}


.why-list {

    margin-top: 40px;

    display: grid;

    gap: 25px;
}


.why-item {

    display: flex;

    gap: 18px;
}


.check-icon {

    min-width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: black;
}


.why-item h3 {

    font-family: var(--heading-font);

    font-size: 23px;
}


.why-item p {

    color: #aaa;

    font-size: 14px;
}


.why-card {

    background: var(--yellow);

    color: black;

    padding: 45px;
}


.why-card > i {

    font-size: 58px;

    margin-bottom: 30px;
}


.why-card h3 {

    font-family: var(--heading-font);

    font-size: 36px;

    line-height: 1.05;
}


.why-card p {

    margin: 20px 0 28px;

    color: #363636;
}


.why-card .btn {

    background: #111;

    color: white;
}


.why-card .btn:hover {

    background: white;

    color: black;
}



/* ==========================================
INDUSTRIES
========================================== */

.industries {

    background: white;
}


.center-heading {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}


.center-heading p {

    color: #777;

    margin-top: 20px;
}


.industry-grid {

    display: grid;

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

    gap: 17px;
}


.industry-card {

    border: 1px solid #ddd;

    min-height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    transition: 0.25s;
}


.industry-card i {

    color: var(--yellow-dark);

    font-size: 35px;
}


.industry-card h3 {

    font-family: var(--heading-font);

    font-size: 24px;
}


.industry-card:hover {

    background: #111;

    color: white;

    border-color: #111;

    transform: translateY(-5px);
}



/* ==========================================
CTA
========================================== */

.cta-section {

    background: var(--yellow);

    padding: 70px 0;
}


.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.cta-content span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.cta-content h2 {

    margin-top: 8px;

    font-size: 60px;
}


.cta-content p {

    margin-top: 10px;

    color: #373737;
}


.btn-black {

    background: #111;

    color: white;

    white-space: nowrap;
}


.btn-black:hover {

    background: white;

    color: black;
}



/* ==========================================
FOOTER
========================================== */

.footer {

    background: #0e0e0e;

    color: white;

    padding-top: 70px;
}


.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 60px;
}


.footer-brand p {

    color: #888;

    max-width: 360px;

    margin-top: 25px;

    font-size: 14px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.footer-column h3 {

    font-family: var(--heading-font);

    font-size: 22px;

    color: var(--yellow);

    margin-bottom: 10px;
}


.footer-column a,
.footer-column p {

    color: #929292;

    font-size: 13px;

    transition: 0.2s;
}


.footer-column a:hover {

    color: white;
}


.footer-column p i {

    color: var(--yellow);

    width: 20px;
}


.footer-bottom {

    border-top: 1px solid #292929;

    padding: 25px 0;

    color: #777;

    font-size: 12px;
}



/* ==========================================
SCROLL ANIMATION
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.active {

    opacity: 1;

    transform: translateY(0);
}



/* ==========================================
TABLET
========================================== */

@media (max-width: 1050px) {

    .services-grid {

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


    .industry-grid {

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


    .intro-grid,
    .why-grid {

        gap: 50px;
    }


    .footer-grid {

        grid-template-columns: 1.5fr 1fr 1fr;
    }


    .footer-column:last-child {

        grid-column: span 3;
    }

}



/* ==========================================
MOBILE NAV
========================================== */

@media (max-width: 850px) {

    .mobile-menu-btn {

        display: block;
    }


    .nav {

        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        background: #111;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 5% 25px;

        display: none;

        border-top: 1px solid #333;
    }


    .nav.open {

        display: flex;
    }


    .nav > a {

        padding: 16px 5px;

        border-bottom: 1px solid #252525;
    }


    .nav .nav-button {

        margin-top: 15px;

        text-align: center;

        border-bottom: none;
    }


    .hero {

        min-height: 760px;

        background-position: center;
    }


    .hero-overlay {

        background: rgba(8,8,8,0.78);
    }


    .hero h1 {

        font-size: clamp(60px, 17vw, 90px);
    }


    .intro-grid,
    .why-grid {

        grid-template-columns: 1fr;
    }


    .intro-cards {

        margin-top: 20px;
    }


    .section-heading {

        display: block;
    }


    .section-heading p {

        margin-top: 20px;
    }


    .why-card {

        max-width: 600px;
    }


    .cta-content {

        display: block;
    }


    .cta-content .btn {

        margin-top: 30px;
    }


    .footer-grid {

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


    .footer-column:last-child {

        grid-column: auto;
    }

}



/* ==========================================
SMALL MOBILE
========================================== */

@media (max-width: 600px) {

    .section {

        padding: 75px 0;
    }


    .logo-text span {

        display: none;
    }


    .hero {

        min-height: 720px;
    }


    .hero-content > p {

        font-size: 16px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-buttons .btn {

        width: 100%;
    }


    .hero-features {

        gap: 13px;

        flex-direction: column;
    }


    .intro-cards {

        grid-template-columns: 1fr;
    }


    .stat-card:nth-child(2) {

        margin-top: 0;
    }


    .services-grid {

        grid-template-columns: 1fr;
    }


    .industry-grid {

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


    .cta-content h2 {

        font-size: 47px;
    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-column:last-child {

        grid-column: auto;
    }

}

/* ==========================================
INNER PAGE HERO
========================================== */

.page-hero {

    min-height: 570px;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    padding-top: 82px;

    background-position: center;

    background-size: cover;
}


.about-hero {

    background-image:
        url("https://images.unsplash.com/photo-1513467535987-fd81bc7d62f8?auto=format&fit=crop&w=2000&q=85");
}


.page-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,0.96) 0%,
            rgba(8,8,8,0.78) 60%,
            rgba(8,8,8,0.45) 100%
        );
}


.page-hero-content {

    position: relative;

    z-index: 2;
}


.page-label {

    display: inline-block;

    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.page-hero h1 {

    font-family: var(--heading-font);

    font-size: clamp(68px, 8vw, 105px);

    line-height: 0.88;

    max-width: 850px;
}


.page-hero h1 span {

    color: var(--yellow);

    display: block;
}


.page-hero-content > p {

    color: #d0d0d0;

    font-size: 18px;

    max-width: 650px;

    margin-top: 25px;
}


.breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    font-size: 13px;

    color: #aaa;
}


.breadcrumb a {

    color: white;
}


.breadcrumb a:hover {

    color: var(--yellow);
}


.breadcrumb i {

    font-size: 9px;

    color: var(--yellow);
}



/* ==========================================
ABOUT INTRO
========================================== */

.about-intro {

    background: white;
}


.about-intro-grid {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


.about-text p {

    margin-top: 22px;

    color: #666;

    line-height: 1.85;
}


.about-button {

    margin-top: 30px;
}


.about-image-wrap {

    position: relative;

    padding-left: 30px;

    padding-bottom: 30px;
}


.about-image-wrap::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 75%;

    height: 70%;

    background: var(--yellow);

    z-index: 0;
}


.about-main-image {

    width: 100%;

    min-height: 540px;

    object-fit: cover;

    position: relative;

    z-index: 1;
}


.about-image-badge {

    position: absolute;

    z-index: 2;

    bottom: 0;

    right: -25px;

    background: #111;

    color: white;

    padding: 24px 30px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}


.about-image-badge > i {

    color: var(--yellow);

    font-size: 33px;
}


.about-image-badge div {

    display: flex;

    flex-direction: column;
}


.about-image-badge strong {

    font-family: var(--heading-font);

    font-size: 24px;
}


.about-image-badge span {

    color: #aaa;

    font-size: 12px;
}



/* ==========================================
MISSION
========================================== */

.mission-section {

    background: #f4f4f4;
}


.mission-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.mission-card {

    background: var(--yellow);

    padding: 55px;

    min-height: 390px;
}


.dark-mission {

    background: #171717;

    color: white;
}


.mission-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    background: #111;

    color: var(--yellow);

    font-size: 26px;

    margin-bottom: 35px;
}


.dark-mission .mission-icon {

    background: var(--yellow);

    color: #111;
}


.mission-card > span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.mission-card h3 {

    font-family: var(--heading-font);

    font-size: 42px;

    line-height: 1;

    margin-top: 12px;
}


.mission-card p {

    margin-top: 20px;

    line-height: 1.8;

    color: #444;
}


.dark-mission p {

    color: #aaa;
}



/* ==========================================
SUPPORT
========================================== */

.support-section {

    background: white;
}


.support-grid {

    display: grid;

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

    gap: 18px;
}


.support-card {

    padding: 35px 28px;

    background: #f6f6f6;

    border-top: 4px solid transparent;

    transition: 0.25s ease;
}


.support-card:hover {

    border-color: var(--yellow);

    transform: translateY(-6px);

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


.support-icon {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    font-size: 22px;

    margin-bottom: 25px;
}


.support-card h3 {

    font-family: var(--heading-font);

    font-size: 27px;

    margin-bottom: 12px;
}


.support-card p {

    color: #777;

    font-size: 14px;
}



/* ==========================================
SAFETY
========================================== */

.safety-section {

    position: relative;

    background:
        url("https://images.unsplash.com/photo-1517089596392-fb9a9033e05b?auto=format&fit=crop&w=2000&q=85")
        center / cover;

    color: white;

    min-height: 600px;

    display: flex;

    align-items: center;
}


.safety-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,0.98) 0%,
            rgba(10,10,10,0.9) 55%,
            rgba(10,10,10,0.6) 100%
        );
}


.safety-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin-left: max(5%, calc((100% - 1180px) / 2));
    margin-right: auto;
}


.safety-content h2 span {

    display: block;

    color: var(--yellow);
}


.safety-content > p {

    color: #bbb;

    max-width: 650px;

    font-size: 17px;

    margin-top: 25px;

    line-height: 1.8;
}


.safety-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 40px;

    max-width: 650px;
}


.safety-point {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px;

    border: 1px solid rgba(255,255,255,0.15);

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

    font-weight: 600;
}


.safety-point i {

    width: 27px;

    height: 27px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: #111;

    font-size: 12px;
}



/* ==========================================
AREA
========================================== */

.area-section {

    background: white;
}


.area-grid {

    display: grid;

    grid-template-columns: 260px 1fr;

    align-items: center;

    gap: 70px;
}


.area-icon {

    width: 240px;

    height: 240px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    position: relative;
}


.area-icon::before {

    content: "";

    position: absolute;

    inset: 15px;

    border: 2px solid rgba(0,0,0,0.2);
}


.area-icon i {

    font-size: 75px;

    position: relative;
}


.area-content p {

    color: #666;

    line-height: 1.8;

    max-width: 700px;

    margin-top: 20px;
}



/* ==========================================
ABOUT RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image-wrap {

        max-width: 750px;
    }


    .support-grid {

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

}



@media (max-width: 800px) {

    .page-hero {

        min-height: 520px;
    }


    .mission-grid {

        grid-template-columns: 1fr;
    }


    .area-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .area-icon {

        width: 180px;

        height: 180px;
    }

}



@media (max-width: 600px) {

    .page-hero h1 {

        font-size: 63px;
    }


    .about-image-wrap {

        padding-left: 15px;

        padding-bottom: 70px;
    }


    .about-main-image {

        min-height: 400px;
    }


    .about-image-badge {

        right: 0;

        left: 35px;

        bottom: 15px;
    }


    .mission-card {

        padding: 38px 28px;
    }


    .mission-card h3 {

        font-size: 36px;
    }


    .support-grid {

        grid-template-columns: 1fr;
    }


    .safety-points {

        grid-template-columns: 1fr;
    }


    .safety-content {

        margin: 0 auto;

        width: 90%;
    }

}





