/* =========================================================
   JUELS HEALTH CARE
   MAIN WEBSITE STYLES
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1d2939;
    background-color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   2. WEBSITE CONTAINER
========================================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   3. COLOURS
========================================================= */

:root {
    --navy: #092f46;
    --dark-navy: #062536;
    --teal: #0b8f87;
    --teal-dark: #08756f;
    --light-teal: #eaf7f6;
    --light-blue: #eef6f8;
    --white: #ffffff;
    --gray: #667085;
    --light-gray: #f7f9fa;
    --border: #e4e7ec;
}


/* =========================================================
   4. TOP BAR
========================================================= */

.top-bar {
    background-color: var(--dark-navy);
    color: white;
    font-size: 14px;
}

.top-bar-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-contact a {
    color: white;
    transition: 0.3s ease;
}

.top-contact a:hover {
    color: #70d9d2;
}


/* =========================================================
   5. HEADER
========================================================= */

.main-header {
    background-color: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   6. LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--teal);
}

.logo-sub {
    margin-top: 5px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--navy);
}


/* =========================================================
   7. NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #344054;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a.active {
    color: var(--teal);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--teal);
}

.nav-cta {
    background-color: var(--teal);
    color: white;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--teal-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 29px;
    cursor: pointer;
}


/* =========================================================
   8. HERO SECTION
========================================================= */

