.service-transfer-request-container {
    padding-inline: clamp(16px, 5.25vw, 100px);
    margin-top: 125px;
    margin-bottom: 100px;
}

/* breadcrumb */
html[dir="rtl"] .breadcrumb {
    --bs-breadcrumb-divider: url("../assets/images/icons/brown_arrow-outlined.svg");
}

.breadcrumb {
    display: flex;
    justify-content: flex-end;
    animation: breadcrumbFade 0.8s ease forwards;
}

@keyframes breadcrumbFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-item+.breadcrumb-item {
    padding-inline: 0;
}

.hero-breadcrumb .breadcrumb-item img {
    transform: translateY(-5px);
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb .breadcrumb-item,
.hero-breadcrumb .breadcrumb-item a {
    color: var(--Foundation-brown-light);
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-16);
    transition: all 0.3s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    transform: translateY(-2px);
}

.hero-breadcrumb .breadcrumb-item.active {
    font-weight: 400;
}

.hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    float: none;
    padding-inline: 12px;
    color: var(--Foundation-brown-light);
}

.hero-breadcrumb img {
    transition: transform 0.3s ease;
}

.hero-breadcrumb a:hover img {
    transform: translateY(-5px) scale(1.1);
}

@media (max-width: 992px) {
    .service-transfer-request-container {
        margin-top: 25px;
    }
}

/* breadcrumb */

.filter-box {
    background: #fff;
    position: sticky;
    top: 100px;
    padding: 24px 16px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.filter-header {
    margin-bottom: 32px;
}

.filter-title {
    font-weight: 700;
    color: var(--green-dark);
    font-size: var(--fs-24);
}

.reset-filter {
    all: unset;
    font-size: var(--fs-18);
    color: var(--green);
    font-weight: 500;
    position: relative;
    transition: color .3s ease;
    padding: 4px 8px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: color .3s ease;
}

.reset-filter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    z-index: -1;
}

.reset-filter:hover {
    color: #fff;
}

.reset-filter:hover::before {
    transform: scaleX(1);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: none;
    background: transparent;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #d1d1d1;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.accordion-button {
    background: transparent;
    font-weight: 500;
    box-shadow: none;
    font-size: var(--fs-20);
}

.accordion-button:not(.collapsed) {
    color: var(--green-dark);
    background: transparent;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-button::after {
    margin-inline-start: 16px !important;
    margin-inline-end: 0 !important;
    flex-shrink: 0;
}

.form-check {
    margin-bottom: 12px;
    color: #8F8F8F;
    font-size: var(--fs-16);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
}

.form-check:last-child {
    margin-bottom: 0;
}

.form-check-input {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
    flex: 0 0 20px;
    margin: 0 !important;
    float: none;
}

html[dir="rtl"] .form-check {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.form-check-label {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.5;
    word-break: break-word;
    margin: 0;
    cursor: pointer;
}

html[dir="rtl"] .form-check-label {
    text-align: right;
}

.form-check-input:checked {
    background: #0E9346;
    border-color: #0E9346;
}

.religion-btn {
    border-radius: 999px;
    border: 2px solid #c8dfd4;
    background: #fff;
    padding: 10px 20px;
    font-size: var(--fs-16);
    font-weight: 600;
    color: #4a5c56;
    line-height: 1.3;
    box-shadow: 0 1px 4px rgba(19, 78, 74, 0.07);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.religion-btn:hover {
    border-color: #7ec4a2;
    color: #145E4E;
    box-shadow: 0 2px 10px rgba(19, 78, 74, 0.1);
}

.btn-check:checked + .religion-btn {
    background: linear-gradient(180deg, #e8fdf1 0%, #d2f5e4 100%);
    color: #0b5c2e;
    border-color: #0E9346;
    box-shadow: 0 2px 12px rgba(14, 147, 70, 0.2);
}

.age-range {
    padding-inline: 2px;
}

#ageSlider {
    margin: 10px 0 6px;
}

.range-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-size: var(--fs-16);
    font-weight: 700;
    margin-top: 12px;
    color: #145E4E;
}

.range-values__sep {
    flex: 0 0 auto;
    opacity: 0.4;
    font-weight: 600;
    font-size: 0.95em;
}

#ageSlider .noUi-tooltip {
    display: none !important;
}

#ageSlider.noUi-horizontal {
    height: 10px;
}

#ageSlider .noUi-base {
    background: #E8FDF1;
    height: 10px;
    border-radius: 999px;
}

