
        /* =========================================
   JOBS SECTION
========================================= */

.jobs-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 75px 40px 100px;
}


/* =========================================
   HEADER
========================================= */

.jobs-heading {
    position: relative;
    max-width: 820px;
    margin-bottom: 48px;
}

.jobs-heading::before {
    content: "KARRIERE BEI PHYSIO POINTS";

    display: block;
    width: fit-content;

    margin-bottom: 14px;
    padding-top: 17px;

    color: #987b3e;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    border-top: 2px solid #987b3e;
}

.jobs-heading h2 {
    margin: 0 0 13px;

    color: #3f4d52;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.jobs-heading h2 span {
    color: #987b3e;
}

.jobs-heading p {
    max-width: 680px;
    margin: 0;

    color: #6b7376;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================
   GRID
========================================= */

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px 30px;
}


/* =========================================
   JOB CARD
========================================= */

.job-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;

    background: #ffffff;

    border-radius: 12px;
    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.job-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.job-image {
    position: relative;

    display: block;

    width: 100%;
    height: 285px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: transparent;

    line-height: 0;

    text-decoration: none !important;

    cursor: pointer;
}

.job-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.job-image:hover img {
    transform: scale(1.055);
}


/* =========================================
   IMAGE PA PDF
========================================= */

.job-image-disabled {
    cursor: default;
}

.job-image-disabled:hover img {
    transform: none;
}


/* =========================================
   ARROW
========================================= */

.job-arrow {
    position: absolute;

    right: 16px;
    bottom: 16px;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #987b3e;

    font-size: 16px;
    line-height: 1;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.15);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.job-image:hover .job-arrow {
    background: #987b3e;

    color: #ffffff;

    transform: translateX(3px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.20);
}


/* =========================================
   WHITE CONTENT
========================================= */

.job-content {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 118px;

    padding: 22px 22px 24px;

    background: #ffffff;

    cursor: pointer;
}

.job-content h3 {
    margin: 0 0 22px;

    color: #3f4d52;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;

    transition: color 0.3s ease;
}

.job-content:hover h3 {
    color: #987b3e;
}


/* =========================================
   JETZT BEWERBEN
========================================= */

.job-apply {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    gap: 8px;

    margin-top: auto;

    color: #987b3e;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.4;

    transition: gap 0.3s ease;
}

.job-apply i {
    transition: transform 0.3s ease;
}

.job-apply::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #987b3e;

    transition: width 0.35s ease;
}

.job-content:hover .job-apply {
    gap: 12px;
}

.job-content:hover .job-apply i {
    transform: translateX(2px);
}

.job-content:hover .job-apply::after {
    width: 100%;
}


/* =========================================
   POPUP BACKGROUND
========================================= */

.popupwrap {
    display: none;

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 9999999;

    padding: 20px;

    overflow-y: auto;

    background: rgba(31, 36, 38, 0.68);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* =========================================
   POPUP
========================================= */

.popupinner {
    position: relative;

    width: 100%;
    max-width: 720px;

    margin: 30px auto;

    padding: 38px 46px 40px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.24);
}


/* =========================================
   POPUP HEADER
========================================= */

.application-header {
    position: relative;

    margin-bottom: 38px;

    text-align: center;
}

.application-line {
    display: block;

    width: 42px;
    height: 2px;

    margin: 3px auto 16px;

    background: #987b3e;

    border-radius: 20px;
}

.application-small-title {
    display: block;

    margin-bottom: 12px;

    color: #987b3e;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.application-header h2 {
    margin: 0 0 7px;

    color: #3f4d52;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.application-header p {
    margin: 0;

    color: #7a8386;

    font-size: 14px;
}


/* =========================================
   CLOSE
========================================= */

.fclose {
    position: absolute;

    top: -17px;
    right: -20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #ffffff;

    color: #526065;

    font-size: 16px;

    cursor: pointer;

    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.fclose:hover {
    color: #987b3e;

    transform: rotate(90deg);
}


/* =========================================
   FORM GRID
========================================= */

.application-form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px 18px;
}

.application-field {
    display: flex;
    flex-direction: column;
}