.hero {
    background:
        linear-gradient(
            105deg,
            rgba(6, 37, 54, 0.98) 0%,
            rgba(9, 47, 70, 0.95) 50%,
            rgba(11, 143, 135, 0.82) 100%
        );

    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -160px;
    right: 5%;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -170px;
    left: 30%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
    padding-top: 85px;
    padding-bottom: 85px;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.eyebrow {
    color: #8ce3dd;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
    max-width: 720px;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 650px;
    color: #e4eef2;
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}


/* =========================================================
   9. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--teal);
    color: white;
}

.btn-primary:hover {
    background-color: #09766f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--navy);
}

.btn-white {
    background-color: white;
    color: var(--navy);
}

.btn-white:hover {
    background-color: #f0f7f8;
    transform: translateY(-2px);
}

.btn-transparent {
    border: 2px solid white;
    color: white;
}

.btn-transparent:hover {
    background-color: white;
    color: var(--navy);
}


/* =========================================================
   10. HERO SMALL FEATURES
========================================================= */

.hero-small-text {
    margin-top: 34px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #d9ecec;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   11. HERO STAFFING CARD
========================================================= */

.hero-card {
    background-color: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.card-label {
    color: var(--teal);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-card h2 {
    color: var(--navy);
    font-size: 29px;
    line-height: 1.25;
    margin-bottom: 28px;
}

.staff-type {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
}

.staff-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 8px;
    background-color: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.staff-type h3 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 4px;
}

.staff-type p {
    color: var(--gray);
    font-size: 14px;
}

.card-button {
    display: inline-block;
    margin-top: 23px;
    color: var(--teal);
    font-weight: 700;
    transition: 0.3s ease;
}

.card-button:hover {
    color: var(--navy);
}


/* =========================================================
   12. TRUST SECTION
========================================================= */

.trust-section {
    background-color: white;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 34px 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 42px;
    height: 42px;
    background-color: var(--light-teal);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: bold;
}

.trust-item h3 {
    color: var(--navy);
    font-size: 16px;
}

.trust-item p {
    color: var(--gray);
    font-size: 13px;
}


/* =========================================================
   13. COMMON SECTION STYLES
========================================================= */

.intro-section,
.services-section,
.industries-section,
.career-section,
.process-section,
.location-section {
    padding: 100px 0;
}

.section-label {
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.section-heading h2,
.section-header-centered h2,
.intro-section h2,
.industries-section h2,
.location-section h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.18;
    letter-spacing: -1px;
}

.section-heading p:not(.section-label) {
    margin-top: 18px;
    max-width: 650px;
    color: var(--gray);
}

.section-header-centered {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-header-centered p:not(.section-label) {
    color: var(--gray);
    margin-top: 18px;
    font-size: 17px;
}


/* =========================================================
   14. INTRO SECTION
========================================================= */

.intro-section {
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.intro-content p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 17px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--teal);
    font-weight: 700;
}

.text-link:hover {
    color: var(--navy);
}


/* =========================================================
   15. SERVICES SECTION
========================================================= */

.services-section {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 38px 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(9, 47, 70, 0.10);
    border-color: transparent;
}

.service-number {
    color: var(--teal);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 35px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 23px;
    margin-bottom: 16px;
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 22px;
}

.service-card ul {
    margin-bottom: 25px;
}

.service-card li {
    color: #475467;
    padding: 7px 0;
}

.service-card li::before {
    content: "✓";
    color: var(--teal);
    font-weight: bold;
    margin-right: 9px;
}

.service-card a {
    color: var(--teal);
    font-weight: 700;
}

.service-card a:hover {
    color: var(--navy);
}

.center-button {
    margin-top: 45px;
    text-align: center;
}


/* =========================================================
   16. INDUSTRIES
========================================================= */

.industries-section {
    background-color: white;
}

.industries-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    min-height: 160px;
    padding: 30px;
    background-color: var(--light-blue);
    border-radius: 10px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.industry-card:hover {
    background-color: white;
    border-color: #cfe8e7;
    box-shadow: 0 14px 30px rgba(9, 47, 70, 0.09);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 30px;
    margin-bottom: 30px;
}

.industry-card h3 {
    color: var(--navy);
    font-size: 19px;
}


/* =========================================================
   17. EMPLOYER SECTION
========================================================= */

.employer-section {
    background-color: var(--navy);
    padding: 100px 0;
}

.employer-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.employer-content {
    color: white;
}

.light-label {
    color: #82ddd7;
}

.employer-content h2 {
    font-size: clamp(38px, 4vw, 53px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.employer-content > p {
    color: #dce8ec;
    font-size: 17px;
    max-width: 620px;
}

.employer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin: 30px 0;
    color: #e6f0f2;
    font-weight: 600;
}

.employer-box {
    background: white;
    border-radius: 14px;
    padding: 40px;
}

.small-heading {
    color: var(--teal);
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.employer-box h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 14px;
}

.employer-box > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.request-step {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

.request-step span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.request-step p {
    color: #344054;
    font-weight: 600;
}

.employer-link {
    display: inline-block;
    color: var(--teal);
    margin-top: 23px;
    font-weight: 700;
}


/* =========================================================
   18. CAREER SECTION
========================================================= */

.career-section {
    background-color: white;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.career-image {
    min-height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background:
        linear-gradient(
            135deg,
            var(--light-teal),
            #ccecea
        );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-weight: 700;
}

.career-content h2 {
    color: var(--navy);
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 22px;
}

.career-content > p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 25px;
}

.career-list {
    margin-bottom: 25px;
}

.career-list li {
    padding: 9px 0;
    color: #475467;
    font-weight: 600;
}

.career-list li::before {
    content: "✓";
    color: var(--teal);
    margin-right: 10px;
}


/* =========================================================
   19. PROCESS
========================================================= */

.process-section {
    background-color: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    background: white;
    border-radius: 10px;
    padding: 32px 27px;
    border-top: 4px solid var(--teal);
}

.process-number {
    color: #98a2b3;
    font-size: 13px;
    font-weight: bold;
}

.process-card h3 {
    color: var(--navy);
    font-size: 21px;
    margin: 23px 0 10px;
}

.process-card p {
    color: var(--gray);
}


/* =========================================================
   20. LOCATION / SEO SECTION
========================================================= */

.location-section {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.location-grid p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 18px;
}


/* =========================================================
   21. FINAL CTA
========================================================= */

.final-cta {
    padding: 90px 0;
    background:
        linear-gradient(
            120deg,
            var(--teal-dark),
            var(--navy)
        );
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 820px;
}

.cta-small {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #a5ebe6;
    margin-bottom: 14px;
}

.final-cta h2 {
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.final-cta-content > p:not(.cta-small) {
    font-size: 17px;
    color: #e0eeee;
    max-width: 650px;
    margin: 0 auto;
}

.cta-buttons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   22. FOOTER
========================================================= */

.footer {
    background-color: #061f2d;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 55px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.footer-logo {
    color: #69d5cf;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    color: white;
    font-size: 10px;
    letter-spacing: 3px;
}

.footer-company p {
    max-width: 320px;
    color: #b9cbd2;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer li {
    margin-bottom: 11px;
}

.footer a,
.footer p {
    color: #b9cbd2;
    font-size: 14px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    padding: 22px 0;
}


/* =========================================================
   23. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-container {
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child {
        grid-column: span 2;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   24. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 850px) {

    .top-bar {
        display: none;
    }

    .navbar {
        min-height: 75px;
        position: relative;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 15px 5%;
        box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a.active::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-card {
        max-width: 620px;
    }

    .intro-grid,
    .employer-grid,
    .career-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-section,
    .services-section,
    .industries-section,
    .career-section,
    .process-section,
    .location-section {
        padding: 75px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   25. RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-small-text {
        flex-direction: column;
        gap: 9px;
    }

    .hero-card {
        padding: 27px 22px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .services-grid,
    .industries-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .employer-features {
        grid-template-columns: 1fr;
    }

    .employer-box {
        padding: 29px 22px;
    }

    .career-image,
    .image-placeholder {
        min-height: 340px;
        height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .final-cta h2 {
        font-size: 38px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

}
/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.page-hero {
    background:
        linear-gradient(
            110deg,
            #062536 0%,
            #092f46 60%,
            #0b716e 100%
        );

    padding: 110px 0;
    color: white;
}

.page-hero-content {
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.page-hero p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.8;
    color: #dce9ed;
    max-width: 750px;
}


/* =========================================================
   MAIN ABOUT SECTION
========================================================= */

.about-main-section {
    padding: 100px 0;
    background: white;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    color: var(--navy);
    font-size: clamp(35px, 4vw, 49px);
    line-height: 1.17;
    margin-bottom: 25px;
}

.about-content > p:not(.section-label) {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 18px;
}


/* =========================================================
   ABOUT HIGHLIGHT BOX
========================================================= */

.about-highlight-box {
    background: var(--light-gray);
    padding: 42px;
    border-radius: 14px;
    border-top: 5px solid var(--teal);
}

.about-highlight-box > h3 {
    color: var(--navy);
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-highlight-item {
    display: flex;
    gap: 18px;
    padding: 21px 0;
    border-top: 1px solid var(--border);
}

.about-highlight-item > span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    padding-top: 4px;
}

.about-highlight-item h4 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 4px;
}

.about-highlight-item p {
    color: var(--gray);
    font-size: 14px;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-section {
    background: var(--light-gray);
    padding: 90px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.mission-card h2 {
    color: var(--navy);
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.mission-card > p:not(.section-label) {
    color: var(--gray);
    font-size: 16px;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(9, 47, 70, 0.09);
    border-color: transparent;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 25px;
}

.value-card h3 {
    color: var(--navy);
    font-size: 21px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
    font-size: 15px;
}


/* =========================================================
   ABOUT INDUSTRIES
========================================================= */

.about-industries-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.about-industries-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.about-industries-heading h2 {
    color: var(--navy);
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.2;
}

.about-industries-heading > div:last-child p {
    color: var(--gray);
    font-size: 17px;
}

.about-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-industry-card {
    background: white;
    padding: 32px;
    min-height: 145px;
    border-radius: 8px;
    border-left: 4px solid var(--teal);
    transition: 0.3s ease;
}

.about-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 30px rgba(0,0,0,0.07);
}

.about-industry-card span {
    color: var(--teal);
    font-weight: bold;
    font-size: 12px;
}

.about-industry-card h3 {
    color: var(--navy);
    margin-top: 25px;
    font-size: 20px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us-section {
    background: var(--navy);
    padding: 100px 0;
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 90px;
}

.why-us-title h2 {
    font-size: clamp(37px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 25px;
}

.why-us-title > p:not(.section-label) {
    color: #cfe0e5;
    font-size: 17px;
}

.why-us-item {
    display: flex;
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.why-number {
    color: #79dcd6;
    font-size: 13px;
    font-weight: bold;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.why-us-item p {
    color: #c7d9de;
    font-size: 15px;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .about-main-grid,
    .about-industries-heading,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 75px 0;
    }

    .page-hero h1 {
        font-size: 39px;
    }

    .about-main-section,
    .values-section,
    .about-industries-section,
    .why-us-section {
        padding: 70px 0;
    }

    .mission-grid,
    .values-grid,
    .about-industry-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .about-highlight-box {
        padding: 30px 23px;
    }

}
/* =========================================================
   INDUSTRIES PAGE
========================================================= */


/* =========================================================
   INDUSTRIES HERO
========================================================= */

.industries-hero {
    background:
        linear-gradient(
            110deg,
            #062536 0%,
            #092f46 55%,
            #08756f 100%
        );

    padding: 115px 0;
    color: white;
}

.industries-hero-content {
    max-width: 900px;
}

.industries-hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.industries-hero-content > p:not(.eyebrow) {
    max-width: 720px;
    color: #dce9ed;
    font-size: 18px;
    line-height: 1.8;
}

.industries-hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   INDUSTRIES INTRO
========================================================= */

.industries-intro {
    padding: 100px 0;
    background: white;
}

.industries-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.industries-intro h2 {
    color: var(--navy);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.16;
}

.industries-intro-grid > div:last-child p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 18px;
}


/* =========================================================
   INDIVIDUAL INDUSTRY SECTIONS
========================================================= */

.industry-detail-section {
    padding: 100px 0;
    background: white;
}

.alternate-industry {
    background: var(--light-gray);
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 85px;
    align-items: center;
}

.industry-reverse {
    grid-template-columns: 1fr 0.85fr;
}


/* =========================================================
   INDUSTRY VISUAL
========================================================= */

.industry-visual {
    min-height: 430px;
    border-radius: 15px;
    padding: 40px;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--teal-dark)
        );

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    overflow: hidden;
}

.industry-visual::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.06);

    right: -90px;
    bottom: -100px;
}

.industry-big-number {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.10);
}

.industry-visual-content {
    position: relative;
    z-index: 2;
}

.industry-visual-content span {
    color: #8ce3dd;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
}

.industry-visual-content h3 {
    color: white;
    font-size: 33px;
    margin-top: 9px;
}


/* =========================================================
   INDUSTRY CONTENT
========================================================= */

.industry-detail-content h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 47px);
    line-height: 1.17;
    margin-bottom: 23px;
}

.industry-detail-content > p:not(.section-label) {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 17px;
}

.industry-check-list {
    margin: 28px 0;
}

.industry-check-list li {
    padding: 9px 0;
    color: #475467;
    font-weight: 600;
}

.industry-check-list li::before {
    content: "✓";

    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: var(--light-teal);

    color: var(--teal);

    margin-right: 12px;

    font-size: 12px;
    font-weight: bold;
}

.industry-link {
    display: inline-block;

    color: var(--teal);

    font-weight: 700;

    margin-top: 5px;

    transition: 0.3s ease;
}

.industry-link:hover {
    color: var(--navy);
}


/* =========================================================
   OTHER INDUSTRIES
========================================================= */

.other-industries-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.other-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.other-industry-card {
    background: white;

    padding: 37px 32px;

    border-radius: 10px;

    border: 1px solid var(--border);

    transition: 0.3s ease;
}

.other-industry-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 35px
        rgba(9,47,70,0.09);

    border-color: transparent;
}

.other-industry-number {
    color: var(--teal);

    font-weight: 800;

    font-size: 12px;
}

.other-industry-card h3 {
    color: var(--navy);

    font-size: 22px;

    margin: 28px 0 12px;
}

.other-industry-card p {
    color: var(--gray);
}


/* =========================================================
   INDUSTRY PROCESS
========================================================= */

.industries-process-section {
    padding: 100px 0;

    background: var(--navy);

    color: white;
}

.industries-process-section
.section-header-centered h2 {
    color: white;
}

.industries-process-section
.section-header-centered {
    margin-bottom: 60px;
}

.industries-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.industries-process-card {
    padding: 32px 27px;

    border: 1px solid
        rgba(255,255,255,0.15);

    border-radius: 10px;

    transition: 0.3s ease;
}

.industries-process-card:hover {
    background:
        rgba(255,255,255,0.05);

    transform: translateY(-4px);
}

.industries-process-number {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background:
        rgba(112,217,210,0.12);

    color: #70d9d2;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 28px;
}

.industries-process-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.industries-process-card p {
    color: #c5d8dd;

    font-size: 15px;
}


/* =========================================================
   INDUSTRIES LOCATION
========================================================= */

.industries-location-section {
    padding: 100px 0;

    background: white;
}

.industries-location-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}