#ageSlider .noUi-connect {
    background: linear-gradient(90deg, #0c7a3d 0%, #0E9346 100%);
    height: 10px;
    border-radius: 999px;
}

#ageSlider .noUi-handle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0E9346;
    top: -6px;
    cursor: grab;
    box-shadow: 0 2px 10px rgba(14, 147, 70, 0.28);
}

#ageSlider .noUi-handle:active {
    cursor: grabbing;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -10px;
    right: auto;
}

.noUi-target {
    border: unset;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.page-title {
    font-size: var(--fs-48);
    font-weight: 700;
    color: var(--green);
    line-height: 1.5;
}

.page-subtitle {
    font-size: var(--fs-16);
    color: var(--green-dark);
}

/* candidate-card */

.candidate-card.simple-card {
    background: linear-gradient(165deg, #eef5f2 0%, var(--foundation-green-light-hover) 55%, #d4e2dd 100%);
    border-radius: 24px;
    padding: 16px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(20, 94, 78, 0.08);
    box-shadow: 0 4px 24px rgba(19, 78, 74, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.candidate-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    min-height: clamp(300px, 42vw, 440px);
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4f7f6 0%, #e8eeeb 100%);
}

.candidate-img .swiper,
.candidate-img .swiper-wrapper,
.candidate-img .swiper-slide {
    width: 100%;
    height: 100%;
}

.candidate-img .image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
}

.candidate-img .swiper-button-next,
.candidate-img .swiper-button-prev {
    color: #fff;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
}

.candidate-img .swiper-button-next:after,
.candidate-img .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 700;
}

.candidate-actions-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 10px 8px;
    margin: 0 0 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 94, 78, 0.1);
    box-shadow: 0 2px 12px rgba(19, 78, 74, 0.06);
}

.candidate-actions-bar .action-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #8A6D43;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(138, 109, 67, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.candidate-actions-bar .action-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.candidate-actions-bar .action-btn:hover {
    transform: scale(1.06);
    background: #7a5f3a;
    box-shadow: 0 6px 18px rgba(138, 109, 67, 0.42);
}

.candidate-actions-bar .action-btn:active {
    transform: scale(0.98);
}

@media (max-width: 576px) {
    .candidate-actions-bar .action-btn {
        width: 46px;
        height: 46px;
    }
}

.candidate-card.simple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(19, 78, 74, 0.12);
    border-color: rgba(20, 94, 78, 0.14);
}

.candidate-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.candidate-id {
    font-size: var(--fs-16);
    color: #777;
    line-height: 1.5;
    padding-top: 6px;
}

.candidate-title .candidate-name {
    margin: 0;
    color: #134E4A;
    font-weight: 800;
    font-size: clamp(18px, 1.05rem + 0.55vw, 22px);
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.candidate-title .candidate-name::after {
    content: "";
    display: block;
    width: 3rem;
    max-width: 55%;
    height: 3px;
    margin: 10px 0 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8A6D43 0%, #c4a574 100%);
}

.candidate-title .candidate-job {
    color: #3d5c55;
    font-size: clamp(15px, 0.9rem + 0.3vw, 17px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.candidate-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 94, 78, 0.12);
    box-shadow: 0 2px 8px rgba(19, 78, 74, 0.06);
}

.detail-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.92;
}

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

.detail-text small {
    color: #5a6d66;
    font-size: var(--fs-12);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.detail-text strong {
    font-size: var(--fs-16);
    font-weight: 700;
    color: #134E4A;
    line-height: 1.35;
}

.candidate-btn {
    width: 100%;
    min-height: 40px;
    border-radius: 333px;
    border: none;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--fs-14);
    font-weight: 500;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    animation: btnFadeUp .6s ease .3s both;
}

.candidate-btn[disabled] {
    background: #c7c7c7;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.candidate-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
}

.candidate-btn[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.candidate-btn img {
    object-fit: contain;
    transition: transform .3s ease;
}

html[dir="ltr"] .candidate-btn img {
    transform: scaleX(-1);
}

.candidate-btn:hover img {
    transform: translateX(-6px);
}

/* pagination */

.custom-pagination .page-link {
    border: none;
    margin: 0 10px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F1F1F1;
    transition: .3s;
}

.custom-pagination .page-link:hover {
    background: #0E9346;
    color: #fff;
}

.custom-pagination .active .page-link {
    background: #0E9346;
    color: #fff;
}

.custom-pagination .disabled .page-link {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #fff;
}