/* ── Step validation feedback ── */
@keyframes btnShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.btn-shake {
    animation: btnShake 0.4s ease-in-out;
}

.step-required-msg {
    display: none;
    color: #b91c1c;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: #fff1f0;
    border: 1.5px solid #fca5a5;
    border-radius: 10px;
    width: 100%;
}

button.add-worker-btn:focus,
.worker-section input.form-control:focus,
textarea.cleaning-textarea,
.form-check-input:focus,
.form-check-input:checked,
.form-control:focus {
    outline: 0 !important;
    box-shadow: none !important;
    border-color: #04533e !important;
}


.footer,
.footer-copyright {
    position: unset;
}

.page-top-bar {
    background: #E6FFF0;
    /* slightly stronger mint for top bar */
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 107, 91, 0.06);
}

.page-top-bar .top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-top-bar .sep {
    display: inline-block;
    width: 36px;
    height: 3px;
    background: #0b6b5b;
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: middle;
}

.page-top-bar .breadcrumb {
    color: #065f46;
    font-size: 16px;
}

.page-top-bar .breadcrumb a {
    color: #04533E;
    text-decoration: none;
    font-weight: 600;
}

.services-header {
    padding: 56px 0 72px;
    background: #F7FFF9;
    /* lighter mint for page body */
    border-bottom: none;
}

.services-grid-div {
    display: grid;
    grid-template-columns: 1fr 480px;
    /* wider right column to match design */
    align-items: start;
    gap: 40px;
    margin-top: 10px;
    /* max-width: 1200px;
    margin-left: auto;
    margin-right: auto; */
}

/* LEFT */
.services-left {
    max-width: 100%;
    min-width: 0;
}

.services-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: fit-content;
}

.services-label .line {
    width: 24px;
    height: 2px;
    background-color: #0b6b5b;
    transition: width 0.3s ease;
}

.services-label .label-text {
    font-size: 16px;
    /* font-weight: 500; */
    color: #04533E;
    transition: color 0.3s ease;
}

.services-label:hover .line {
    width: 40px;
}

.services-label:hover .label-text {
    color: #084c40;
}

.services-title {
    text-align: left;
}

/* RIGHT */
.services-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #31315B;
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid-div {
        grid-template-columns: 1fr 1fr;
    }

    .services-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid-div {
        display: flex;
        gap: 24px;
        flex-direction: column-reverse;
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .services-title {
        font-size: 30px;
    }

    .services-right p {
        font-size: 14px;
    }
}

.svc-wrapper {
    padding: 50px 0;
    background: #ffffff;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-item {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 32px;
    border: 1.5px solid #04533E;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.svc-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
}

.svc-icon {
    width: 76px;
    height: 76px;
    background: #04533E;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    /* transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1); */
}

.svc-item:hover .svc-icon {
    transform: rotateY(360deg);
}

.svc-icon i {
    color: #fff;
    font-size: 24px;
    z-index: 2;
}

.svc-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: rgba(91, 224, 143, .35);
    opacity: 0;
    transform: scale(.7);
}

.svc-item:hover .svc-icon::after {
    animation: iconGlow 1.4s ease-out infinite;
}

@keyframes iconGlow {
    0% {
        opacity: .6;
        transform: scale(.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.svc-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 30px;
}


.svc-pagination-wrap {
    margin-top: 60px;
}

.svc-pagination .page-item {
    margin: 0 6px;
}

.svc-pagination .page-link {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    color: #111827;
    padding: 8px 14px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}

.svc-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11, 107, 91, .28);
    background: #ecfdf5;
    color: #0b6b5b;
}

.svc-pagination .page-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(91, 224, 143, .45),
            transparent);
    transition: left .45s ease;
}

.svc-pagination .page-item:not(.disabled) .page-link:hover::before {
    left: 100%;
}

.svc-pagination .page-item.active .page-link {
    background: #04533E;
    border-color: #04533E;
    color: #fff;
    box-shadow: 0 6px 20px rgb(11 107 91 / 14%);
}

.svc-pagination .page-item.disabled .page-link {
    opacity: .45;
    pointer-events: none;
}

.svc-item .cta-button {
    border-radius: 10px;
    height: 46px;
    width: 100%;
    background-color: #57E098;
}

.svc-item .cta-button-text {
    color: black;
    transition: 0.5s;
    width: 100%;
    font-size: 15px;
}

.svc-item .cta-button:hover .cta-button-text {
    color: white;
}

.svc-item .cta-button::before {
    border-radius: 10px;
}

@media(max-width:992px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* service confirmation */

.confirmation-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FEFB;
}

.confirmation-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 90px 60px 70px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.08);
}

/* Check image */
.check-img-wrap {
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.confirmation-wrapper h4 {
    font-weight: 600;
    margin-bottom: 60px;
}

.request-no {
    font-size: 16px;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.confirmation-card .description {
    font-size: 16px;
    color: #3A3A3A;
    margin-bottom: 30px;
}

.order-confirmed-button .cta-button {
    border-radius: 10px;
    height: 48px;
    width: 75%;
    padding: 10px 30px;
    margin-right: auto;
    margin-left: auto;
    text-decoration: none;
}

.order-confirmed-button .cta-button-text {
    color: black;
}

.order-confirmed-button .cta-button::before {
    border-radius: 10px;
}

.order-confirmed-button .cta-button:hover .cta-button-text {
    color: white;
}

.order-confirmed-button {
    margin-top: 50px;
}

/* ==================== */


/* service details */

section.service-details-breadcrumbs {
    background: #ECFFF6;
    padding: 20px 0;
    position: sticky;
    top: 0px;
    z-index: 999;
    border-bottom: 1px solid #04533E;
}

.service-detail-top-flex {
    display: flex;
    justify-content: space-between;
}

.service-detail-bottom-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}


.services-detail-header {
    padding: 45px 0 72px;
    background: #F7FFF9;
    border-bottom: none;
}

section.service-details-breadcrumbs span.label-text a {
    color: #04533E;
    text-decoration: none;
}

h1.services-detail-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.services-detail-description {
    font-size: 16px;
    color: #4A5565;
    font-family: Arial;
}

p.radio-ques {
    margin-bottom: 25px;
}

/* Service stepper */
.services-detail-header .service-side-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    /* box-shadow: 0 10px 30px rgba(11, 107, 91, 0.06); */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.11);
    border: 1px solid #00000000;
}

.service-stepper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.services-detail-header .service-side-card .step-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    margin-left: 170px;
}

.service-stepper::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    background: #e6e6e6;
    border-radius: 2px;
}

.service-stepper .step {
    position: relative;
    padding: 18px 18px 18px 0;
    cursor: pointer;
    transition: color .15s ease;
    width: 85%;
}