.industries-location-grid h2 {
    color: var(--navy);

    font-size:
        clamp(35px, 4vw, 48px);

    line-height: 1.17;
}

.industries-location-grid
> div:last-child p {
    color: var(--gray);

    font-size: 17px;

    margin-bottom: 17px;
}


/* =========================================================
   RESPONSIVE - INDUSTRIES
========================================================= */

@media (max-width: 950px) {

    .industries-intro-grid,
    .industry-detail-grid,
    .industry-reverse,
    .industries-location-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .industry-reverse
    .industry-detail-content {

        order: 2;
    }

    .industry-reverse
    .industry-visual {

        order: 1;
    }

    .industries-process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .other-industries-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .industries-hero {

        padding: 75px 0;
    }

    .industries-hero h1 {

        font-size: 39px;
    }

    .industries-hero-buttons {

        flex-direction: column;
    }

    .industries-hero-buttons .btn {

        width: 100%;
    }

    .industries-intro,
    .industry-detail-section,
    .other-industries-section,
    .industries-process-section,
    .industries-location-section {

        padding: 70px 0;
    }

    .industry-visual {

        min-height: 320px;

        padding: 28px;
    }

    .industry-big-number {

        font-size: 65px;
    }

    .industry-visual-content h3 {

        font-size: 27px;
    }

    .other-industries-grid,
    .industries-process-grid {

        grid-template-columns: 1fr;
    }

}
/* =========================================================
   SERVICES PAGE
========================================================= */


