/* =========================================================
   HERO SLIDESHOW
========================================================= */

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #083d63;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 27, 46, 0.92) 0%,
            rgba(3, 39, 66, 0.75) 48%,
            rgba(3, 39, 66, 0.3) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-right: 40%;
    box-sizing: border-box;
    color: #ffffff;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #f2c45f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
}

.hero-content p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-primary-button,
.hero-secondary-button {
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.hero-primary-button {
    background: #d8a83e;
    color: #082f4d;
}

.hero-primary-button:hover {
    background: #edc564;
    transform: translateY(-2px);
}

.hero-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hero-secondary-button:hover {
    background: #ffffff;
    color: #083d63;
    transform: translateY(-2px);
}

/* HERO ARROWS */

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.55);
}

.slider-arrow-left {
    left: 22px;
}

.slider-arrow-right {
    right: 22px;
}

/* HERO DOTS */

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 6;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dot.active {
    border-color: #d8a83e;
    background: #d8a83e;
}

/* =========================================================
   SERVICES SHOWCASE
========================================================= */

.service-showcase {
    padding: 70px 20px;
    overflow: hidden;
    background: #ffffff;
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #d8a83e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.section-heading h2 {
    margin: 0;
    color: #083d63;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
}

.section-heading p {
    margin: 14px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   SERVICE SLIDER
========================================================= */

.service-slider {
    position: relative;
    width: min(1100px, 100%);
    min-height: 430px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 20px 55px rgba(8, 61, 99, 0.14);
    transition: height 0.5s ease;
}

.service-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateX(70px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        visibility 0.8s ease;
}

.service-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

/* Keep pictures on the left for every section */

.service-feature .service-images,
.service-feature.reverse .service-images {
    order: 1;
}

.service-feature .service-information,
.service-feature.reverse .service-information {
    order: 2;
}

/* =========================================================
   SERVICE PICTURES
========================================================= */

.service-images {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #dbe3ea;
}

.service-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 430px;
    margin: 0;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 1.2s ease,
        transform 5s ease;
}

.service-images img.active-photo {
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
   SERVICE INFORMATION
========================================================= */

.service-information {
    min-height: 430px;
    padding: 45px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    text-align: center;
}

.service-number {
    display: block;
    margin-bottom: 12px;
    color: #d8a83e;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.highlighted-service-title {
    display: inline-block;
    margin: 0 0 18px;
    padding: 10px 19px;
    border-radius: 9px;
    background: #083d63;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.highlighted-service-title:hover {
    background: #0c5b8f;
    transform: translateY(-2px);
}

.service-information p {
    width: min(420px, 100%);
    margin: 0 auto 22px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1478bd;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.service-link:hover {
    color: #083d63;
    text-decoration: underline;
}

/* =========================================================
   SERVICE DOTS
========================================================= */

.service-slider-dots {
    margin-top: 27px;
    display: flex;
    justify-content: center;
    gap: 11px;
}

.service-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #1478bd;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.service-dot.active {
    border-color: #d8a83e;
    background: #d8a83e;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .hero-slider {
        min-height: 620px;
    }

    .hero-content {
        padding: 0 55px;
        text-align: center;
    }

    .hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: rgba(3, 35, 59, 0.78);
    }

    .service-slider {
        min-height: 660px;
    }

    .service-slide {
        grid-template-columns: 1fr;
    }

    .service-images {
        min-height: 340px;
    }

    .service-images img {
        height: 340px;
    }

    .service-information {
        min-height: 320px;
        padding: 32px 25px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .hero-slider {
        min-height: 600px;
    }

    .hero-content {
        width: calc(100% - 30px);
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .slider-arrow-left {
        left: 8px;
    }

    .slider-arrow-right {
        right: 8px;
    }

    .service-showcase {
        padding: 48px 12px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .service-slider {
        min-height: 575px;
        border-radius: 15px;
    }

    .service-images {
        min-height: 255px;
    }

    .service-images img {
        height: 255px;
    }

    .service-information {
        min-height: 320px;
        padding: 27px 18px;
    }

    .highlighted-service-title {
        font-size: 27px;
    }

    .service-information p {
        font-size: 15px;
    }
}
/* =========================================================
   JOBS ABROAD PREVIEW SECTION
========================================================= */

html {
    scroll-behavior: smooth;
}

.jobs-abroad-preview {
    padding: 70px 20px;
    background: #f3f6f9;
    scroll-margin-top: 85px;
}

.jobs-preview-container {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(8, 61, 99, 0.12);
}


/* =========================================================
   LEFT PHOTO SLIDESHOW
========================================================= */

.jobs-preview-photos {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #083d63;
}

.jobs-preview-slideshow {
    position: absolute;
    inset: 0;
}

.jobs-preview-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 1s ease,
        transform 5s ease;
}

.jobs-preview-image.active {
    opacity: 1;
    transform: scale(1);
}

.jobs-preview-photos::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 35, 58, 0.08) 30%,
            rgba(4, 35, 58, 0.78) 100%
        );
    pointer-events: none;
}