.service-stepper .step .step-badge {
    position: absolute;
    left: 18px;
    top: 12px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #E9FFF3;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #065f46;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}

.service-stepper .step::after {
    content: "";
    position: absolute;
    left: 42px;
    top: 26px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #57e098;
    transform: translateX(-50%);
}

.service-stepper .step.active .step-badge,
.service-stepper .step.completed .step-badge {
    display: flex;
}

.service-stepper .step h5 {
    margin: 0;
    font-size: 18px;
    /* font-weight: 600; */
    color: black;
    text-align: left;
    width: 100%;
}

.service-stepper .step.disabled h5 {
    color: #9ca3af;
}

.service-stepper .step .bi-pencil-square::before {
    float: right;
}

.service-stepper .step p {
    margin: 2px 0 0;
    color: #4A5565;
    font-size: 14px;
    /* max-width: 300px; */
    text-align: left;
    display: none;
}

.goods-form label {
    font-size: 14px;
    color: #0A0A0A;
}

p.step-summary-text {
    display: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* width: 200px; */
}

p.step-summary-text.is-empty {
    display: none !important;
}

.service-stepper .step.active p.original-desc {
    display: block !important;
}

.service-stepper .step.active p.step-summary-text {
    display: none !important;
}

.service-stepper .step.active.revisited p.original-desc {
    display: none !important;
}

.service-stepper .step.active.revisited p.step-summary-text {
    display: -webkit-box !important;
}

.service-stepper p.original-desc {
    display: none;
}

.service-stepper .step.completed p.original-desc {
    display: none !important;
}

.service-stepper .step.completed p.step-summary-text {
    display: -webkit-box !important;
}

.service-stepper .step.disabled p.step-summary-text {
    display: none;
}

.service-stepper .step.disabled p {
    display: none;
}

.service-stepper .step.disabled {
    color: #9ca3af;
    cursor: default;
    pointer-events: none;
    opacity: 0.95;
}

.service-stepper .step.disabled .step-badge {
    display: none;
    background: #f3f4f6;
    color: #9ca3af;
    box-shadow: none;
}

.service-stepper .step.disabled::after {
    background: #d1d5db;
}

.service-stepper .step.active {
    color: #0b6b5b;
}

.service-stepper .step.active .step-badge {
    background: #57E098;
    color: black;
    box-shadow: 0 6px 18px rgba(87, 224, 152, 0.16);
    border: 5px solid #d5f9e6;
}

.service-stepper .step.completed .step-badge {
    display: none;
}

.service-stepper .step.active::after {
    background: none;
}

.service-stepper .step.completed::after {
    background: #10b981;
}

.services-detail-header .services-right {
    position: sticky;
    top: 150px;
    z-index: 1;
}

@media (max-width: 768px) {

    /* .service-detail-bottom-action {
        justify-content: flex-start;
    } */

    .services-detail-header .service-side-card .service-stepper .step p.original-desc,
    .services-detail-header .service-side-card .service-stepper .step p.step-summary-text {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .services-detail-header .service-side-card .service-stepper {
        --step-line-top: 14px;
        --step-dot-size: 10px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0px;
        overflow: hidden;
        padding-bottom: 4px;
    }

    .services-detail-header .service-side-card .service-stepper::before {
        display: block;
        left: 6px;
        right: 6px;
        top: var(--step-line-top);
        bottom: auto;
        width: auto;
        height: 2px;
    }

    .services-detail-header .service-side-card .service-stepper .step {
        width: auto;
        min-width: 80px;
        padding: 36px 4px 0;
        display: block;
        text-align: center;
    }

    .services-detail-header .service-side-card .service-stepper .step::after {
        left: 50%;
        top: calc(var(--step-line-top) - (var(--step-dot-size) / 2));
        transform: translateX(-50%);
        width: var(--step-dot-size);
        height: var(--step-dot-size);
    }

    .services-detail-header .service-side-card .service-stepper .step .step-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 50%;
        border: 0px solid #d5f9e6;
    }

    .services-detail-header .service-side-card .service-stepper .step-content {
        margin-left: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .services-detail-header .service-side-card .service-stepper .step h5 {
        font-size: 13px;
        line-height: 1.2;
        font-weight: 500;
        text-align: center;
        margin-top: 5px;
    }

    .services-detail-header .service-side-card .service-stepper .step.disabled .step-badge {
        display: none;
    }

    .services-detail-header .services-right {
        position: unset;
    }

    .services-detail-header .service-side-card {
        padding: 15px;
    }
}

/* Title + description tweaks */
.services-title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 8px;
    color: #0f1724;
}

.services-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* radio cards */
.services-detail-header .radio-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    border: none;
    display: flex;
    /* align-items: center; */
    gap: 12px;
    box-shadow: 0 6px 18px rgba(11, 107, 91, 0.04);
    position: relative;
    border: 1px solid #00000012;
}

.radio-card .form-check-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    border-radius: 12px;
    z-index: 2;
}

.radio-card .form-check-label {
    position: relative;
    padding-left: 36px;
    font-size: 15px;
    color: #0A0A0A;
    cursor: pointer;
}

.radio-card .form-check-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e6e6e6;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.radio-card .form-check-input:checked+.form-check-label::before {
    border-color: #57E098;
    box-shadow: 0 0 0 6px rgba(87, 224, 152, 0.06);
}

.radio-card .form-check-input:checked+.form-check-label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #57E098;
}

/* Save button specific */

.save-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.service-detail-bottom-action {
    cursor: default;
}

.save-continue:active {
    transform: translateY(1px);
}

.service-detail-continue-btn .cta-button::before {
    border-radius: 10px;
    background: linear-gradient(90deg, #57E098, #2fd681);
}

.save-continue:hover {
    color: white;
}

.save-continue {
    background: #04533E;
    color: white;
    padding: 9px 28px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 34px rgba(87, 224, 152, 0.14);
    border: none;
    font-size: 15px;
    min-width: 220px;
    width: auto;
    height: 45px;
}

.save-continue .continue-icon {
    display: none;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .save-continue {
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        min-width: auto;
    }

    .save-continue .continue-text {
        display: none;
    }

    .save-continue .continue-icon {
        display: inline-block;
    }
}

@media (max-width: 992px) {
    .services-grid-div {
        grid-template-columns: 1fr;
    }

    .service-side-card {
        padding: 18px;
    }
}

.preference-container .toggle-btn {
    border: 1px solid #00000012;
    background: #fff;
    padding: 10px 20px;
    width: 18%;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 7%) 1.95px 1.95px 2.6px;
}

.preference-container .toggle-btn:focus {
    outline: 0;
    box-shadow: none;
}

.preference-container .toggle-btn {
    position: relative;
    overflow: hidden;
}

/* Animated border */
.preference-container .toggle-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #04533E;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Border slides in */
.preference-container .toggle-btn.active::after {
    transform: scaleX(1);
}

.preference-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}


.change-selection-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #04533e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

/* Pulse ring on hover */
.change-selection-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(40, 167, 69, 0.4);
    opacity: 0;
    transform: scale(1);
    transition: all 0.35s ease;
}

.change-selection-btn:hover::after {
    opacity: 1;
    transform: scale(1.4);
}

.worker-list {
    max-height: 190px;
    overflow-y: auto;
    padding-right: 15px;
}

/* smooth layout */
.worker-input {
    position: relative;
    margin-bottom: 12px;
}

/* remove icon */
.worker-input .remove-worker {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: white;
    background: #8c8c8c;
    line-height: 6px;
    padding: 5px 4px 6px;
    border-radius: 30px;
}

/* hide remove for first input */
.worker-input.fixed .remove-worker {
    display: none;
}

/* --- SCROLLBAR STYLE --- */
.worker-list::-webkit-scrollbar {
    width: 6px;
}

.worker-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.032);
    ;
}

.worker-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.11);
    border-radius: 10px;
}

.worker-list::-webkit-scrollbar-thumb:hover {
    background-color: #a5b5bd;
}

/* prevent page jump */
#workerSection {
    min-height: 320px;
}

.worker-section {
    margin-top: 30px;
}

.preference-container .form-label {
    font-size: 14px;
}

.worker-section input.form-control {
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
}


button.add-worker-btn {
    background: #57E098;
    padding: 11px 25px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: black;
    border: none;
    font-size: 15px;
}



.clean-multi-select {
    position: relative;
    width: 100%;
    margin-top: 5px;
    font-size: 15px;
}