/* =========================================================
   SERVICES HERO
========================================================= */

.services-page-hero {
    background:
        linear-gradient(
            110deg,
            #062536 0%,
            #092f46 58%,
            #08756f 100%
        );

    padding: 115px 0;
    color: white;
}

.services-page-hero-content {
    max-width: 900px;
}

.services-page-hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.services-page-hero-content > p:not(.eyebrow) {
    max-width: 750px;
    color: #dce9ed;
    font-size: 18px;
    line-height: 1.8;
}

.services-hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
    padding: 100px 0;
    background: white;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.services-intro h2 {
    color: var(--navy);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.16;
}

.services-intro-grid > div:last-child p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 18px;
}


/* =========================================================
   SERVICE DETAIL
========================================================= */

.service-detail-section {
    padding: 100px 0;
    background: white;
}

.service-alt {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 75px;
    align-items: start;
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-detail-number {
    min-height: 300px;
    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--teal-dark)
        );

    border-radius: 14px;

    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: white;
}

.service-detail-number span {
    color: #8ce3dd;
    font-size: 14px;
    font-weight: 800;
}

.service-detail-number h3 {
    font-size: 37px;
    letter-spacing: 1px;
}


/* =========================================================
   SERVICE DETAIL CONTENT
========================================================= */

.service-detail-content h2 {
    color: var(--navy);
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.16;
    margin-bottom: 22px;
}

.service-detail-content > p:not(.section-label) {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 17px;
    max-width: 800px;
}


/* =========================================================
   SERVICE FEATURES
========================================================= */

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    margin: 30px 0;
}

.service-feature {
    background: var(--light-teal);
    color: #344054;
    padding: 14px 17px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.service-page-link {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    margin-top: 5px;
    transition: 0.3s ease;
}

.service-page-link:hover {
    color: var(--navy);
}


/* =========================================================
   ORGANIZATIONS
========================================================= */

.services-organizations {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-org-card {
    background: white;
    padding: 32px;
    min-height: 150px;
    border-radius: 10px;
    border: 1px solid var(--border);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.3s ease;
}

.services-org-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(9, 47, 70, 0.09);
}

.services-org-card span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
}

.services-org-card h3 {
    color: var(--navy);
    font-size: 20px;
}


/* =========================================================
   SCREENING SECTION
========================================================= */

.staff-screening-section {
    background: var(--navy);
    color: white;
    padding: 100px 0;
}

.staff-screening-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 90px;
}