.jobs-preview-photo-label {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(4, 43, 70, 0.7);
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
    backdrop-filter: blur(6px);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.jobs-preview-content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jobs-preview-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #d8a83e;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.jobs-preview-content h2 {
    max-width: 540px;
    margin: 0;
    color: #083d63;
    font-size: clamp(27px, 3.5vw, 39px);
    line-height: 1.15;
}

.jobs-preview-introduction {
    max-width: 600px;
    margin: 13px 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   DESTINATION OPTIONS
========================================================= */

.jobs-preview-destinations {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.jobs-destination-item {
    padding: 14px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #f8fafc;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.jobs-destination-item:hover {
    border-color: #d8a83e;
    background: #fffaf0;
    transform: translateX(3px);
    box-shadow: 0 8px 22px rgba(8, 61, 99, 0.07);
}

.jobs-destination-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e8f2f8;
    font-size: 23px;
    line-height: 1;
}

.jobs-destination-item h3 {
    margin: 0;
    color: #083d63;
    font-size: 16px;
    line-height: 1.25;
}

.jobs-destination-item p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   CONTINUE BUTTON
========================================================= */

.jobs-preview-button {
    align-self: flex-start;
    min-height: 45px;
    margin-top: 22px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 9px;
    background: #083d63;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.jobs-preview-button span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.jobs-preview-button:hover {
    background: #0c5b8f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(8, 61, 99, 0.2);
}

.jobs-preview-button:hover span {
    transform: translateX(4px);
}

.jobs-preview-button:focus-visible {
    outline: 3px solid rgba(20, 120, 189, 0.25);
    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jobs-abroad-preview {
        padding: 55px 16px;
    }

    .jobs-preview-container {
        grid-template-columns: 1fr;
    }

    .jobs-preview-photos {
        min-height: 420px;
    }

    .jobs-preview-content {
        padding: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .jobs-abroad-preview {
        padding: 42px 11px;
        scroll-margin-top: 70px;
    }

    .jobs-preview-container {
        border-radius: 14px;
    }

    .jobs-preview-photos {
        min-height: 300px;
    }

    .jobs-preview-photo-label {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 11px 12px;
        font-size: 12px;
    }

    .jobs-preview-content {
        padding: 25px 18px;
    }

    .jobs-preview-content h2 {
        font-size: 26px;
    }

    .jobs-preview-introduction {
        margin: 10px 0 18px;
        font-size: 13px;
    }

    .jobs-destination-item {
        grid-template-columns: 38px 1fr;
        padding: 12px;
        gap: 10px;
    }

    .jobs-destination-icon {
        width: 38px;
        height: 38px;
        font-size: 21px;
    }

    .jobs-destination-item h3 {
        font-size: 15px;
    }

    .jobs-destination-item p {
        font-size: 11px;
    }

    .jobs-preview-button {
        width: 100%;
        margin-top: 19px;
    }

}
/* =========================================================
   SERVICES INTRODUCTION
========================================================= */

.services-introduction {
    padding: 65px 20px 35px;
    background: #ffffff;
    text-align: center;
}

.services-introduction > span {
    color: #d8a83e;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.services-introduction h2 {
    width: min(760px, 100%);
    margin: 8px auto 0;
    color: #083d63;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.18;
}

.services-introduction p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 15px;
}


/* =========================================================
   SEPARATE SERVICE SECTIONS
========================================================= */

.separate-service-section {
    min-height: calc(100vh - 70px);
    padding: 45px 20px;
    display: flex;
    align-items: center;
    background: #ffffff;
    scroll-margin-top: 70px;
}

.separate-service-section.section-light-blue {
    background: #f1f6f9;
}

.separate-service-container {
    width: min(1120px, 100%);
    min-height: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 52% 48%;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(8, 61, 99, 0.12);
}

.service-reverse .separate-service-gallery {
    order: 2;
}

.service-reverse .separate-service-content {
    order: 1;
}


/* =========================================================
   SEPARATE PHOTO GALLERIES
========================================================= */

.separate-service-gallery {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #083d63;
}

.separate-service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 1s ease,
        transform 5s ease;
}