.clean-multi-header {
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.clean-multi-select.active .clean-multi-header {
    border-radius: 10px 10px 0 0;
}

.clean-multi-placeholder {
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clean-multi-arrow {
    transition: transform 0.3s ease;
}

.clean-multi-select.active .clean-multi-arrow {
    transform: rotate(180deg);
}

.clean-multi-select .bi-chevron-down::before {
    font-weight: 600 !important;
}

/* Dropdown */
.clean-multi-dropdown {
    list-style: none;
    margin: 0px 0 0;
    padding: 6px 0;
    border: 1px solid #04533e;
    border-radius: 0px 0px 10px 10px;
    background: #f7fcf9;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 999;
    max-height: 180px;
    overflow-y: auto;
    border-top: none;
}

.clean-multi-dropdown li {
    padding: 10px 16px;
}

.clean-multi-dropdown label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.clean-multi-dropdown li:hover {
    background: #e6f3ed;
}

/* Scrollbar */
.clean-multi-dropdown::-webkit-scrollbar {
    width: 6px;
}

.clean-multi-dropdown::-webkit-scrollbar-thumb {
    background: #9cc5b3;
    border-radius: 10px;
}

.clean-multi-dropdown {
    scrollbar-width: thin;
    scrollbar-color: #00000063 transparent;
}

.enter-vendor-section .form-label {
    font-size: 14px;
}

.enter-vendor-section {
    margin-top: 30px;
}

.preference-container .form-check-input:checked {
    background-color: #04533e;
    border-color: #04533e;
}

/* Cleaning textarea */
.cleaning-textarea {
    border-radius: 12px;
    padding: 14px;
    resize: none;
}

/* Nationality Multi Select */
.nationality-multi-select {
    position: relative;
}

.nationality-header {
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #0000008f;
}

.selected-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.selected-tags .tag {
    background: white;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #00000026;
}

.selected-tags .tag span {
    cursor: pointer;
    font-weight: bold;
    background: #6c757d;
    color: white;
    line-height: 2px;
    padding: 7px 4px 8px;
    border-radius: 50%;
}


.nationality-dropdown {
    list-style: none;
    margin: 0px 0 0;
    padding: 6px 15px;
    border: 1px solid #04533e;
    border-radius: 0px 0px 10px 10px;
    background: #f7fcf9;
    /* position: absolute; */
    width: 100%;
    display: none;
    z-index: 999;
    max-height: 185px;
    overflow-y: auto;
    border-top: none;
}

.nationality-header.active {
    border-radius: 10px 10px 0 0;
}

.nationality-dropdown li {
    padding: 6px 0;
}

.nationality-search-item {
    /* position: sticky;
    top: 0;
    background: #fff; */
    z-index: 1;
    padding: 8px 0;
    /* border-bottom: 1px solid #e5e7eb; */
}

.nationality-no-results {
    padding: 8px 0;
    color: #6b7280;
    font-size: 13px;
}

.nationality-search-input {
    width: 100%;
    padding: 11px 15px;
    border-bottom: 2px solid #cccccc5c !important;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    border: 1px solid #00000024;
    background: white;
}

/* .nationality-search-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.12);
} */

.nationality-dropdown label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.search-box-li {
    padding: 8px;
    /* border-bottom: 1px solid #eee; */
    /* position: sticky; */
    /* top: 0; */
    /* background: #fff; */
    z-index: 2;
}

.goods-search-input {
    width: 100%;
    padding: 11px 15px;
    border-bottom: 2px solid #cccccc5c !important;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    border: 1px solid #00000024;
    background: white;
}

/* .goods-search-input:focus {
    border-color: #04533e;
    border-bottom: 2px solid #04533e !important;

} */

.no-results {
    padding: 8px 10px;
    color: #999;
    font-size: 14px;
    text-align: center;
}

textarea.cleaning-textarea {
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
}

.nationality-dropdown::-webkit-scrollbar {
    width: 6px;
}

.nationality-dropdown::-webkit-scrollbar-thumb {
    background: #9cc5b3;
    border-radius: 10px;
}

.nationality-dropdown {
    scrollbar-width: thin;
    scrollbar-color: #00000063 transparent;
}

.nationality-header .bi-chevron-down::before {
    content: "\f282";
    font-weight: 600 !important;
}

/* Hide all step content divs by default - only show active step */
.cleaning-details-step,
.location-address-step,
.schedule-step,
.summary-step {
    display: none;
}

/* Location Section Styles */
.location-label {
    /* font-weight: 500; */
    color: #333;
    margin-bottom: 12px;
    display: block;
    font-size: 16px;
    margin-top: 25px;
}

.location-list-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    min-height: 120px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #999;
}

.location-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e0e0e075;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    flex-direction: row;
    gap: 12px;
}

.location-item:hover {
    border-color: #04533e;
    background: #f9f9f9;
}

.location-item.active {
    border-color: #04533e;
    background: #F9F9F9;
}

.location-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid #04533e;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-item.active .location-radio {
    border-color: #04533e;
    background: #04533e;
}

.location-radio::after {
    content: '';
    display: none;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.location-item.active .location-radio::after {
    display: block;
}

.location-content {
    flex: 1;
}

.location-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: #fff1f1;
    color: #d63031;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 15px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
    margin-left: auto;
}

.location-delete-btn:hover {
    background: #ffe0e0;
    color: #b52626;
    transform: scale(1.1);
}

.location-delete-btn:active {
    transform: scale(0.95);
}

.location-address {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.location-address strong {
    color: #222;
    font-weight: 600;
}

.location-buttons-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
}

.location-btn {
    padding: 14px 20px;
    border-radius: 8px;
    border: 2px solid #04533e;
    background: #fff;
    color: #04533e;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.location-btn:hover {
    background: #f0fdf7;
}

.add-new-location-btn {
    background: #57E098;
    color: white;
    border-color: #57E098;
}

.add-new-location-btn:hover {
    background: #04533e;
    border-color: #04533e;
}

/* Location Form Section */
/* .location-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
} */

.form-header p {
    margin-bottom: 0px;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 12px;
}

.back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04533e;
    font-size: 20px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #f0fdf7;
    border-radius: 6px;
}

.form-header h5 {
    margin: 0;
    color: #222;
    font-weight: 600;
    font-size: 18px;
}

.map-section {
    margin-bottom: 24px;
}

.map-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e8f4f0 0%, #d4e8e2 100%);
    border-radius: 10px;
    border: 2px solid #04533e;
    margin-bottom: 12px;
    z-index: 1;
    position: relative;
}

.map-container.leaflet-container {
    background: #fff;
    border: none;
    border-radius: 0px;
}

.map-instruction {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Leaflet Map Customizations */
.leaflet-control-zoom {
    border: 1px solid #04533e !important;
    border-radius: 8px !important;
    background: white !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    color: #04533e !important;
    font-weight: bold !important;
    background: white !important;
    border: 1px solid #ddd !important;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
    background: #f0fdf7 !important;
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
}

.leaflet-marker-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.leaflet-popup-content-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip {
    background: white;
}

/* Geosearch Control Styling */
.geosearch-bar {
    background: white !important;
    border: 2px solid #04533e !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    margin: 12px !important;
}

.geosearch input {
    background: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #333 !important;
    font-family: 'Inter', sans-serif !important;
}

.geosearch input::placeholder {
    color: #999 !important;
}

.geosearch input:focus {
    outline: none !important;
    box-shadow: inset 0 0 0 2px #04533e !important;
}

.geosearch .results {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    border-top: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
}

.geosearch .result {
    padding: 12px 16px !important;
    border-bottom: 1px solid #eee !important;
    color: #333 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.geosearch .result:last-child {
    border-bottom: none !important;
}

.geosearch .result:hover {
    background: #f0fdf7 !important;
    color: #04533e !important;
}

.geosearch .result.active {
    background: #e0f5ed !important;
    color: #04533e !important;
    font-weight: 600 !important;
}

/* Search icon styling */
.geosearch-button {
    background: #04533e !important;
    border: none !important;
    color: white !important;
}

.geosearch-button:hover {
    background: #029d5f !important;
}

.section-title {
    color: #222;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    display: block;
}

.location-submit-btn {
    width: 100%;
    padding: 14px;
    background: #57E098;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.location-submit-btn:hover {
    background: #029d5f;
}

.location-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


#locationForm .form-label {
    margin-bottom: .5rem;
    font-size: 15px;
}