.staff-screening-grid > div:first-child h2 {
    font-size: clamp(37px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 22px;
}

.staff-screening-grid > div:first-child > p:not(.section-label) {
    color: #c7d9de;
    font-size: 17px;
}

.screening-item {
    display: flex;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.screening-item > span {
    color: #70d9d2;
    font-size: 13px;
    font-weight: bold;
}

.screening-item h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.screening-item p {
    color: #c7d9de;
    font-size: 15px;
}


/* =========================================================
   SERVICES PROCESS
========================================================= */

.service-process-section {
    padding: 100px 0;
    background: white;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-process-card {
    background: var(--light-gray);
    padding: 32px 28px;
    border-radius: 10px;
    border-top: 4px solid var(--teal);
}

.service-process-number {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-teal);
    color: var(--teal);
    font-size: 12px;
    font-weight: bold;
}

.service-process-card h3 {
    color: var(--navy);
    margin: 24px 0 10px;
    font-size: 20px;
}

.service-process-card p {
    color: var(--gray);
}


/* =========================================================
   LOCATION
========================================================= */

.services-location {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.services-location h2 {
    color: var(--navy);
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.17;
}

.services-location-grid > div:last-child p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 18px;
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .services-intro-grid,
    .service-detail-grid,
    .staff-screening-grid,
    .services-location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-number {
        min-height: 180px;
        max-width: 400px;
    }

    .services-org-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .services-page-hero {
        padding: 75px 0;
    }

    .services-page-hero h1 {
        font-size: 39px;
    }

    .services-hero-buttons {
        flex-direction: column;
    }

    .services-hero-buttons .btn {
        width: 100%;
    }

    .services-intro,
    .service-detail-section,
    .services-organizations,
    .staff-screening-section,
    .service-process-section,
    .services-location {
        padding: 70px 0;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .services-org-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   CAREERS PAGE
========================================================= */


/* =========================================================
   CAREERS HERO
========================================================= */

.careers-hero {
    background:
        linear-gradient(
            110deg,
            #062536 0%,
            #092f46 55%,
            #08756f 100%
        );

    color: white;
    padding: 100px 0;
}

.careers-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;
    gap: 75px;
    align-items: center;
}

.careers-hero-content h1 {
    font-size: clamp(44px, 6vw, 67px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.careers-hero-content > p:not(.eyebrow) {
    color: #dce9ed;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

.careers-hero-buttons {
    margin-top: 35px;

    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   CAREER HERO CARD
========================================================= */

.career-hero-card {
    background: white;
    color: var(--navy);

    border-radius: 15px;

    padding: 38px;

    box-shadow:
        0 25px 55px
        rgba(0,0,0,0.20);
}

.career-card-label {
    color: var(--teal);

    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;

    margin-bottom: 10px;
}

.career-hero-card > h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.career-worker {
    display: flex;
    gap: 17px;

    padding: 20px 0;

    border-top:
        1px solid var(--border);
}

.career-worker > span {
    min-width: 52px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        var(--light-teal);

    border-radius: 8px;

    color: var(--teal);

    font-size: 12px;
    font-weight: 800;
}

.career-worker h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.career-worker p {
    color: var(--gray);
    font-size: 14px;
}


/* =========================================================
   BENEFITS
========================================================= */

.career-benefits-section {
    padding: 100px 0;
    background: white;
}

.career-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.career-benefit-card {
    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    transition: 0.3s ease;
}

.career-benefit-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 16px 35px
        rgba(9,47,70,0.09);

    border-color: transparent;
}

.career-benefit-card > span {
    color: var(--teal);

    font-size: 12px;
    font-weight: bold;
}

.career-benefit-card h3 {
    color: var(--navy);

    font-size: 21px;

    margin: 28px 0 12px;
}

.career-benefit-card p {
    color: var(--gray);
    font-size: 15px;
}


/* =========================================================
   OPPORTUNITIES
========================================================= */

.career-opportunities-section {
    padding: 100px 0;

    background:
        var(--light-gray);
}

.career-opportunities-heading {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}

.career-opportunities-heading h2 {
    color: var(--navy);

    font-size:
        clamp(36px,4vw,50px);
}

.career-opportunities-heading
> div:last-child p {
    color: var(--gray);

    font-size: 17px;
}


/* =========================================================
   JOB CARDS
========================================================= */

.career-job-card {
    background: white;

    border:
        1px solid var(--border);

    border-radius: 10px;

    padding: 30px;

    margin-bottom: 17px;

    display: grid;

    grid-template-columns:
        1fr 1.3fr 0.3fr;

    gap: 35px;

    align-items: center;

    transition: 0.3s ease;
}

.career-job-card:hover {
    border-color:
        #bfe1df;

    box-shadow:
        0 12px 30px
        rgba(9,47,70,0.07);
}

.career-job-title {
    display: flex;

    align-items: center;

    gap: 17px;
}

.job-type {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        var(--light-teal);

    color: var(--teal);

    border-radius: 7px;

    font-size: 12px;
    font-weight: bold;
}

.career-job-title h3 {
    color: var(--navy);

    font-size: 19px;
}

.career-job-title p {
    color: var(--gray);

    font-size: 13px;
}

.career-job-description p {
    color: var(--gray);

    font-size: 15px;
}

.career-apply-link {
    color: var(--teal);

    font-weight: bold;

    white-space: nowrap;
}


/* =========================================================
   REQUIREMENTS
========================================================= */

.career-requirements-section {
    padding: 100px 0;

    background: var(--navy);

    color: white;
}

.career-requirements-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1fr;

    gap: 90px;
}

.career-requirements-grid
> div:first-child h2 {
    font-size:
        clamp(37px,4vw,52px);

    line-height: 1.15;

    margin-bottom: 20px;
}

.career-requirements-grid
> div:first-child
> p:not(.section-label) {
    color: #c7d9de;

    font-size: 17px;
}

.requirement-item {
    display: flex;

    gap: 20px;

    padding: 23px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,0.14);
}

.requirement-item > span {
    min-width: 34px;
    height: 34px;

    border-radius: 50%;

    background:
        rgba(112,217,210,0.13);

    color: #70d9d2;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
}

.requirement-item h3 {
    font-size: 19px;

    margin-bottom: 6px;
}

.requirement-item p {
    color: #c7d9de;

    font-size: 15px;
}


/* =========================================================
   CAREER PROCESS
========================================================= */

.career-process-section {
    padding: 100px 0;

    background: white;
}

.career-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.career-process-card {
    background:
        var(--light-gray);

    border-radius: 10px;

    padding: 32px 27px;

    border-top:
        4px solid var(--teal);
}

.career-process-card > span {
    color: var(--teal);

    font-size: 13px;
    font-weight: bold;
}

.career-process-card h3 {
    color: var(--navy);

    font-size: 21px;

    margin: 25px 0 10px;
}

.career-process-card p {
    color: var(--gray);
}


/* =========================================================
   APPLICATION SECTION
========================================================= */

.career-application-section {
    padding: 110px 0;

    background:
        var(--light-gray);
}

.career-application-grid {
    display: grid;

    grid-template-columns:
        0.7fr 1fr;

    gap: 80px;

    align-items: start;
}

.application-intro h2 {
    color: var(--navy);

    font-size:
        clamp(36px,4vw,49px);

    line-height: 1.16;

    margin-bottom: 22px;
}

.application-intro > p:not(.section-label) {
    color: var(--gray);

    font-size: 17px;
}

.application-note {
    margin-top: 35px;

    background:
        var(--light-teal);

    border-left:
        4px solid var(--teal);

    padding: 25px;

    border-radius: 6px;
}

.application-note h3 {
    color: var(--navy);

    margin-bottom: 8px;
}

.application-note p {
    color: var(--gray);

    font-size: 14px;
}


/* =========================================================
   APPLICATION FORM
========================================================= */

.career-form-wrapper {
    background: white;

    padding: 42px;

    border-radius: 14px;

    box-shadow:
        0 12px 40px
        rgba(9,47,70,0.07);
}

.career-form {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-full {
    grid-column:
        1 / -1;
}

.form-group label {
    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid #d0d5dd;

    background: white;

    padding: 14px 15px;

    border-radius: 6px;

    font-family: inherit;

    font-size: 15px;

    color: #344054;

    outline: none;

    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        var(--teal);

    box-shadow:
        0 0 0 3px
        rgba(11,143,135,0.10);
}

.form-group small {
    color: var(--gray);

    font-size: 12px;
}

.form-checkbox {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: var(--gray);

    font-size: 14px;
}

.form-checkbox input {
    margin-top: 5px;
}

.career-submit-button {
    width: 100%;

    border: none;

    background:
        var(--teal);

    color: white;

    padding: 16px 25px;

    border-radius: 6px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.career-submit-button:hover {
    background:
        var(--teal-dark);

    transform:
        translateY(-2px);
}

.form-notice {
    color: var(--gray);

    font-size: 12px;

    margin-top: 18px;

    line-height: 1.6;
}


/* =========================================================
   CAREERS LOCATION SEO
========================================================= */

.career-location-section {
    padding: 100px 0;

    background: white;
}

.career-location-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}

.career-location-grid h2 {
    color: var(--navy);

    font-size:
        clamp(35px,4vw,48px);

    line-height: 1.17;
}

.career-location-grid
> div:last-child p {
    color: var(--gray);

    font-size: 17px;

    margin-bottom: 18px;
}


/* =========================================================
   CAREERS TABLET
========================================================= */

@media (max-width: 950px) {

    .careers-hero-grid,
    .career-opportunities-heading,
    .career-requirements-grid,
    .career-application-grid,
    .career-location-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .career-benefits-grid,
    .career-process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .career-job-card {

        grid-template-columns:
            1fr 1fr;
    }

    .career-job-card
    > div:last-child {

        grid-column:
            1 / -1;
    }

}


/* =========================================================
   CAREERS MOBILE
========================================================= */

@media (max-width: 600px) {

    .careers-hero {

        padding: 75px 0;
    }

    .careers-hero-content h1 {

        font-size: 39px;
    }

    .careers-hero-buttons {

        flex-direction: column;
    }

    .careers-hero-buttons .btn {

        width: 100%;
    }

    .career-hero-card {

        padding: 27px 22px;
    }

    .career-benefits-section,
    .career-opportunities-section,
    .career-requirements-section,
    .career-process-section,
    .career-application-section,
    .career-location-section {

        padding: 70px 0;
    }

    .career-benefits-grid,
    .career-process-grid,
    .career-job-card {

        grid-template-columns: 1fr;
    }

    .career-form {

        grid-template-columns: 1fr;
    }

    .form-full {

        grid-column: auto;
    }

    .career-form-wrapper {

        padding: 28px 20px;
    }

}
/* =========================================================
   PERSONAL CARE SERVICES
========================================================= */

.staffing-heading-section {
    padding: 80px 0 20px;
    background: #ffffff;
}


/* PERSONAL CARE SECTION */

.personal-care-section {
    padding: 105px 0;
    background: #ffffff;
}

.personal-care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.personal-care-card {
    background: #f7f9fa;
    border: 1px solid #e4e7ec;

    padding: 32px 27px;

    border-radius: 11px;

    transition: 0.3s ease;
}

.personal-care-card:hover {
    background: #ffffff;

    transform: translateY(-6px);

    border-color: transparent;

    box-shadow:
        0 16px 35px
        rgba(9, 47, 70, 0.10);
}


/* CARE NUMBER */

.care-icon {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #e8f7f5;

    color: #0b8f87;

    font-size: 12px;
    font-weight: 800;

    margin-bottom: 25px;
}

.personal-care-card h3 {
    color: #092f46;

    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.personal-care-card p {
    color: #667085;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   PERSONAL CARE BANNER
========================================================= */

.care-support-banner {
    padding: 90px 0;

    background:
        linear-gradient(
            120deg,
            #08756f,
            #092f46
        );

    color: #ffffff;
}

.care-support-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.care-support-grid h2 {
    font-size:
        clamp(36px, 4vw, 50px);

    line-height: 1.15;
}

.care-support-grid
> div:last-child p {
    color: #e0eeee;

    font-size: 17px;

    margin-bottom: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .personal-care-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .care-support-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .staffing-heading-section {
        padding: 60px 0 10px;
    }

    .personal-care-section {
        padding: 70px 0;
    }

    .personal-care-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }

    .care-support-banner {
        padding: 70px 0;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    background:
        linear-gradient(
            120deg,
            #062536,
            #092f46
        );

    padding: 110px 0;

    color: #ffffff;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero h1 {
    font-size:
        clamp(45px, 6vw, 68px);

    line-height: 1.08;

    margin-bottom: 22px;
}

.contact-hero-content > p:not(.eyebrow) {
    max-width: 720px;

    color: #d9e7eb;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION CARDS
========================================================= */

.contact-info-section {
    padding: 100px 0;

    background: #ffffff;
}

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.contact-info-card {
    padding: 35px;

    border: 1px solid #e4e7ec;

    border-radius: 12px;

    background: #ffffff;

    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color: transparent;

    box-shadow:
        0 16px 40px
        rgba(9, 47, 70, 0.10);
}

.contact-icon {
    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #e8f7f5;

    color: #0b8f87;

    border-radius: 50%;

    font-size: 22px;

    margin-bottom: 22px;
}

.contact-info-card h3 {
    color: #092f46;

    font-size: 21px;

    margin-bottom: 10px;
}

.contact-info-card p {
    color: #667085;

    margin-bottom: 15px;
}

.contact-info-card a,
.contact-info-card strong {
    color: #0b8f87;

    font-weight: 700;

    word-break: break-word;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    padding: 105px 0;

    background: #f7f9fa;
}

.contact-form-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 75px;

    align-items: start;
}


/* LEFT */

.contact-form-intro h2 {
    color: #092f46;

    font-size:
        clamp(36px, 4vw, 50px);

    line-height: 1.15;

    margin-bottom: 20px;
}

.contact-form-intro > p:not(.section-label) {
    color: #667085;

    font-size: 17px;

    margin-bottom: 30px;
}

.contact-help-item {
    display: flex;

    gap: 18px;

    padding: 22px 0;

    border-top:
        1px solid #e4e7ec;
}

.contact-help-item > span {
    min-width: 43px;
    height: 43px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #e8f7f5;

    color: #0b8f87;

    font-size: 12px;

    font-weight: 800;
}

.contact-help-item h3 {
    color: #092f46;

    margin-bottom: 5px;

    font-size: 18px;
}

.contact-help-item p {
    color: #667085;

    font-size: 14px;
}


/* FORM CARD */

.contact-form-wrapper {
    background: #ffffff;

    padding: 42px;

    border-radius: 14px;

    box-shadow:
        0 18px 45px
        rgba(9, 47, 70, 0.08);
}

.contact-form {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #344054;

    font-weight: 700;

    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border:
        1px solid #d0d5dd;

    border-radius: 6px;

    font-family:
        Arial, Helvetica, sans-serif;

    font-size: 15px;

    color: #344054;

    background: #ffffff;

    outline: none;

    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b8f87;

    box-shadow:
        0 0 0 3px
        rgba(11, 143, 135, 0.10);
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}

.full-width {
    grid-column:
        1 / -1;
}


/* CHECKBOX */

.form-checkbox {
    display: flex;

    gap: 10px;

    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 5px;

    accent-color: #0b8f87;
}

.form-checkbox label {
    color: #667085;

    font-size: 13px;

    line-height: 1.6;
}


/* SUBMIT */

.contact-submit-btn {
    width: 100%;

    padding: 16px 25px;

    border: none;

    border-radius: 6px;

    background: #0b8f87;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #08756f;

    transform: translateY(-2px);
}

.form-note {
    color: #667085;

    font-size: 12px;

    margin-top: 17px;

    line-height: 1.6;
}


/* =========================================================
   CONTACT PATHS
========================================================= */

.contact-path-section {
    padding: 100px 0;

    background: #ffffff;
}

.contact-path-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    margin-top: 45px;
}

.contact-path-card {
    padding: 45px;

    border-radius: 14px;

    border:
        1px solid #e4e7ec;
}

.contact-path-card h3 {
    color: #092f46;

    font-size: 28px;

    margin-bottom: 14px;
}

.contact-path-card > p:not(.small-heading) {
    color: #667085;

    margin-bottom: 27px;

    line-height: 1.8;
}

.employer-path {
    background: #f3fbfa;
}

.career-path {
    background: #f7f9fa;
}


/* =========================================================
   CONTACT LOCATION
========================================================= */

.contact-location-section {
    padding: 100px 0;

    background: #f7f9fa;
}

.contact-location-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;
}

.contact-location-grid h2 {
    color: #092f46;

    font-size:
        clamp(35px, 4vw, 48px);

    line-height: 1.17;
}

.contact-location-grid
> div:last-child p {
    color: #667085;

    font-size: 17px;

    margin-bottom: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-info-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-info-card:last-child {
        grid-column:
            1 / -1;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-location-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-hero {
        padding: 75px 0;
    }

    .contact-hero h1 {
        font-size: 42px;
    }


    .contact-info-section,
    .contact-form-section,
    .contact-path-section,
    .contact-location-section {
        padding: 70px 0;
    }


    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card:last-child {
        grid-column: auto;
    }


    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }


    .contact-path-grid {
        grid-template-columns: 1fr;
    }

    .contact-path-card {
        padding: 32px 25px;
    }

}
/* =========================================================
   NEW INDUSTRY PHOTO GRID
========================================================= */

.all-industry-photo-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    margin-top: 45px;
}


/* =========================================================
   PHOTO CARD
========================================================= */

.industry-photo-card-new {
    position: relative;

    height: 390px;

    overflow: hidden;

    border-radius: 14px;

    background: #092f46;

    box-shadow:
        0 8px 25px
        rgba(9, 47, 70, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.industry-photo-card-new img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* =========================================================
   DARK GRADIENT
========================================================= */

.industry-photo-card-new::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(5, 37, 54, 0.97) 0%,
            rgba(5, 37, 54, 0.78) 35%,
            rgba(5, 37, 54, 0.28) 68%,
            rgba(5, 37, 54, 0.02) 100%
        );
}


/* =========================================================
   TEXT
========================================================= */

.industry-photo-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 28px;
}


.industry-photo-overlay span {
    color: #83ded8;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.industry-photo-overlay h3 {
    color: #ffffff;

    font-size: 24px;

    line-height: 1.25;

    margin:
        8px 0 8px;
}


.industry-photo-overlay p {
    color: #dce8ec;

    font-size: 14px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   HOVER
========================================================= */

.industry-photo-card-new:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(9, 47, 70, 0.18);
}


.industry-photo-card-new:hover img {
    transform:
        scale(1.07);
}


/* =========================================================
   CAREER IMAGE
========================================================= */

.career-photo {
    width: 100%;
    height: 500px;

    object-fit: cover;

    display: block;

    border-radius: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .all-industry-photo-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .all-industry-photo-grid {
        grid-template-columns: 1fr;
    }


    .industry-photo-card-new {
        height: 360px;
    }


    .industry-photo-overlay {
        padding: 24px;
    }


    .career-photo {
        height: 400px;
    }

}

/* =========================================================
   REQUEST STAFF PAGE
========================================================= */


/* HERO */

.request-staff-hero {
    background:
        linear-gradient(
            120deg,
            #062536,
            #092f46
        );

    color: #ffffff;

    padding: 100px 0;
}


.request-staff-hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.75fr;

    gap: 80px;

    align-items: center;
}


.request-hero-content h1 {
    font-size:
        clamp(45px, 5vw, 65px);

    line-height: 1.08;

    margin-bottom: 23px;
}


.request-hero-content > p:not(.eyebrow) {
    color: #dce8ec;

    font-size: 18px;

    max-width: 680px;

    line-height: 1.8;
}


.request-hero-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;

    margin-top: 30px;

    color: #dce8ec;

    font-weight: 600;
}


/* CONTACT CARD */

.request-contact-card {
    background: #ffffff;

    color: #092f46;

    padding: 38px;

    border-radius: 14px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.25);
}


