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

body {
    background: #f5f8fb;
}


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

.page-hero {
    min-height: 380px;

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

    text-align: center;

    padding: 80px 6%;

    background: #071e33;

    color: white;
}

.page-hero > div {
    max-width: 850px;
}

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

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

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.page-hero h1::after {
    content: "";
    display: block;

    width: 70px;
    height: 4px;

    margin: 25px auto 0;

    background: #f4b942;

    border-radius: 10px;
}

.page-hero p {
    max-width: 700px;

    margin: 25px auto 0;

    color: #d9e2eb;

    font-size: 18px;

    line-height: 1.7;
}


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

.services-page {
    padding: 100px 6%;

    text-align: center;
}

.services-page h2,
.service-why h2 {
    margin: 0;

    color: #071e33;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 800;
}

.section-intro {
    max-width: 720px;

    margin: 18px auto 60px;

    color: #617080;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   SERVICE CARDS
========================================= */

.services-grid {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

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

    gap: 28px;

    text-align: left;
}

.service-detail {
    position: relative;

    padding: 38px;

    background: #ffffff;

    border: 1px solid #e2e8ee;

    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(7, 30, 51, 0.07);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-8px);

    border-color: #dfa12d;

    box-shadow: 0 18px 45px rgba(7, 30, 51, 0.12);
}


/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
    width: 68px;
    height: 68px;

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

    margin-bottom: 25px;

    border-radius: 14px;

    background: #fff5df;

    color: #dfa12d;

    font-size: 28px;
}

.service-detail h3 {
    margin: 0 0 15px;

    color: #071e33;

    font-size: 25px;

    font-weight: 700;
}

.service-detail p {
    margin-bottom: 20px;

    color: #617080;

    line-height: 1.75;
}

.service-detail ul {
    margin: 0 0 25px;

    padding-left: 20px;

    color: #344657;

    line-height: 2;
}

.service-detail li::marker {
    color: #dfa12d;
}


/* =========================================
   SERVICE BUTTON
========================================= */

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    background: #dfa12d;

    color: white;

    border: 2px solid #dfa12d;

    border-radius: 7px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: 0.3s ease;
}

.service-btn:hover {
    background: #071e33;

    border-color: #071e33;

    transform: translateY(-2px);
}


/* =========================================
   WHY CHOOSE US
========================================= */

.service-why {
    padding: 100px 6%;

    background: #071e33;

    text-align: center;
}

.service-why h2 {
    color: #ffffff;
}

.why-grid {
    width: 100%;
    max-width: 1200px;

    margin: 55px auto 0;

    display: grid;

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

    gap: 25px;
}

.why-grid div {
    padding: 35px 25px;

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

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

    border-radius: 16px;

    transition: 0.3s ease;
}

.why-grid div:hover {
    transform: translateY(-6px);

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

    border-color: #dfa12d;
}

.why-grid i {
    margin-bottom: 20px;

    color: #f4b942;

    font-size: 34px;
}

.why-grid h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 20px;
}

.why-grid p {
    margin: 0;

    color: #cbd7e1;

    line-height: 1.7;
}



/* =========================================
   START APPLICATION BUTTON
========================================= */

.service-cta {
    width: 100%;
    box-sizing: border-box;

    padding: 90px 6%;

    background: #f5f8fb;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0;
}


/* Heading */

.service-cta h2 {
    margin: 0 0 18px;

    color: #071e33;

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.2;

    font-weight: 800;
}


/* Paragraph */

.service-cta p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: #617080;

    font-size: 17px;

    line-height: 1.7;
}


/* Button */

#apply-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: auto;

    padding: 15px 28px;

    margin: 0 auto;

    background: #dfa12d;

    color: #ffffff;

    border: 2px solid #dfa12d;

    border-radius: 7px;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 6px 18px rgba(223, 161, 45, 0.25);

    transition: 0.25s ease;
}


/* Arrow */

#apply-button::after {
    content: "→";

    font-size: 20px;

    transition: transform 0.25s ease;
}


/* Hover */

#apply-button:hover {
    background: #071e33;

    border-color: #071e33;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(7, 30, 51, 0.18);
}


#apply-button:hover::after {
    transform: translateX(4px);
}


@media (max-width: 650px) {

    .service-cta {
        padding: 65px 5%;
    }

    .service-cta h2 {
        font-size: 32px;
    }

    .service-cta p {
        font-size: 16px;
    }

    #apply-button {
        width: auto;
        padding: 14px 24px;
    }
}

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

@media (max-width: 1000px) {

    .services-page,
    .service-why {
        padding: 80px 5%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

}


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

@media (max-width: 650px) {

    .page-hero {
        min-height: 330px;

        padding: 70px 6%;
    }

    .page-hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .services-page,
    .service-why,
    .service-cta {
        padding: 65px 5%;
    }

    .section-intro {
        font-size: 16px;

        margin-bottom: 40px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-detail {
        padding: 30px;
    }

    .service-cta h2 {
        font-size: 32px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .page-hero h1 {
        font-size: 38px;
    }

    .service-detail {
        padding: 25px;
    }

    .service-btn,
    .service-cta a {
        width: 100%;
    }

}