/* Input Group Customizations */
.input-group {
    gap: 0;
}

.input-group .form-control,
.input-group .form-select {
    border-color: #ddd;
}

.input-group .input-group-text {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.input-group .form-control:focus,
.input-group .form-select:focus {
    border-color: #04533e;
    box-shadow: 0 0 0 0.2rem rgba(4, 83, 62, 0.15);
}

/* Scrollbar styling for location list */
.location-list-box::-webkit-scrollbar {
    width: 6px;
    border-radius: 30px;
}

.location-list-box::-webkit-scrollbar-track {
    background: #0000000c;
    border-radius: 30px;

}

.location-list-box::-webkit-scrollbar-thumb {
    background: #00000044;
    border-radius: 30px;
}

.location-list-box::-webkit-scrollbar-thumb:hover {
    background: #7ab59f;
}

/* Custom Select Styling - Modern Design */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 14px 18px;
    background-color: #e8f5f0;
    border: 2px solid #04533e;
    border-radius: 16px;
    font-size: 15px;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%2304533e%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3e%3cpolyline points=%226 9 12 15 18 9%22%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

.custom-select:hover {
    border-color: #029d5f;
    background-color: #d4e8e2;
}

.custom-select:focus {
    outline: none;
    border-color: #029d5f;
    box-shadow: 0 0 0 5px rgba(4, 83, 62, 0.15);
    background-color: #fff;
}

.custom-select:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-select option {
    background-color: #fff;
    color: #333;
    padding: 12px;
    margin: 4px 0;
}

.custom-select option:hover {
    background: linear-gradient(#04533e, #04533e);
    background-color: #04533e;
    color: white;
}

.custom-select option:checked {
    background: linear-gradient(#04533e, #04533e);
    background-color: #04533e;
    color: white;
}

/* Custom Select Prefix (Country Code) */
.input-with-prefix {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.custom-select-prefix {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 14px 18px 14px 16px;
    background-color: #e8f5f0;
    border: 2px solid #04533e;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    min-width: 110px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%2304533e%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3e%3cpolyline points=%226 9 12 15 18 9%22%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    font-family: 'Inter', sans-serif;
    padding-right: 45px;
}

.custom-select-prefix:hover {
    border-color: #029d5f;
    background-color: #d4e8e2;
}

.custom-select-prefix:focus {
    outline: none;
    border-color: #029d5f;
    box-shadow: 0 0 0 5px rgba(4, 83, 62, 0.15);
    background-color: #fff;
}

.custom-select-prefix option {
    background-color: #fff;
    color: #333;
    padding: 12px;
}

.custom-select-prefix option:checked {
    background: linear-gradient(#04533e, #04533e);
    background-color: #04533e;
    color: white;
}

.contact-input {
    flex: 1;
}

input.location-radio-input {
    width: 20px;
    height: 20px;
    /* border: 2px solid black !important; */
}

#locationForm .form-control {
    background: #F9F9F9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
}

.form-control:focus {
    border-color: #04533e;
    box-shadow: unset;
    outline: none;
}

.form-control:hover {
    border-color: #04533e;
}

/* Custom Address Multi-Select (Block) */
.address-multi-select {
    position: relative;
    width: 100%;
    font-size: 15px;
}

.address-multi-header {
    background: #F9F9F9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.address-multi-select.active .address-multi-header {
    border-radius: 16px 16px 0 0;
    /* border-bottom: none; */
}

.address-multi-placeholder {
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-multi-arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.address-multi-select.active .address-multi-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.address-multi-dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #04533e;
    border-radius: 0 0 16px 16px;
    background: #f7fcf9;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 999;
    border-top: none;
    min-width: 150px;
    max-height: 200px;
    overflow-y: auto;
}

.address-multi-select.active .address-multi-dropdown {
    display: block;
}

.address-multi-dropdown li {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.address-multi-dropdown li:hover {
    background: #d4e8e2;
}

.address-multi-dropdown input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #04533e;
}

.address-multi-dropdown label {
    margin: 0;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    flex: 1;
}

/* Scrollbar for address dropdown */
.address-multi-dropdown::-webkit-scrollbar {
    width: 6px;
}

.address-multi-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.address-multi-dropdown::-webkit-scrollbar-thumb {
    background: #04533e;
    border-radius: 10px;
}

.address-multi-dropdown::-webkit-scrollbar-thumb:hover {
    background: #029d5f;
}

/* Country Code Dropdown */
.country-code-select {
    position: relative;
}

.tanker-select {
    position: relative;
    width: 100%;
}

.tanker-select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
}

.tanker-select.open .tanker-select-header {
    border-radius: 10px 10px 0 0;
}

.tanker-select-text {
    color: #333;
    font-size: 15px;
    flex: 1;
}

.tanker-select-arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: #04533e;
}

.duration-arrows i {
    color: black;
}

.duration-arrows .bi-chevron-up::before {
    font-weight: 600 !important;
}

.tanker-select.open .tanker-select-arrow {
    transform: rotate(180deg);
}

.tanker-select-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #04533e;
    border-radius: 0 0 10px 10px;
    background: #f7fcf9;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 999;
    border-top: none;
    top: 100%;
    left: 0;
    max-height: 160px;
    overflow-y: auto;
}

.tanker-select.open .tanker-select-menu {
    display: block;
}

.tanker-select-menu li {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    /* text-align: center; */
    font-weight: 500;
    color: #333;
}

.tanker-select-menu li:hover {
    background: #d4e8e2;
    color: #04533e;
}

.tanker-select-menu li.active {
    background: #d4e8e2;
    color: #04533e;
    font-weight: 600;
}

.tanker-select-menu::-webkit-scrollbar {
    width: 6px;
}

.tanker-select-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.tanker-select-menu::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

.tanker-select-menu::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

/* Tanker size list */
.tanker-size-list {
    max-height: 190px;
    overflow-y: hidden;
    padding-right: 6px;
    overflow-x: hidden;
}

.tanker-size-list.is-scrollable {
    overflow-y: auto;
}

.tanker-size-list.is-dropdown-open {
    overflow: visible;
    max-height: none;
}

.tanker-size-row {
    padding-bottom: 12px;
}

.tanker-delete-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tanker-row-delete {
    border: 1px solid #00000021;
    background: transparent;
    color: #111827;
    font-size: 22px;
    line-height: 1;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    margin-top: -50px;
}

.tanker-row-delete:hover {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
}

.tanker-size-row:first-child .tanker-delete-col {
    display: none;
}

.tanker-size-list::-webkit-scrollbar {
    width: 6px;
}

.tanker-size-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.tanker-size-list::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

.tanker-size-list::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

.add-size-btn {
    margin-top: 10px;
    background: #57e098;
    border: 1px solid #57e098;
    color: black;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
    width: 31%;
}

.add-size-btn:hover {
    background: #57e098;
}

/* Quantity input (frequency style) */
.quantity-width {
    width: 100%;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

.country-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
    text-align: center;
    background: #F9F9F9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
}

.country-code-select.active .country-code-header {
    border-radius: 10px 10px 0 0;
    /* border-bottom: none; */
}

.country-code-text {
    color: #333;
    /* font-weight: 600; */
    font-size: 15px;
    flex: 1;
}

.country-code-arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: #04533e;
}