.request-card-small {
    color: #0b8f87;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.request-contact-card h2 {
    font-size: 30px;

    margin-bottom: 10px;
}


.request-contact-card > p:not(.request-card-small) {
    color: #667085;

    margin-bottom: 23px;
}


.request-contact-person,
.request-contact-detail {
    padding: 15px 0;

    border-top:
        1px solid #e4e7ec;
}


.request-contact-person span,
.request-contact-detail span {
    display: block;

    color: #667085;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 3px;
}


.request-contact-person strong,
.request-contact-detail a {
    color: #092f46;

    font-size: 17px;

    font-weight: 700;
}


.request-contact-detail a:hover {
    color: #0b8f87;
}


/* INTRO */

.request-intro-section {
    padding: 95px 0;

    background: #ffffff;
}


.request-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}


.request-intro-grid h2 {
    color: #092f46;

    font-size:
        clamp(35px, 4vw, 48px);

    line-height: 1.15;
}


.request-intro-grid > div:last-child p {
    color: #667085;

    font-size: 17px;

    margin-bottom: 15px;
}


/* =========================================================
   FORM
========================================================= */

.staff-request-form-section {
    background: #f7f9fa;

    padding: 100px 0;
}


.staff-request-form-wrapper {
    max-width: 1000px;

    margin: auto;

    background: #ffffff;

    padding: 50px;

    border-radius: 16px;

    box-shadow:
        0 15px 45px
        rgba(9,47,70,0.08);
}