.application-full {
    width: 100%;

    margin-top: 26px;
}

.application-field label {
    margin-bottom: 8px;

    color: #4e5c60;

    font-size: 13px;
    font-weight: 600;
}

.application-field label span {
    color: #987b3e;
}


/* =========================================
   INPUTS
========================================= */

.application-field input[type="text"],
.application-field input[type="email"],
.application-field input[type="tel"],
.application-field input[type="number"],
.application-field select,
.application-field textarea {

    width: 100%;

    padding: 14px 14px;

    color: #3f4d52;

    font-family: inherit;
    font-size: 14px;

    background: #ffffff;

    border: 1px solid #d5dadd;
    border-radius: 7px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.application-field input {
    height: 50px;
}

.application-field select {
    height: 50px;

    cursor: pointer;
}

.application-field textarea {
    min-height: 105px;

    resize: vertical;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {

    border-color: #987b3e;

    box-shadow:
        0 0 0 3px rgba(152, 123, 62, 0.10);
}

.application-field input::placeholder,
.application-field textarea::placeholder {
    color: #a0a6a8;
}


/* =========================================
   FILE UPLOAD
========================================= */

.application-upload {
    display: flex !important;
    align-items: center;

    width: 100%;

    min-height: 78px;

    margin: 0 !important;

    padding: 16px 18px;

    border: 1px dashed #c9aa6a;
    border-radius: 8px;

    background: #fdfcf9;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.application-upload:hover {
    border-color: #987b3e;

    background: #faf7f0;
}

.application-upload > i {
    margin-right: 15px;

    color: #a78542;

    font-size: 25px;
}

.upload-text {
    display: flex;
    flex-direction: column;
}

.upload-text strong {
    color: #4e5c60;

    font-size: 13px;
    font-weight: 600;
}

.upload-text small {
    margin-top: 4px;

    color: #92999b;

    font-size: 11px;
}

.application-upload input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.selected-files {
    margin-top: 8px;

    color: #6b7376;

    font-size: 12px;
}


/* =========================================
   SUBMIT
========================================= */

.application-submit {
    margin-top: 32px;
}

.application-submit button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 50px;

    padding: 0 23px;

    border: 0;
    border-radius: 5px;

    background: #a98542;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(152, 123, 62, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.application-submit button:hover {
    background: #8f7137;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(152, 123, 62, 0.26);
}

.application-submit button i {
    transition: transform 0.3s ease;
}

.application-submit button:hover i {
    transform: translateX(3px);
}


/* =========================================
   SUCCESS
========================================= */

.successmsg {
    display: none;

    margin-top: 20px;

    padding: 13px 15px;

    color: #42654b;

    font-size: 13px;

    background: #f1f8f2;

    border: 1px solid #d5e8d8;
    border-radius: 6px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .jobs-section {
        padding: 60px 30px 80px;
    }

    .jobs-heading h2 {
        font-size: 34px;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 35px 25px;
    }

    .job-image {
        height: 270px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .jobs-section {
        padding: 40px 15px 60px;
    }


    /* HEADER */

    .jobs-heading {
        margin-bottom: 30px;
    }

    .jobs-heading::before {
        margin-bottom: 11px;

        padding-top: 12px;

        font-size: 9px;

        letter-spacing: 1.3px;
    }

    .jobs-heading h2 {
        margin-bottom: 9px;

        font-size: 25px;

        line-height: 1.2;
    }

    .jobs-heading h2 span {
        display: inline;
    }

    .jobs-heading p {
        font-size: 14px;

        line-height: 1.55;
    }


    /* GRID */

    .jobs-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    /* CARD */

    .job-card {
        border-radius: 10px;
    }

    .job-card:hover {
        transform: none;
    }


    /* IMAGE */

    .job-image {
        height: 285px;
    }

    .job-image:hover img {
        transform: none;
    }


    /* ARROW */

    .job-arrow {
        right: 12px;
        bottom: 12px;

        width: 40px;
        height: 40px;
    }


    /* CONTENT */

    .job-content {
        min-height: 108px;

        padding: 18px 18px 20px;
    }

    .job-content h3 {
        margin-bottom: 18px;

        font-size: 19px;
    }

    .job-apply {
        font-size: 14px;
    }


    /* POPUP */

    .popupwrap {
        padding: 10px;
    }

    .popupinner {
        max-width: 100%;

        margin: 15px auto;

        padding: 30px 20px 28px;

        border-radius: 13px;
    }

    .application-header {
        margin-bottom: 30px;
    }

    .application-header h2 {
        font-size: 26px;
    }

    .application-small-title {
        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .fclose {
        top: -15px;
        right: -7px;

        width: 36px;
        height: 36px;
    }


    /* FORM 1 COLUMN */

    .application-form-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .application-full {
        margin-top: 20px;
    }

    .application-field input[type="text"],
    .application-field input[type="email"],
    .application-field input[type="tel"],
    .application-field input[type="number"],
    .application-field select {

        height: 48px;
    }

    .application-upload {
        min-height: 75px;

        padding: 14px;
    }

    .application-submit {
        margin-top: 25px;
    }

    .application-submit button {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .jobs-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .jobs-heading h2 {
        font-size: 23px;
    }

    .jobs-heading p {
        font-size: 13.5px;
    }

    .job-image {
        height: 260px;
    }

    .job-content {
        padding: 16px 14px 18px;
    }

    .job-content h3 {
        font-size: 18px;
    }

    .job-apply {
        font-size: 13px;
    }
}
  
/* =========================================================
   PHYSIOTHERAPEUT – JOB DETAIL PAGE
========================================================= */

.physio-job-detail {
    --physio-gold: #987b3e;
    --physio-dark: #3f4d52;
    --physio-text: #5f696d;
    --physio-light: #f8f6f3;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 0 80px;
}


/* =========================================================
   HERO
========================================================= */

.physio-job-hero {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 75px;

    border-radius: 18px;
    overflow: hidden;

    background: #eee;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.physio-job-hero img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.physio-job-hero:hover img {
    transform: scale(1.025);
}


/* Gradient mbi foto */

.physio-job-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 27, 30, 0.72) 0%,
            rgba(20, 27, 30, 0.38) 42%,
            rgba(20, 27, 30, 0.05) 75%
        );

    pointer-events: none;
}


/* Teksti mbi foto */

.physio-job-hero-overlay {
    position: absolute;
    left: 60px;
    bottom: 55px;

    z-index: 2;

    max-width: 700px;

    color: #fff;
}

.physio-job-hero-overlay span {
    display: block;

    margin-bottom: 12px;

    color: #d7bd83;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.physio-job-hero-overlay h1 {
    margin: 0;

    color: #fff;

    font-size: 54px;
    font-weight: 700;
    line-height: 1.08;
}


/* =========================================================
   INTRO
========================================================= */

.physio-job-intro {
    max-width: 950px;
    margin: 0 auto 70px;

    text-align: center;
}

.physio-job-label {
    position: relative;

    display: inline-block;

    margin-bottom: 20px;

    color: var(--physio-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* Vijë gold */

.physio-job-label::before {
    content: "";

    display: block;

    width: 50px;
    height: 3px;

    margin: 0 auto 18px;

    background: var(--physio-gold);

    border-radius: 20px;
}


.physio-job-intro h2 {
    margin: 0 0 28px;

    color: var(--physio-dark);

    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
}

.physio-job-intro h2 span {
    color: var(--physio-gold);
}


.physio-job-intro p {
    max-width: 850px;

    margin: 0 auto 18px;

    color: var(--physio-text);

    font-size: 17px;
    line-height: 1.8;
}


.physio-job-intro .physio-job-lead {
    margin-bottom: 22px;

    color: var(--physio-dark);

    font-size: 19px;
    font-weight: 500;
}


/* =========================================================
   DAS ERWARTET DICH / DAS BRINGST DU MIT
========================================================= */

.physio-job-columns {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    margin-bottom: 80px;
}


.physio-job-box {
    position: relative;

    padding: 42px 40px;

    background: #fff;

    border: 1px solid #eeeae4;
    border-radius: 16px;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.physio-job-box:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.09);
}


/* Numrat 01 / 02 */

.physio-job-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: rgba(152, 123, 62, 0.10);

    color: var(--physio-gold);

    font-size: 14px;
    font-weight: 700;
}


.physio-job-box h2 {
    margin: 0 0 28px;

    color: var(--physio-dark);

    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}


/* Lista */

.physio-job-box ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.physio-job-box li {
    position: relative;

    margin-bottom: 16px;
    padding-left: 30px;

    color: var(--physio-text);

    font-size: 16px;
    line-height: 1.55;
}


/* Check gold */

.physio-job-box li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--physio-gold);

    font-size: 17px;
    font-weight: 700;
}