.country-code-select.active .country-code-arrow {
    transform: rotate(180deg);
}

/* Country Code Menu */
.country-code-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #04533e;
    border-radius: 0 0 10px 10px;
    background: #f7fcf9;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 999;
    border-top: none;
    top: 100%;
    left: 0;
    min-width: 90px;
    max-height: 160px;
    overflow-y: auto;
}

.country-code-select.active .country-code-menu {
    display: block;
}

.country-code-menu li {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
    color: #333;
}

.country-code-menu li:hover {
    background: #d4e8e2;
    color: #04533e;
}

.country-code-menu li.active {
    background: #d4e8e2;
    color: #04533e;
    font-weight: 600;
}

/* Scrollbar for country code menu */
.country-code-menu::-webkit-scrollbar {
    width: 6px;
}

.country-code-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.country-code-menu::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

.country-code-menu::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

/* ── Enhanced country code dropdown (all-world + search) ── */
.country-code-dropdown-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #04533e;
    border-top: none;
    border-radius: 0 0 10px 10px;
    z-index: 1050;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

.country-code-select.open .country-code-dropdown-wrap {
    display: block;
}

.country-code-search-box {
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8e5;
}

.country-code-search {
    width: 100%;
    border: 1px solid #c8ddd6;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 13px;
    outline: none;
    background: #f7fcf9;
    color: #333;
}

.country-code-search:focus {
    border-color: #04533e;
    background: #fff;
}

.country-code-menu-full {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 200px;
    overflow-y: auto;
}

.country-code-menu-full li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: background .15s;
}

.country-code-menu-full li:hover {
    background: #f1f9f5;
    color: #04533e;
}

.country-code-menu-full li.active {
    background: #d4e8e2;
    color: #04533e;
    font-weight: 600;
}

.cc-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.cc-flag-display {
    font-size: 18px;
    line-height: 1;
    margin-right: 4px;
}

.cc-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cc-dial {
    font-weight: 600;
    color: #04533e;
    flex-shrink: 0;
}

.country-code-header {
    min-width: 105px;
}


#locationForm .form-check-input:checked {
    background-color: #04533e;
    border-color: #04533e;
}

@media (max-width: 768px) {
    .location-item {
        padding: 12px;
    }

    .location-buttons-section {
        flex-direction: column;
    }

    .location-btn {
        width: 100%;
    }

    .map-container {
        height: 250px;
    }

    .location-form-section {
        padding: 16px;
    }
}

h1.location-address-heading {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Tabs */
.mode-tabs .nav-link {
    border-radius: 8px;
    padding: 10px 38px;
    border: 1.5px solid #e5e7eb;
    color: #111827;
    font-weight: 500;
    background: white;
}

.mode-tabs .nav-link.active {
    border-color: #04533E;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #04533e;
}

.mode-tabs .nav-link:focus,
.mode-tabs .nav-link:hover {
    color: #04533e;
}

/* Inputs */
.custom-input {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    padding: 12px 16px;
}

.icon-input {
    position: relative;
}

.icon-input i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f766e;
    cursor: pointer;
}

.duration-arrows {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: #0f766e;
}

/* Overlay */
.calendar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

/* Calendar */
.calendar {
    background: #fff;
    width: 320px;
    border-radius: 20px;
    padding: 20px;
}

.calendar h6 {
    font-size: 13px;
    color: #6b7280;
}

.calendar .big-date {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #0000001c;
    padding-bottom: 10px;
}

.month-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.month-row button {
    border: none;
    background: none;
    font-size: 18px;
    color: #0f766e;
}

.month-row button:disabled {
    opacity: .3;
}

/* Scoped to custom booking calendar only — do not affect vanillajs .days in datepicker */
.calendar .days,
.calendar .dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-top: 10px;
}

.calendar .days div {
    font-size: 12px;
    color: #6b7280;
}

.calendar .dates .date {
    height: 33px;
    width: 33px;
    line-height: 33px;
    margin: auto;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 7px;
}

.calendar .dates .date:hover:not(.disabled) {
    background: #e6f4f1;
}

.calendar .dates .date.selected {
    background: #0f766e;
    color: #fff;
}

.calendar .dates .date.today {
    border: 1.5px solid #0f766e;
}

.calendar .dates .date.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.calendar-footer button {
    border: none;
    background: none;
    font-weight: 500;
    color: #04533E;
    font-size: 14px;
}

.calendar-footer .ok {
    margin-left: 15px;
}

.time-wrapper {
    position: relative;
    /* width: 360px; */
}

.time-picker-box {
    position: absolute;
    top: 85px;
    left: 0;
    width: 65%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    padding: 25px;
    display: none;
    z-index: 1000;
}

.time-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
}

.arrow-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-col .arrow {
    cursor: pointer;
    color: #04533e;
    font-size: 12px;
    user-select: none;
}

.time-value {
    font-size: 18px;
    font-weight: 500;
    width: 48px;
    text-align: center;
}

.colon {
    font-size: 18px;
    font-weight: 500;
}

.ampm-box {
    display: flex;
    gap: 8px;
    margin-left: 10px;
    flex-direction: column;
}

.ampm-btn {
    background: #e9ecef;
    border: none;
    padding: 6px 6px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
}

.ampm-btn.active {
    background: #04533e;
    color: #fff;
}

.weekly-content .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    border: 1px solid #57e098;
    border-radius: 2px !important;
    width: 17px;
    height: 17px;
}

.schedule-step label,
.instructions-container label {
    font-size: 14px !important;
    color: #0A0A0A;
    font-family: Arial;
    margin-bottom: 10px;
}

.schedule-step .form-control[readonly],
.schedule-step .form-control:disabled {
    background: #F9F9F9;
    color: #717182;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    height: 53px;
    cursor: pointer;
    border: 1px solid #00000014;
}

.duration-width,
.frequency-width {
    width: 50%;
}

.duration-width .bi-chevron-up::before,
.duration-width .bi-chevron-down::before,
.frequency-width .bi-chevron-up::before,
.frequency-width .bi-chevron-down::before,
.icon-input .bi-calendar-event::before,
.icon-input .bi-clock::before {
    font-weight: 800 !important;
    cursor: pointer;
    /* font-size: 14px; */
    color: #04533e;
}

.weekly-select-date-time-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.select-checkbox-flex form {
    display: flex;
    gap: 20px;
}

.select-checkbox-flex form .form-check-input:checked {
    background-color: #04533e;
    border-color: #04533e;
}

.select-checkbox-flex form .form-check-input[type=checkbox] {
    border-radius: 2px;
}

.weekly-table-wrapper {
    margin-top: 15px;
}

.weekly-head-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* font-weight: 600; */
    margin-bottom: 10px;
    padding: 0 5px;
    gap: 15px;
    font-size: 15px;
}

.weekly-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.weekly-col {
    position: relative;
}

/* Make inputs same height */
.custom-day-select .day-selected,
.weekly-row .custom-input {
    height: 53px;
    display: flex;
    align-items: center;
}

/* Custom Day Select */
.custom-day-select {
    position: relative;
}

.day-selected {
    justify-content: space-between;
    background: #F9F9F9;
    color: #717182;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #00000014;
}

.custom-day-select .bi-chevron-down::before {
    content: "\f282";
    font-weight: 800 !important;
    color: #04533e;
}

.day-options {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    display: none;
    position: absolute;
    width: 100%;
    z-index: 10;
    max-height: 130px;
    overflow-y: auto;
}