.separate-service-image.active {
    opacity: 1;
    transform: scale(1);
}

.separate-service-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(3, 35, 59, 0.02) 35%,
            rgba(3, 35, 59, 0.78) 100%
        );
    pointer-events: none;
}

.separate-photo-label {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    background: rgba(3, 43, 70, 0.7);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(6px);
}


/* =========================================================
   GALLERY DOTS
========================================================= */

.separate-gallery-dots {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.separate-gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.separate-gallery-dot.active {
    border-color: #d8a83e;
    background: #d8a83e;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.separate-service-content {
    min-height: 540px;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.separate-service-number {
    color: #d8a83e;
    font-size: 13px;
    font-weight: 850;
}

.separate-service-label {
    margin-top: 5px;
    color: #1478bd;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.separate-service-content h2 {
    margin: 6px 0 11px;
    color: #083d63;
    font-size: clamp(27px, 3.5vw, 39px);
    line-height: 1.14;
}

.separate-service-content > p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   SERVICE HIGHLIGHTS
========================================================= */

.separate-service-highlights {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.separate-highlight {
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    background: #f8fafc;
}

.separate-highlight > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e8f2f8;
    font-size: 20px;
}

.separate-highlight h3 {
    margin: 0;
    color: #083d63;
    font-size: 14px;
    line-height: 1.2;
}

.separate-highlight p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
}


/* =========================================================
   SERVICE BUTTON
========================================================= */

.separate-service-button {
    align-self: flex-start;
    min-height: 43px;
    margin-top: 17px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #083d63;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.separate-service-button:hover {
    background: #0c5b8f;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .separate-service-section {
        min-height: auto;
        padding: 45px 15px;
    }

    .separate-service-container {
        grid-template-columns: 1fr;
    }

    .service-reverse .separate-service-gallery,
    .service-reverse .separate-service-content {
        order: initial;
    }

    .separate-service-gallery {
        min-height: 360px;
    }

    .separate-service-content {
        min-height: auto;
        padding: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-introduction {
        padding: 45px 15px 25px;
    }

    .services-introduction h2 {
        font-size: 29px;
    }

    .separate-service-section {
        padding: 30px 10px;
    }

    .separate-service-container {
        border-radius: 14px;
    }

    .separate-service-gallery {
        min-height: 275px;
    }

    .separate-service-content {
        padding: 24px 18px;
    }

    .separate-service-content h2 {
        font-size: 25px;
    }

    .separate-service-button {
        width: 100%;
    }

}  

/* =========================================================
   TRANSPARENT VERTICAL HERO SERVICE LINKS
========================================================= */

html {
    scroll-behavior: smooth;
}

.hero-service-links {
    position: absolute;
    z-index: 10;
    top: 39%;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.hero-service-link {
    position: relative;
    width: 210px;
    min-height: 62px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
    overflow: hidden;
    border: 2px solid rgba(242, 196, 95, 0.9);
    border-radius: 12px;
    background: rgba(3, 35, 59, 0.58);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.34),
        0 0 20px rgba(216, 168, 62, 0.42);
    animation: heroServiceAttention 2.4s ease-in-out infinite;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-service-link:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-service-link:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-service-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 75%;
    height: 100%;
    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.32),
            transparent
        );
    pointer-events: none;
    animation: heroServiceShine 3.4s ease-in-out infinite;
}

.hero-service-link:hover {
    border-color: #f2c45f;
    background: rgba(3, 35, 59, 0.9);
    color: #ffffff;
    transform: translateX(-9px) scale(1.04);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.42),
        0 0 32px rgba(242, 196, 95, 0.78);
    animation-play-state: paused;
}

.hero-service-link:focus-visible {
    outline: 3px solid rgba(242, 196, 95, 0.45);
    outline-offset: 4px;
}

.hero-service-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 196, 95, 0.75);
    border-radius: 10px;
    background: rgba(216, 168, 62, 0.2);
    font-size: 22px;
    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.08),
        0 0 12px rgba(216, 168, 62, 0.22);
}

.hero-service-name {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
}

#jobs,
#visa-assistance,
#travel-services {
    scroll-margin-top: 80px;
}


/* =========================================================
   ATTENTION ANIMATIONS
========================================================= */

@keyframes heroServiceAttention {

    0%,
    100% {
        transform: translateX(0) scale(1);
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.34),
            0 0 16px rgba(216, 168, 62, 0.3);
    }

    50% {
        transform: translateX(-6px) scale(1.025);
        box-shadow:
            0 13px 31px rgba(0, 0, 0, 0.38),
            0 0 28px rgba(242, 196, 95, 0.65);
    }

}