.physio-job-box li:last-child {
    margin-bottom: 0;
}


/* =========================================
   BENEFITS SECTION
========================================= */

.physio-benefits {
    width: 100%;
    margin: 60px 0;
    padding: 65px 55px 45px;

    background: #f8f6f3;
    border-radius: 22px;

    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.physio-benefits-heading {
    text-align: center;
    margin-bottom: 55px;
}

.physio-benefits-heading span {
    display: block;

    margin-bottom: 14px;

    color: #a7833e;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.physio-benefits-heading h2 {
    margin: 0;

    color: #3f4d52;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   SLIDER
========================================= */

.physio-benefits-slider {
    position: relative;

    width: 100%;

    overflow: hidden;
}


/* TRACK */

.physio-benefits-track {
    display: flex;

    width: 100%;

    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


/* =========================================
   BENEFIT
========================================= */

.physio-benefit {
    flex: 0 0 33.333333%;

    min-width: 0;

    padding: 0 28px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================
   ICON
========================================= */

.physio-benefit-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(152, 123, 62, 0.25);

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}


.physio-benefit-icon i {
    color: #a7833e;

    font-size: 27px;

    transition: color 0.4s ease;
}


/* Hover */

.physio-benefit:hover .physio-benefit-icon {
    transform: translateY(-5px);

    background: #a7833e;
}

.physio-benefit:hover .physio-benefit-icon i {
    color: #ffffff;
}


/* =========================================
   TEXT
========================================= */

.physio-benefit h3 {
    margin: 0 0 10px;

    color: #3f4d52;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;
}


.physio-benefit p {
    max-width: 240px;

    margin: 0 auto;

    color: #6b7376;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================
   DOTS
========================================= */

.physio-benefits-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 40px;
}


.physio-benefits-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #d5d0c8;

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        border-radius 0.35s ease;
}


.physio-benefits-dot.active {
    width: 24px;

    border-radius: 10px;

    background: #987b3e;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .physio-benefits {
        padding: 55px 35px 40px;
    }

    .physio-benefits-heading {
        margin-bottom: 45px;
    }

    .physio-benefits-heading h2 {
        font-size: 31px;
    }

    .physio-benefit {
        flex: 0 0 50%;

        padding: 0 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .physio-benefits {
        margin: 40px 0;

        padding: 45px 20px 30px;

        border-radius: 18px;
    }


    /* Heading */

    .physio-benefits-heading {
        margin-bottom: 38px;
    }

    .physio-benefits-heading span {
        margin-bottom: 10px;

        font-size: 10px;

        letter-spacing: 2px;
    }

    .physio-benefits-heading h2 {
        font-size: 27px;

        line-height: 1.25;
    }


    /* 1 benefit */

    .physio-benefit {
        flex: 0 0 100%;

        padding: 0 15px;
    }


    /* Icon */

    .physio-benefit-icon {
        width: 68px;
        height: 68px;

        margin-bottom: 20px;
    }

    .physio-benefit-icon i {
        font-size: 25px;
    }


    /* Text */

    .physio-benefit h3 {
        font-size: 18px;
    }

    .physio-benefit p {
        max-width: 280px;

        font-size: 14px;
    }


    /* Dots */

    .physio-benefits-dots {
        margin-top: 32px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .physio-benefits {
        padding:
            40px 15px
            28px;
    }

    .physio-benefits-heading h2 {
        font-size: 24px;
    }

}


/* =========================================================
   CTA / PASST DAS ZU DIR?
========================================================= */

.physio-job-cta {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding: 65px 70px;

    overflow: hidden;

    background: var(--physio-dark);

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.12);
}


/* Dekorim */

.physio-job-cta::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -140px;
    right: -90px;

    border-radius: 50%;

    background: rgba(152, 123, 62, 0.15);
}


.physio-job-cta > span {
    position: relative;

    display: block;

    margin-bottom: 15px;

    color: #d8bd82;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.physio-job-cta h2 {
    position: relative;

    margin: 0 0 25px;

    color: #fff;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}


.physio-job-cta p {
    position: relative;

    max-width: 750px;

    margin: 0 auto 15px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   JETZT BEWERBEN BUTTON
========================================================= */

.physio-apply-button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 25px;

    padding: 15px 26px;

    border: 0;
    border-radius: 6px;

    background: var(--physio-gold);

    color: #fff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.physio-apply-button i {
    transition: transform 0.3s ease;
}


.physio-apply-button:hover {
    background: #80662f;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.20);
}


.physio-apply-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .physio-job-detail {
        padding-bottom: 60px;
    }


    .physio-job-hero {
        height: 420px;
        margin-bottom: 60px;
    }


    .physio-job-hero-overlay {
        left: 40px;
        bottom: 40px;
    }


    .physio-job-hero-overlay h1 {
        font-size: 44px;
    }


    .physio-job-intro {
        margin-bottom: 55px;
    }


    .physio-job-intro h2 {
        font-size: 36px;
    }


    .physio-job-columns {
        gap: 22px;
        margin-bottom: 60px;
    }


    .physio-job-box {
        padding: 35px 30px;
    }


    .physio-benefits {
        padding: 55px 30px;
    }


    .physio-benefits-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .content.container.py-5 {
        padding-top: 20px !important;
    }


    .physio-job-detail {
        padding: 0 0 45px;
    }


    /* HERO */

    .physio-job-hero {
        height: 350px;

        margin-bottom: 45px;

        border-radius: 12px;
    }


    .physio-job-hero-overlay {
        left: 22px;
        right: 22px;
        bottom: 28px;
    }


    .physio-job-hero-overlay span {
        margin-bottom: 9px;

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .physio-job-hero-overlay h1 {
        font-size: 34px;
        line-height: 1.1;
    }


    /* INTRO */

    .physio-job-intro {
        margin-bottom: 45px;

        text-align: left;
    }


    .physio-job-label {
        margin-bottom: 15px;

        font-size: 10px;
    }


    .physio-job-label::before {
        width: 40px;

        margin: 0 0 14px;
    }


    .physio-job-intro h2 {
        margin-bottom: 22px;

        font-size: 29px;
        line-height: 1.2;
    }


    .physio-job-intro p {
        margin-bottom: 15px;

        font-size: 15px;
        line-height: 1.7;
    }


    .physio-job-intro .physio-job-lead {
        font-size: 17px;
    }


    /* BOXES */

    .physio-job-columns {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;
    }


    .physio-job-box {
        padding: 28px 23px;

        border-radius: 12px;
    }


    .physio-job-number {
        width: 42px;
        height: 42px;

        margin-bottom: 20px;
    }


    .physio-job-box h2 {
        margin-bottom: 22px;

        font-size: 24px;
    }


    .physio-job-box li {
        margin-bottom: 14px;

        padding-left: 27px;

        font-size: 15px;
    }


    /* BENEFITS */

    .physio-benefits {
        margin-bottom: 50px;

        padding: 42px 20px;

        border-radius: 14px;
    }


    .physio-benefits-heading {
        margin-bottom: 32px;
    }


    .physio-benefits-heading h2 {
        font-size: 28px;
        line-height: 1.2;
    }


    .physio-benefits-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 12px;
    }


    .physio-benefit {
        padding: 5px;
    }


    .physio-benefit i {
        width: 58px;
        height: 58px;

        margin-bottom: 14px;

        font-size: 23px;
    }


    .physio-benefit h3 {
        font-size: 15px;
    }


    .physio-benefit p {
        font-size: 12.5px;
    }


    /* CTA */

    .physio-job-cta {
        padding: 45px 22px;

        border-radius: 14px;
    }


    .physio-job-cta h2 {
        font-size: 29px;
    }


    .physio-job-cta p {
        font-size: 14.5px;
    }


    .physio-apply-button {
        width: 100%;

        margin-top: 22px;

        padding: 15px 20px;
    }

}


/* =========================================================
   MOBILE SHUMË I VOGËL
========================================================= */

@media (max-width: 400px) {

    .physio-job-hero {
        height: 310px;
    }


    .physio-job-hero-overlay h1 {
        font-size: 30px;
    }


    .physio-job-intro h2 {
        font-size: 26px;
    }


    .physio-benefits-grid {
        grid-template-columns: 1fr;
    }


    .physio-benefit {
        max-width: 280px;

        margin: 0 auto;
    }

}

/* =========================================
   FIX BENEFIT ICONS
========================================= */

.physio-benefit-icon {
    position: relative;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 72px;
    height: 72px;

    margin: 0 auto 22px;

    padding: 0 !important;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(152, 123, 62, 0.25);

    box-sizing: border-box;

    overflow: hidden;
}

.physio-benefit-icon i {
    position: static !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    color: #a7833e;

    font-size: 27px !important;
    line-height: 1 !important;
}


/* CHF */

.physio-benefit-chf span {
    position: static !important;

    display: block;

    margin: 0 !important;
    padding: 0 !important;

    color: #a7833e;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .physio-benefit-icon {
        width: 68px;
        height: 68px;

        margin: 0 auto 20px;

        padding: 0 !important;
    }

    .physio-benefit-icon i {
        position: static !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;

        font-size: 25px !important;
        line-height: 1 !important;

        transform: none !important;
    }

    .physio-benefit-chf span {
        font-size: 17px;
        line-height: 1;
    }
}