.day-options::-webkit-scrollbar {
    width: 6px;
}

.day-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.032);
}

.day-options::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.11);
    border-radius: 10px;
}

.day-options::-webkit-scrollbar-thumb:hover {
    background-color: #a5b5bd;
}

.day-options li {
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
}

.day-options li:hover {
    background: #f1f1f1;
}

.day-options li.is-selected {
    background: #e6f7f1;
    color: #04533e;
    font-weight: 600;
}

.day-options li.is-today::after {
    content: "Today";
    font-size: 11px;
    font-weight: 600;
    color: #04533e;
    background: #daf3e6;
    border-radius: 10px;
    padding: 2px 8px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.weekly-col .time-picker-box {
    top: 50px;
    width: 100%;
}

.weekly-col .duration-width {
    width: 100%;
}


.duration-arrows i {
    font-size: 12px;
}

.weekly-rows-container {
    max-height: none;
    overflow-y: visible;
    padding-right: 15px;
    padding-left: 5px;
}

.weekly-rows-container::-webkit-scrollbar {
    width: 6px;
}

.weekly-rows-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.032);
}

.weekly-rows-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.11);
    border-radius: 10px;
}

.weekly-rows-container::-webkit-scrollbar-thumb:hover {
    background-color: #a5b5bd;
}


.detail-card-wrap {
    border-radius: 12px !important;
    border: 1px solid #d8d8d8 !important;
    overflow: hidden;
    background: #ffffff;
}

.detail-card-title {
    background: #e8f5e9;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.detail-item-row {
    padding: 18px 20px;
    border-top: 1px solid #dee2e69c;
}


.detail-item-value {
    color: #212529;
    font-size: 15px;
    /* white-space: pre-line; */
}


.weekly-start-end-date {
    margin-top: 30px;
}

.detail-item-value p {
    margin-bottom: 10px;
}

/* Separate Upload Boxes for Transportation */
.upload-box {
    border: 1.5px dashed #04533e4d;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: #f7fcf9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 120px;
}

.upload-box:hover {
    border-color: #04533e;
    background: #e9fff3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 83, 62, 0.08);
}

.upload-box i {
    font-size: 25px;
    color: #99A1AF;
}

.upload-text {
    text-align: center;
}

.upload-preview-container {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 10px;
}

/* Scrollbar styling for upload preview (matches house cleaning) */
.upload-preview-container::-webkit-scrollbar {
    width: 6px;
    border-radius: 30px;
}

.upload-preview-container::-webkit-scrollbar-track {
    background: #0000000c;
    border-radius: 30px;
}

.upload-preview-container::-webkit-scrollbar-thumb {
    background: #00000044;
    border-radius: 30px;
}

.upload-preview-container::-webkit-scrollbar-thumb:hover {
    background: #04533e;
    /* Using the theme green color */
}

.upload-box p {
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    margin: 0;
}

.upload-box .upload-info {
    font-size: 12px;
    color: #6A7282;
}

#uploadPreview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding: 5px;
}

/* Base Preview Item */
.preview-item {
    position: relative;
    background: #fff;
    border: 1px solid #04533e21;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Image Thumbnail Preview */
.thumbnail-preview {
    width: 80px;
    height: 80px;
}

.thumbnail-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* File/Video Preview Expansion */
.file-preview {
    grid-column: span 2;
    /* Files take more width */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fcf9;
}

.file-icon {
    font-size: 20px;
    color: #04533e;
}

.file-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

.file-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 10px;
    color: #666;
}

/* Remove Icon Overlay - Fixed Positioning */
.remove-upload {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    color: #dc3545;
    background: #fff;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-upload:hover {
    color: #a71d2a;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.goods-form .form-control,
.construction-form .form-control {
    background: #f7fcf9;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
}

.goods-form .form-check-input:checked {
    background-color: #04533e;
    border-color: #04533e;
}

.country-code-select.open .country-code-header {
    border-radius: 10px 10px 0 0;
}

/* Dual Location Selection Buttons */
.delivery-nav-btn {
    background: #04533e;
    color: #fff !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.delivery-nav-btn:hover {
    background: #033d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 83, 62, 0.2);
}

.back-pickup-btn {
    background: #fff;
    color: #333 !important;
    border: 2px solid #ddd;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-pickup-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
}

/* Ensure active state color consistency */
.location-item.active {
    border-color: #04533e !important;
    background-color: #f7fcf9;
}

/* .goods-location-button {
    flex-direction: row;
} */

.goods-location-button .location-btn {
    padding: 11px 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#scheduleOptionsContainer .weekly-row {
    display: unset;
}

.goods-frequency-row {
    margin-bottom: 10px;
}

.request-period-date-input {
    background: #F9F9F9 !important;
    color: #717182 !important;
    font-size: 14px !important;
    border: 1px solid #00000012 !important;
    margin-top: 10px !important;
}

.request-period-step label {
    color: #0A0A0A;
    font-size: 14px;
}

.schedule-type-tabs .toggle-btn {
    border: 1px solid #0000001a;
    background: #fff;
    padding: 10px 20px;
    width: 25%;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 7%) 1.95px 1.95px 2.6px;
}

.schedule-type-tabs .toggle-btn:focus {
    outline: 0;
    box-shadow: none;
}

.schedule-type-tabs .toggle-btn.active {
    border: 2px solid #04533E;
    color: #04533E;
    font-weight: 600;
}

/* Summary Table Styles */
.summary-location-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-location-table thead th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 14px !important;
    border-top: 1px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.summary-location-table tbody td {
    padding: 18px 20px;
    font-size: 15px !important;
    color: #212529;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
}

.summary-location-table tr:last-child td {
    border-bottom: none;
}

/* Machinery hiring summary: date & time table */
.summary-date-time-table-wrapper {
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow-x: auto;
    background: #ffffff;
    width: 800px;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.summary-date-time-table-wrapper::-webkit-scrollbar {
    height: 10px;
}

.summary-date-time-table-wrapper::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 999px;
}

.summary-date-time-table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.summary-date-time-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.summary-date-time-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
}

.summary-date-time-table thead th {
    background: #f8fafc;
    color: #364153;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.summary-date-time-table tbody td {
    font-size: 14px;
    color: #111827;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    white-space: nowrap;
}

.summary-date-time-table th:first-child,
.summary-date-time-table td:first-child {
    white-space: normal;
    min-width: 220px;
}

.summary-date-time-table tbody tr:last-child td {
    border-bottom: none;
}

.summary-date-time-table tbody tr:nth-child(even) {
    background: #fcfdfd;
}

@media (max-width: 767px) {
    .summary-date-time-table {
        min-width: 680px;
    }

    .summary-date-time-table thead th,
    .summary-date-time-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

.summary-view-btn {
    color: #04533E !important;
    font-weight: 500 !important;
    padding: 6px 16px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    border-top: 1px solid #04533E70 !important;
}

.summary-view-cell {
    white-space: normal;
}

.summary-view-btn:hover {
    background-color: #57E098 !important;
    color: #fff !important;
}

.detail-item-label {
    color: #364153;
    font-size: 14px;
}

.summary-location-label {
    color: #364153 !important;
    font-size: 14px !important;
    font-weight: 500;
}

.detail-item-value#summaryAddress {
    white-space: normal;
    word-break: break-word;
}

/* .row.detail-item-row:has(.summary-location-label) {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
} */

div#summaryDeliveryContact,
div#summaryPickupContact {
    display: flex;
    justify-content: flex-end;
}


.nationality-dropdown .form-check .form-check-input {
    width: 15px;
    height: 15px;
}

/* plumbing */

/* Tabs */
.select-service-category .nav-tabs {
    border-bottom: none;
    width: 100%;
    gap: 20px;
}