@keyframes heroServiceShine {

    0%,
    60% {
        left: -130%;
    }

    100% {
        left: 155%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-service-links {
        top: auto;
        right: 15px;
        bottom: 92px;
        left: 15px;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        transform: none;
    }

    .hero-service-link {
        width: auto;
        min-height: 58px;
        flex: 1;
        max-width: 210px;
        padding: 8px 10px;
        grid-template-columns: 36px 1fr;
        gap: 8px;
        animation-duration: 2.8s;
    }

    .hero-service-link:hover {
        transform: translateY(-5px) scale(1.03);
    }

    .hero-service-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .hero-service-name {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-service-links {
        right: 9px;
        bottom: 76px;
        left: 9px;
        gap: 5px;
    }

    .hero-service-link {
        min-width: 0;
        min-height: 58px;
        padding: 7px 4px;
        display: flex;
        flex-direction: column;
        gap: 3px;
        border-width: 1px;
        border-radius: 9px;
        text-align: center;
        background: rgba(3, 35, 59, 0.7);
    }

    .hero-service-link:hover {
        transform: translateY(-4px) scale(1.02);
    }

    .hero-service-icon {
        width: 28px;
        height: 28px;
        border: none;
        background: rgba(216, 168, 62, 0.2);
        font-size: 16px;
    }

    .hero-service-name {
        font-size: 9px;
        line-height: 1.15;
    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-service-link,
    .hero-service-link::before {
        animation: none;
    }

}

/* =========================================================
   OUR STORY
========================================================= */

.our-story-section {
    padding: 100px 20px;
    background: #ffffff;
    scroll-margin-top: 100px;
}

.our-story-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}


/* IMAGE */

.our-story-visual {
    position: relative;
    min-width: 0;
}

.our-story-image-frame {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-radius: 28px;
    background: #e9edf3;
    box-shadow:
        0 30px 70px
        rgba(16, 24, 40, 0.16);
}

.our-story-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(15, 23, 42, 0.58) 100%
        );
}

.our-story-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.our-story-visual:hover .our-story-image {
    transform: scale(1.04);
}

.our-story-image-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    z-index: 2;

    width: min(280px, 75%);
    padding: 22px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 16px;
    background: rgba(23, 32, 51, 0.95);

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.28);
}

.our-story-image-card strong,
.our-story-image-card span {
    display: block;
}

.our-story-image-card strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 18px;
}

.our-story-image-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.6;
}


/* CONTENT */

.our-story-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #b78727;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.our-story-content h2 {
    margin: 0 0 22px;
    color: #172033;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.1;
}

.our-story-content > p {
    margin: 0 0 17px;
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.our-story-content .our-story-lead {
    color: #344054;
    font-size: 17px;
    font-weight: 600;
}


/* VALUES */

.our-story-values {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.story-value-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;

    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #f8fafc;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.story-value-card:hover {
    border-color:
        rgba(183, 135, 39, 0.4);

    background: #ffffff;
    transform: translateX(4px);
}

.story-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 11px;
    background: #f5ead3;
    color: #b78727;

    font-size: 18px;
    font-weight: 900;
}

.story-value-card h3 {
    margin: 1px 0 4px;
    color: #172033;
    font-size: 14px;
}

.story-value-card p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}


/* BUTTONS */

.our-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.our-story-primary-button,
.our-story-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 11px 21px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.our-story-primary-button {
    background: #172033;
    color: #ffffff;
}

.our-story-primary-button:hover {
    background: #b78727;
    transform: translateY(-2px);
}

.our-story-secondary-button {
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #344054;
}

.our-story-secondary-button:hover {
    border-color: #b78727;
    color: #b78727;
    transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 1050px) {
    .our-story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .our-story-visual {
        max-width: 720px;
        margin: 0 auto;
    }

    .our-story-image-card {
        right: 24px;
    }
}

@media (max-width: 650px) {
    .our-story-section {
        padding: 70px 16px;
    }

    .our-story-image-frame,
    .our-story-image {
        min-height: 420px;
    }

    .our-story-image-frame {
        border-radius: 20px;
    }

    .our-story-image-card {
        right: 16px;
        bottom: 16px;
        padding: 17px;
    }

    .our-story-content h2 {
        font-size: 36px;
    }

    .our-story-actions {
        flex-direction: column;
    }

    .our-story-primary-button,
    .our-story-secondary-button {
        width: 100%;
    }
}