/* =========================================
   FIX - SLIDER MOS TË DALË JASHTË SECTION
========================================= */

.physio-benefits {
    position: relative;
    width: 100%;
    overflow: hidden !important;
}


/* Zona ku shfaqen kartat */
.physio-benefits-slider {
    position: relative;
    width: 100%;
    overflow: hidden !important;
}


/* Track që lëviz */
.physio-benefits-track {
    display: flex;
    width: 100%;
    align-items: stretch;

    transition: transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


/* Kartat */
.physio-benefit {
    position: relative;

    flex-shrink: 0;

    box-sizing: border-box;

    transform: none !important;
}


/* MOS lëviz kartën në hover */
.physio-benefit:hover {
    transform: none !important;
}


/* =========================================
   IKONAT
========================================= */

.physio-benefit-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 72px;
    height: 72px;

    margin: 0 auto 22px;

    padding: 0 !important;

    border-radius: 50%;

    background: #fff;

    transform: none !important;
}


/* Ikona gjithmonë në qendër */
.physio-benefit-icon i {
    position: static !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;

    transform: none !important;
}


/* Hover - ndryshon vetëm ngjyra */
.physio-benefit:hover .physio-benefit-icon {
    transform: none !important;
    background: #a7833e;
}

.physio-benefit:hover .physio-benefit-icon i {
    transform: none !important;
    color: #fff;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .physio-benefits-slider {
        width: 100%;
        overflow: hidden !important;
    }

    .physio-benefits-track {
        width: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .physio-benefits {
        overflow: hidden !important;
    }

    .physio-benefits-slider {
        overflow: hidden !important;
    }

    .physio-benefit,
    .physio-benefit:hover {
        transform: none !important;
    }

    .physio-benefit-icon,
    .physio-benefit:hover .physio-benefit-icon {
        transform: none !important;
    }

}