.select-service-category .nav-tabs .nav-item {
    flex: 1 1 45%;
}

.select-service-category .nav-tabs .nav-item button img {
    margin-right: 10px;
}

.select-service-category .nav-tabs .nav-link img {
    filter: grayscale(1) brightness(0.75);
    transition: filter 0.2s ease;
}

.select-service-category .nav-tabs .nav-link.active img {
    filter: none;
}

.select-service-category .nav-tabs .nav-link {
    border-radius: 10px;
    border: 1px solid #d0d7d4;
    margin-right: 10px;
    color: #9A9898;
    font-weight: 500;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    /* border: 0.5px solid #04533E; */
    border: 0.5px solid #04533E66;
    font-size: 15px;
}

.select-service-category .nav-tabs .nav-link.active {
    background: #E4FAEF;
    border: 0.5px solid #04533E;
    color: #000000;
}

label.req-item input {
    width: 18px;
    height: 18px;
    border: 1px solid #04533E;
    background: #F8FEFB;
    margin-top: 0px;
}

/* Requirements box */
.select-service-category .requirements-box {
    border-radius: 12px;
    padding: 20px;
    background: #57E09814;
}

/* Checkbox items */
.select-service-category .req-item {
    /* border: 1px solid #d0d7d4; */
    border-radius: 10px;
    padding: 18px 14px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F8FEFB;
    box-shadow: 0px 0px 4px 0px #00000017;
    font-size: 15px;
    cursor: pointer;
}

.select-service-category .req-item .form-check-input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* Checkbox color */
.select-service-category .form-check-input:checked {
    background-color: #1b4332;
    border-color: #1b4332;
}



.select-service-category .custom-radio .form-check-input {
    width: 18px;
    height: 18px;
    border: 3px solid #9A9898;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: #fff;
}

.select-service-category .custom-radio .form-check-input::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #9A9898;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.select-service-category .custom-radio .form-check-input:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #1b4332;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.select-service-category .custom-radio .form-check-label {
    margin-left: 5px;
    font-size: 16px;
    cursor: pointer;
}

.select-service-category .custom-radio .form-check-input:checked {
    background-color: white;
}

.select-service-category .form-check-inline {
    margin-right: 35px;
}

.weekly-content .form-check-input:checked {
    background-color: #04533e;
    border-color: #04533e;
}

/* Label */
.ui-label-text {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Main container */
.ui-expand-select {
    border: 1px solid #04533e;
    border-radius: 12px;
    background: #fff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Options */
.ui-expand-option {

    padding: 16px;
    padding-right: 45px;
    display: flex;
    align-items: center;
}

.water-tanker-select-section .bi-chevron-down::before {
    font-weight: 600 !important;
}

/* Show only active when closed */
.ui-expand-select:not(.ui-open) .ui-expand-option:not(.ui-active) {
    display: none;
}

/* Divider */
.ui-expand-select.ui-open .ui-expand-option {
    border-top: 1px solid #d6e2dc;
}

.ui-expand-select.ui-open .ui-expand-option:first-child {
    border-top: none;
}

/* Active style */
.ui-active {
    color: #04533e;
    font-weight: 500;
}

/* Option images: black when inactive */
.ui-expand-option img {
    filter: grayscale(1) brightness(0);
}

.ui-expand-option.ui-active img {
    filter: none;
}

/* Chevron */
.ui-chevron-icon {

    position: absolute;
    right: 15px;
    top: 18px;
    transition: .3s;
}

.ui-expand-select.ui-open .ui-chevron-icon {
    transform: rotate(180deg);
}

/* Water type dropdown scroll */
#uiWaterSelect.ui-open {
    max-height: 220px;
    overflow-y: auto;
}

#uiWaterSelect.ui-open::-webkit-scrollbar {
    width: 6px;
}

#uiWaterSelect.ui-open::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

#uiWaterSelect.ui-open::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

#uiWaterSelect.ui-open::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

/* Hidden section */
.ui-hidden {
    display: none;
}

/* Inputs */
.ui-input-field {
    border: 1px solid #cfd8d3;
    border-radius: 10px;
    padding: 12px;
    width: 100%;
}

.ui-expand-option img {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.conditional-section .support-doc-card {
    border: 1px solid #04533e;
    border-radius: 10px;
    background: #f7fcf9;
    margin-bottom: 20px;
}

.conditional-section .support-doc-radio-card {
    background: unset;
    border-radius: unset;
    padding: 8px 0px;
    border: none;
    box-shadow: unset;
    position: relative;
    border: unset;
}

.support-doc-radio-card .form-check-input:checked+.form-check-label::before {
    border-color: #04533e;
    box-shadow: 0 0 0 6px rgba(87, 224, 152, 0.06);
}

.support-doc-radio-card .form-check-input:checked+.form-check-label::after {
    background: #04533e;
}

.support-doc-margin {
    margin-bottom: 10px;
}

.conditional-section .support-doc-radio-card .form-check-label {
    padding-left: 30px;
    font-size: 14px;
}

.support-file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 16px;
    margin-top: 20px;
    padding: 5px;
}

.site-visit-row .time-picker-box {
    top: 50px;
    width: 100%;
}

.available-dates h5 {
    font-size: 19px !important;
}

.site-visit-container {
    border: 0.8px solid #0000001A;
    background: #57E09808;
    border-radius: 10px;
    padding: 30px 25px;
}

.site-visit-container .btn-outline-more-options {
    background: #57E098;
    color: black;
    font-weight: 500;
    padding: 12px 35px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: none;
}

.site-visit-container .btn-outline-more-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #04533E;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.site-visit-container .btn-outline-more-options:hover::before {
    left: 0;
}

.site-visit-container .btn-outline-more-options:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Machinery hiring - custom step 1 multiselect */
.job-details-step {
    display: none;
}

.machinery-select {
    position: relative;
}

.machinery-select-header {
    background: #fff;
    border: 1px solid #04533e;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.machinery-select-header.active {
    border-radius: 10px 10px 0 0;
    /* background: #CEFFE5; */
}

.machinery-select-dropdown {
    display: block;
    max-height: 570px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0000002f rgba(0, 0, 0, 0.05);
    list-style: none;
    margin: 0;
    padding: 15px;
    border: 1px solid #04533e;
    border-radius: 0 0 10px 10px;
    background: #f7fcf9;
    width: 100%;
    border-top: none;
    z-index: 999;
}

.machinery-dropdown::-webkit-scrollbar {
    width: 6px;
}

.machinery-dropdown::-webkit-scrollbar-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
    height: 0;
    width: 0;
    background: transparent;
    border: 0;
}

.machinery-dropdown::-webkit-scrollbar-button:single-button {
    height: 0;
    width: 0;
}

.machinery-dropdown::-webkit-scrollbar-button:vertical:decrement,
.machinery-dropdown::-webkit-scrollbar-button:vertical:increment {
    height: 0;
}

.machinery-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.machinery-dropdown::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

.machinery-dropdown::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

.machinery-selected-line .tag {
    white-space: nowrap;
}

.machinery-selected-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.machinery-selected-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.machinery-selected-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.machinery-selected-wrap .tag {
    background: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #00000026;
}

.machinery-selected-wrap .tag .machinery-category-remove {
    cursor: pointer;
    font-weight: bold;
    background: #6c757d;
    color: #fff;
    line-height: 2px;
    padding: 7px 4px 8px;
    border-radius: 50%;
}

.machinery-open-only-tag {
    border-style: dashed !important;
    border-color: #04533e66 !important;
}

.machinery-inline-search {
    flex: 1;
    min-width: 180px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111827;
    padding: 2px 0;
}