.form-section-heading {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 30px;
}


.form-section-heading > span {
    min-width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    background: #e8f7f5;

    color: #0b8f87;

    font-weight: 800;

    font-size: 12px;
}


.form-section-heading h2 {
    color: #092f46;

    font-size: 25px;

    margin-bottom: 2px;
}


.form-section-heading p {
    color: #667085;

    font-size: 14px;
}


.form-section-spacing {
    margin-top: 55px;

    padding-top: 45px;

    border-top:
        1px solid #e4e7ec;
}


.request-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    color: #344054;

    font-weight: 700;

    font-size: 14px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid #d0d5dd;

    border-radius: 7px;

    padding: 14px 15px;

    font-family:
        Arial, Helvetica, sans-serif;

    font-size: 15px;

    color: #344054;

    background: #ffffff;

    outline: none;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b8f87;

    box-shadow:
        0 0 0 3px
        rgba(11,143,135,0.10);
}


.form-group textarea {
    resize: vertical;
}


.full-width {
    grid-column:
        1 / -1;
}


/* CONSENT */

.request-form-consent {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 35px;
}


.request-form-consent input {
    margin-top: 5px;

    accent-color: #0b8f87;
}


.request-form-consent label {
    color: #667085;

    font-size: 13px;

    line-height: 1.6;
}