/* =========================================================
   PHYSIO BENEFITS – IMAGE SLIDER
========================================================= */


/* =========================================
   SECTION
========================================= */

.physio-benefits {
    position: relative;

    width: 100%;

    margin: 60px 0;
    padding: 65px 55px 45px;

    background: #f8f6f3;

    border-radius: 22px;

    overflow: hidden !important;

    box-sizing: border-box;
}


/* =========================================
   HEADING
========================================= */

.physio-benefits-heading {
    position: relative;

    width: 100%;

    margin: 0 0 55px;

    text-align: center;

    transform: none !important;
}

.physio-benefits-heading span {
    display: block;

    margin: 0 0 14px;

    color: #a7833e;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.physio-benefits-heading h2 {
    margin: 0;

    color: #3f4d52;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;

    transform: none !important;
}


/* =========================================
   SLIDER VIEWPORT
========================================= */

.physio-benefits-slider {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden !important;

    box-sizing: border-box;
}


/* =========================================
   SLIDER TRACK
   VETËM KY ELEMENT DUHET TË LËVIZË
========================================= */

.physio-benefits-track {
    position: relative;

    display: flex;

    width: 100%;

    margin: 0;
    padding: 0;

    align-items: stretch;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;

    box-sizing: border-box;
}


/* =========================================
   BENEFIT ITEM
========================================= */