.machinery-inline-search::placeholder {
    color: #6b7280;
}

.machinery-category-group {
    border: 1px solid #dbe7e0;
    overflow: hidden;
    border-bottom: none;
}

.machinery-category-group:last-child {
    border-bottom: 1px solid #dbe7e0;
}

.machinery-category-header {
    width: 100%;
    border: none;
    background: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #101828;
    font-weight: 500;
    font-size: 16px;
    padding: 17px 20px;
}

.machinery-select-dropdown .bi-chevron-down::before {
    font-weight: 600 !important;
}

.machinery-category-header .bi {
    transition: transform 0.2s ease;
}

.machinery-category-group.open .machinery-category-header .bi {
    transform: rotate(180deg);
}

.machinery-category-group.open .machinery-category-header {
    background: #CEFFE5;
}

.machinery-sub-list {
    display: none;
    padding: 7px 20px;
    background: #fff;
}

.machinery-category-group.open .machinery-sub-list {
    display: block;
}

.machinery-sub-list::-webkit-scrollbar {
    width: 6px;
}

.machinery-sub-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.machinery-sub-list::-webkit-scrollbar-thumb {
    background: #0000002f;
    border-radius: 10px;
}

.machinery-sub-list::-webkit-scrollbar-thumb:hover {
    background: #0000001a;
}

.machinery-sub-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #e5eee9;
    padding: 10px 0;
    align-items: center;
}


.machinery-sub-list .machinery-add-btn:hover {
    background: #04533e !important;
    color: white !important;
}

.machinery-sub-list .machinery-add-btn:focus {
    box-shadow: none;
    outline: 0;
}

.machinery-sub-item:last-child {
    border-bottom: none;
}

.machinery-option-left {
    min-width: 0;
}

.machinery-subcategory {
    color: #101828;
    font-size: 14px;
    font-weight: 400;
}

.machinery-name {
    color: #1f2937;
    font-size: 14px;
}

.machinery-option-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.machinery-option-right .machinery-add-btn {
    border: 0.8px solid #04533E;
    background: #fff;
    color: #04533E;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
}

.machinery-option-right .machinery-edit-btn {
    border: 0.8px solid #D1D5DC;
    color: #0A0A0A;
    font-size: 14px;
    border-radius: 5px;

}

.machinery-option-right .machinery-add-btn:hover,
.machinery-option-right .machinery-edit-btn:hover,
.machinery-option-right .machinery-remove-btn:hover {
    background: #04533e;
    color: #fff;
}

.machinery-option-right .machinery-remove-btn {
    border: 0.8px solid #FFA2A2;
    background-color: white;
    color: #E7000B;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
}

.machinery-select-header .bi-chevron-down::before {
    content: "\f282";
    font-weight: 600 !important;
}

.machinery-option-right .machinery-remove-btn:hover {
    background: #b91c1c;
    color: #fff;
}

.machinery-selected-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.machinery-qty-text {
    font-size: 14px;
    color: #4A5565;
    font-weight: 400;
}

.machinery-no-results {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    padding: 10px 0;
}

.machinery-qty-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.machinery-qty-dialog {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.machinery-qty-dialog h5 {
    margin-bottom: 12px;
    color: #515151;
    font-size: 14px;
    font-weight: 400;
}

.machinery-qty-label {
    display: block;
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
}

.machinery-qty-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 30px;
}

#machineryQtyInput {
    width: 38px;
    height: 38px;
    background: #fff;
    border: none;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: end;
}

#machineryQtyInput:focus {
    outline: 0;
    box-shadow: unset;
}

.qty-minus,
.qty-plus {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 0.8px solid #D1D5DC !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.qty-minus:focus,
.qty-plus:focus {
    outline: 0;
    box-shadow: unset;
}

.machinery-qty-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

.machinery-qty-actions .qty-cancel,
.machinery-qty-actions .qty-confirm {
    border-radius: 5px;
    padding: 12px 14px;
    background: #fff;
    width: 50%;
    border: 0.8px solid #04533E;
    font-size: 16px;
    color: #0A0A0A;
}

.machinery-qty-actions .qty-confirm,
.machinery-qty-actions .qty-confirm:hover {
    border-color: #04533E;
    background: #04533E;
    color: #fff;
}

.site-visit-container .btn-outline-more-options .bi-plus-lg::before {
    font-weight: 600 !important;
}

button.btn.remove-site-visit {
    border: 1px solid #00000014;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    visibility: hidden;
}

.summary-doc-item span {
    font-size: 15px;
    color: #9A9898;
}

#summaryDrawingsContainer,
#summaryScopeContainer,
#summaryBoqContainer,
#summaryMediaContainer {
    min-width: 92px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.summary-doc-item .summary-view-btn {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background: #fff;
    color: #04533E;
    display: flex;
    align-items: center;
    gap: 4px;
}

.summary-doc-item .summary-view-btn:hover {
    background: #57E09820;
    border-color: #57E098;
}

.machinery-type-head,
.machinery-quantity-head {
    font-size: 16px;
    color: #0A0A0A;
}

.machinery-type-quantity-list span,
.machinery-type-name,
.machinery-type-quantity {
    font-size: 18px;
    color: #0A0A0A;
}

h6.machinery-type-name,
h6.machinery-type-quantity {
    margin-top: 10px;
}

.days-count-display {
    margin-top: 30px;
    margin-bottom: 25px;
}

span.days-count-badge {
    background: #57E0981C;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
}

/* Scheduling Choice Styles */
.choice-card {
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
}

.choice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 107, 91, 0.08) !important;
}

.choice-card.border-success {
    border-color: #57E098 !important;
    background-color: #f0fff4 !important;
}

.choice-card .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
}

.choice-card .form-check-label {
    font-weight: 500;
    color: #333;
}

.machinery-type-quantity-list {
    /* background: #f8f9fa; */
    padding: 5px 16px 0px 0px;
    border-radius: 8px;
    margin-bottom: 10px !important;
}

.hire-period-content {
    font-weight: 500;
    color: #4A5565;
}

.services-detail-header .choice-container .radio-card {
    padding: 15px 20px;
    box-shadow: 0px 0px 4px 0px #00000017;
    margin-bottom: 15px;
}

.choice-container label.form-check-label {
    margin-bottom: 0px;
}

.internal-next-btn {
    background: #57E098;
    color: black;
    width: 100%;
}

.internal-next-btn:before {
    border-radius: 12px;
}

.internal-next-btn:hover {
    color: white;
}

.internal-back-btn {
    border: 1px solid #04533E !important;
    background: #F8FEFB !important;
    width: 20%;
    box-shadow: 4px 4px 7px 0px #00000017;
    padding: 12px 28px !important;
}

@media (max-width: 991.98px) {

    .preference-container .toggle-btn {
        width: 40%;
    }

    h1.location-address-heading {
        margin-bottom: 10px;
    }

    h1.location-address-heading,
    h1.services-detail-title {
        font-size: 22px;
    }

    .services-right {
        display: none;
    }

    .location-radio {
        width: 20px;
        height: 20px;
    }

    .location-item {
        align-items: flex-start;
    }

    .location-radio::after {
        width: 7px;
        height: 7px;
    }

    .schedule-type-tabs .toggle-btn {
        width: 33%;
        font-size: 15px;
    }

    .tanker-size-row .col-5 {
        width: 100%;
    }

    .tanker-size-row .col-6 {
        width: 100%;
    }

    .add-size-btn {
        width: 55%;
    }

    .services-left {
        width: 100%;
    }

    .machinery-type-quantity-list span,
    .machinery-type-name,
    .machinery-type-quantity {
        font-size: 16px;
        color: #0A0A0A;
    }
}