/* PRIVACY */

.request-privacy-note {
    margin-top: 25px;

    padding: 20px;

    border-left:
        4px solid #0b8f87;

    background: #e8f7f5;
}


.request-privacy-note strong {
    display: block;

    color: #092f46;

    margin-bottom: 4px;
}


.request-privacy-note p {
    color: #667085;

    font-size: 13px;
}


/* SUBMIT */

.staff-request-submit {
    width: 100%;

    margin-top: 30px;

    border: none;

    border-radius: 7px;

    padding: 17px 25px;

    background: #0b8f87;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}


.staff-request-submit:hover {
    background: #08756f;

    transform:
        translateY(-2px);
}


/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.request-next-section {
    padding: 100px 0;

    background: #ffffff;
}


.request-next-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    margin-top: 45px;
}


.request-next-card {
    padding: 30px;

    background: #f7f9fa;

    border-radius: 10px;

    border-top:
        4px solid #0b8f87;
}


.request-next-card span {
    color: #0b8f87;

    font-size: 12px;

    font-weight: 800;
}


.request-next-card h3 {
    color: #092f46;

    margin:
        20px 0 8px;
}


.request-next-card p {
    color: #667085;

    font-size: 14px;
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.request-direct-contact {
    background: #092f46;

    color: #ffffff;

    padding: 90px 0;
}


.request-direct-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.request-direct-grid h2 {
    font-size:
        clamp(35px,4vw,48px);

    margin-bottom: 15px;
}


.request-direct-grid > div:first-child > p:not(.section-label) {
    color: #dce8ec;

    font-size: 17px;
}


.request-direct-details {
    display: grid;

    gap: 12px;
}


.request-direct-details a {
    background:
        rgba(255,255,255,0.08);

    border:
        1px solid
        rgba(255,255,255,0.15);

    padding: 18px 20px;

    border-radius: 7px;

    transition: 0.3s;
}


.request-direct-details a:hover {
    background:
        rgba(255,255,255,0.14);
}


.request-direct-details span {
    display: block;

    color: #8ddfd9;

    font-size: 10px;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.request-direct-details strong {
    color: #ffffff;

    font-size: 17px;

    word-break: break-word;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .request-staff-hero-grid,
    .request-intro-grid,
    .request-direct-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .request-next-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .request-staff-hero {
        padding: 70px 0;
    }


    .request-hero-content h1 {
        font-size: 40px;
    }


    .request-hero-features {
        grid-template-columns: 1fr;
    }


    .request-contact-card {
        padding: 28px 22px;
    }


    .request-intro-section,
    .staff-request-form-section,
    .request-next-section,
    .request-direct-contact {
        padding: 70px 0;
    }


    .staff-request-form-wrapper {
        padding: 30px 20px;
    }


    .request-form-grid {
        grid-template-columns: 1fr;
    }


    .full-width {
        grid-column: auto;
    }


    .request-next-grid {
        grid-template-columns: 1fr;
    }


    .form-section-heading {
        align-items: flex-start;
    }

}