.physio-benefit {
    position: relative;

    flex: 0 0 33.333333%;

    min-width: 0;

    margin: 0;
    padding: 0 28px;

    text-align: center;

    box-sizing: border-box;

    transform: none !important;
}

.physio-benefit:hover {
    transform: none !important;
}


/* =========================================
   BENEFIT IMAGE WRAPPER
========================================= */

.physio-benefit-icon {
    position: relative;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 115px;
    height: 115px;

    margin: 0 auto 24px;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none !important;

    box-shadow: none !important;

    overflow: visible;

    box-sizing: border-box;

    transform: none !important;
}


/* =========================================
   BENEFIT IMAGE
========================================= */

.physio-benefit-icon img {
    position: static !important;

    display: block !important;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
    object-position: center;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none !important;

    box-shadow: none !important;

    opacity: 1;

    transform: scale(1);

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.physio-benefit:hover .physio-benefit-icon {
    background: transparent !important;

    border: 0 !important;

    box-shadow: none !important;

    transform: none !important;
}

.physio-benefit:hover .physio-benefit-icon img {
    transform: scale(1.06);
}


/* =========================================
   BENEFIT TITLE
========================================= */

.physio-benefit h3 {
    margin: 0 0 10px;

    color: #3f4d52;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   BENEFIT TEXT
========================================= */

.physio-benefit p {
    max-width: 250px;

    margin: 0 auto;

    color: #6b7376;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================
   DOTS WRAPPER
========================================= */

.physio-benefits-dots {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    margin: 40px 0 0;
    padding: 0;

    transform: none !important;
}


/* =========================================
   DOT
========================================= */

.physio-benefits-dot {
    display: block;

    width: 7px;
    height: 7px;

    min-width: 7px;

    margin: 0;
    padding: 0;

    background: #d5d0c8;

    border: 0;
    border-radius: 50%;

    outline: none;

    cursor: pointer;

    box-shadow: none;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        border-radius 0.35s ease;
}


/* ACTIVE DOT */

.physio-benefits-dot.active {
    width: 24px;

    background: #987b3e;

    border-radius: 10px;
}


/* DOT HOVER */

.physio-benefits-dot:hover {
    background: #b7aa91;
}

.physio-benefits-dot.active:hover {
    background: #987b3e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .physio-benefits {
        margin: 50px 0;

        padding: 55px 35px 40px;

        border-radius: 20px;
    }


    /* HEADING */

    .physio-benefits-heading {
        margin-bottom: 45px;
    }

    .physio-benefits-heading span {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 2.5px;
    }

    .physio-benefits-heading h2 {
        font-size: 31px;
    }


    /* 2 BENEFITS */

    .physio-benefit {
        flex: 0 0 50%;

        padding: 0 22px;
    }


    /* IMAGE */

    .physio-benefit-icon {
        width: 108px;
        height: 108px;

        margin: 0 auto 22px;
    }


    /* TEXT */

    .physio-benefit h3 {
        font-size: 18px;
    }

    .physio-benefit p {
        max-width: 260px;

        font-size: 14px;
    }


    /* DOTS */

    .physio-benefits-dots {
        margin-top: 36px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .physio-benefits {
        width: 100%;

        margin: 40px 0;

        padding: 45px 20px 30px;

        border-radius: 18px;

        overflow: hidden !important;
    }


    /* =========================================
       HEADING
    ========================================= */

    .physio-benefits-heading {
        width: 100%;

        margin: 0 0 38px;

        padding: 0;

        text-align: center;

        transform: none !important;
    }

    .physio-benefits-heading span {
        display: block;

        margin: 0 0 10px;

        font-size: 10px;
        line-height: 1.4;

        letter-spacing: 2px;

        transform: none !important;
    }

    .physio-benefits-heading h2 {
        margin: 0;

        font-size: 27px;
        line-height: 1.25;

        transform: none !important;
    }


    /* =========================================
       SLIDER
    ========================================= */

    .physio-benefits-slider {
        width: 100%;

        margin: 0;
        padding: 0;

        overflow: hidden !important;
    }

    .physio-benefits-track {
        display: flex;

        width: 100%;

        margin: 0;
        padding: 0;

        align-items: stretch;
    }


    /* =========================================
       1 BENEFIT
    ========================================= */

    .physio-benefit {
        flex: 0 0 100%;

        width: 100%;
        min-width: 100%;
        max-width: none;

        margin: 0;

        padding: 0 15px;

        box-sizing: border-box;

        transform: none !important;
    }

    .physio-benefit:hover {
        transform: none !important;
    }


    /* =========================================
       IMAGE
    ========================================= */

    .physio-benefit-icon {
        position: relative;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 105px;
        height: 105px;

        margin: 0 auto 21px;

        padding: 0 !important;

        background: transparent !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: visible;

        transform: none !important;
    }

    .physio-benefit-icon img {
        position: static !important;

        display: block !important;

        width: 100%;
        height: 100%;

        max-width: 100%;
        max-height: 100%;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain;
        object-position: center;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        transform: none !important;
    }


    /* MOBILE - PA HOVER */

    .physio-benefit:hover .physio-benefit-icon {
        background: transparent !important;

        border: 0 !important;

        box-shadow: none !important;

        transform: none !important;
    }

    .physio-benefit:hover .physio-benefit-icon img {
        transform: none !important;
    }


    /* =========================================
       TEXT
    ========================================= */

    .physio-benefit h3 {
        margin: 0 0 9px;

        font-size: 18px;
        line-height: 1.3;
    }

    .physio-benefit p {
        max-width: 280px;

        margin: 0 auto;

        font-size: 14px;
        line-height: 1.55;
    }


    /* =========================================
       DOTS
    ========================================= */

    .physio-benefits-dots {
        gap: 7px;

        margin-top: 32px;

        transform: none !important;
    }

    .physio-benefits-dot {
        width: 7px;
        height: 7px;

        min-width: 7px;
    }

    .physio-benefits-dot.active {
        width: 23px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .physio-benefits {
        margin: 35px 0;

        padding: 40px 15px 28px;

        border-radius: 16px;
    }


    /* HEADING */

    .physio-benefits-heading {
        margin-bottom: 34px;
    }

    .physio-benefits-heading span {
        font-size: 9px;

        letter-spacing: 1.7px;
    }

    .physio-benefits-heading h2 {
        font-size: 24px;
    }


    /* BENEFIT */

    .physio-benefit {
        flex: 0 0 100%;

        width: 100%;
        min-width: 100%;
        max-width: none;

        margin: 0;

        padding: 0 10px;
    }


    /* IMAGE */

    .physio-benefit-icon {
        width: 95px;
        height: 95px;

        margin: 0 auto 19px;
    }


    /* TEXT */

    .physio-benefit h3 {
        font-size: 17px;
    }

    .physio-benefit p {
        max-width: 260px;

        font-size: 13.5px;
    }


    /* DOTS */

    .physio-benefits-dots {
        margin-top: 29px;
    }
}