:root {
    --main-color: #89C63E;
    --dark-color: #73a13a;
    --step-color: #ced7e0;
    --step-size: 24px;
    --steps: 4;
    --progress-width: calc((var(--steps) - 1) / var(--steps) * 100%);
}

.home-3 .navbar {
    padding: 0px !important;
    border-bottom: 1px solid #d0d5dd;
}

.home-3 .navbar .nav-link {
    font-size: 14px !important;
}

.home-3.header,
.footer-area {
    display: none;
}

.quote-page-header {
    display: block !important;
}

.navbar-brand img {
    width: 95px;
}

.main {
    background: #F0F2FE;
    min-height: 100vh;
}

.progress-section {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d0d5dd;
}

.progress-container {
    position: relative;
}

.progress-container::before {
    content: "";
    height: 4px;
    width: var(--progress-width);
    background-color: var(--step-color);
    position: absolute;
    top: calc(var(--step-size) / 2);
    left: 50%;
    translate: -50% -50%;
}

.progress-container .progress {
    height: 4px;
    width: var(--progress-width);
    background-color: var(--main-color);
    position: absolute;
    top: calc(var(--step-size) / 2);
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.progress-container ol {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    counter-reset: step-number;
    position: relative;
    z-index: 3;
    margin-bottom: 0px;
}

.progress-container li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--step-color);
    transition: 0.3s linear 0.3s;
    text-align: center;
    font-size: 14px !important;
    padding-right: 32px;
}

.progress-container li::before {
    counter-increment: step-number;
    content: counter(step-number);
    background-color: var(--step-color);
    width: var(--step-size);
    height: var(--step-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s linear 0.3s;
    font-size: 1rem;
}

.progress-container li:where(.done, .current) {
    color: #333;
    font-weight: 500;
}

.progress-container li.done::before {
    background-color: var(--main-color);
}

.progress-container li.current::before {
    background-color: var(--main-color);
    box-shadow: 0 0 0 3px rgb(84 104 21 / 25%);
}

.custom-button-style {
    background-color: transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    border-color: #979af2;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .015);
    height: 32px;
    padding: 4px 15px;
    border-radius: 6px;
    color: #3c4397;
    border: 1px solid #97a4f2;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-button-style:hover {
    color: #2e2b8c;
    border-color: #4c47e1;
}

.steps-container {
    display: flex;
    flex-direction: column;
}

.step {
    flex: 1 0 100%;
    padding: 24px 8px;
    opacity: 0;
    transition: opacity 0.3s, display 0s 0.3s;
    /* Add display transition */
    height: fit-content;
    display: none !important;
    /* Hide steps by default */
    gap: 8px;
}

.step.current {
    opacity: 1;
    display: grid !important;
}

.step-icon {
    font-size: 20px;
}

.step-1-details {
    max-width: 600px;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-inline: 8px;
}

.controls button {
    flex: 1;
}

.completed {
    text-align: center;
}

.completed h3 {
    margin-bottom: 8px;
}

.completed svg {
    width: 100px;
    height: 100px;
    stroke: yellowgreen;
}

.completed:not([hidden])~* {
    display: none;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid #d0d5dd;
}

.sticky-footer .theme-btn {
    padding: 5px 45px !important;
    border-radius: 6px;
}

.next-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.theme-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .navbar {
        position: relative !important;
    }
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group input {
    height: 50px;
    padding-left: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: all 0.3s;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--main-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: 10px;
    left: 40px;
    font-size: 12px;
    color: var(--main-color);
}

.form-group .fa-map-marker-alt {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
}

.add-stop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
    color: var(--main-color);
}

.add-stop-btn .fa-plus {
    margin-right: 5px;
}

.remove-stop-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.extra-stop {
    position: relative;
    margin-top: 10px;
}

.contact-wrapper {
    padding: 20px 30px !important;
    border-radius: 16px;
}

.step-2-details {
    width: 100%;
    overflow: hidden;
}

.step-2-details .contact-wrapper .title {
    color: #475467;
    font-weight: 500;
    margin-bottom: 12px !important;
}

.step-2-details .contact-wrapper .from-location-name,
.step-2-details .contact-wrapper .to-location-name {
    font-size: 20px;
    font-weight: 600;
    color: #292767;
}

.google-map-container {
    max-height: 160px;
    overflow: hidden;
    margin-top: 20px;
}

.property-type-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #344054;
}

.grid-three-one-responsive {
    display: grid;
    background-color: rgba(0, 0, 0, .06);
    grid-gap: 1px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: auto;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
    .grid-three-one-responsive {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-three-one {
    display: grid;
    background-color: rgba(0, 0, 0, .06);
    grid-gap: 1px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: auto;
    grid-template-columns: repeat(3, 1fr);
}

.grid-two-one {
    display: grid;
    background-color: rgba(0, 0, 0, .06);
    grid-gap: 1px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: auto;
    grid-template-columns: repeat(2, 1fr);
}

.grid-one-one {
    display: grid;
    background-color: rgba(0, 0, 0, .06);
    grid-gap: 1px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: auto;
    grid-template-columns: repeat(1, 1fr);
}

.grid-three-one .form-check, .grid-three-one-responsive .form-check, .grid-two-one .form-check, .grid-one-one .form-check {
    background-color: #fff;
    margin: 0;
    align-items: flex-start;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 15px 34px;
}

.form-check-inline:has(input:checked) {
    background-color: #f6f8fe;
}
.grid-three-one .form-check:hover, .grid-three-one-responsive .form-check:hover, .grid-two-one .form-check:hover, .grid-one-one .form-check:hover {
    background-color: #f6f8fe;
}

.form-check-input {
    font-size: 18px;
}

#pickup-storage-company-name:focus, #pickup-storage-unit-number:focus, .move-size-search-box:focus {
    outline: none;
    box-shadow: none !important;
    border: 1px solid #89C63E;
}

#pickup-storage-company-name, #pickup-storage-unit-number {
    padding: 10px 14px !important;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.lh-22 {
    line-height: 22px;
}

.lh-14 {
    line-height: 14px;
}

.mr-10 {
    margin-right: 10px;
}

.fw-500 {
    font-weight: 500;
}

.h-43 {
    height: 43px !important;
}

.help-text-style {
    font-size: 15px;
    color: rgba(0, 0, 0, .85098);
}

.link-color {
    color: #4c47e1;
}

.customize-btn {
    background: #89C63E !important;
    border: none !important;
}

.error-message {
    line-height: 21px;
    font-size: 14px;
}

@media (max-width: 480px) {
    .grid-three-one-responsive, .grid-three-one, .grid-two-one, .grid-one-one {
        width: 100%;
        overflow-x: scroll;
    }
    
    .step-text {
        display: none;
    }
    
    .step-icon {
        display: block !important;
    }
}

@media (min-width: 480px) {
    .progress-container li {
        font-size: 1rem;
        gap: 8px;
    }
    
    .step-icon {
        display: none;
    }
    
    .step-text {
        display: block !important;
    }
}

/* Move Size Step Style Start */
.move-size-container {
    width: 100%;
    margin: auto;
    position: relative;
}

.move-size-search-box {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.move-size-search-box::placeholder {
    color: #aaa;
    opacity: 1;
}

.move-size-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.move-size-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
}

.move-size-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
}

.move-size-dropdown::-webkit-scrollbar {
    width: 5px; /* Reduce scrollbar width */
}

.move-size-dropdown::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 10px;
}

.move-size-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.move-size-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.move-size-item .item-name{
    margin-right: 20px;
}

.move-size-item:hover {
    background: #f8f9fa;
}

.move-size-qty-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 90px;
}

.move-size-qty-btn button, .move-size-qty-btn button:hover, .move-size-qty-btn button:focus {
    width: 34px;
    height: 34px;
    padding: 0;
    font-size: 16px;
    color: #2e2b8c;
    border-color: #979af2;
    background: #fff;
}

/* Expandable Section */
.section-title {
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #24416B;
}

.section-title span i {
    margin-right: 7px;
}

.bedroom-items, .living-room-items, .laundry-items, .study-office-items, .hall-entry-items, .outdoor-garden-items, .garage-shed-items, .fitness-gym-items, .boxes-storage-items, .custom-items, .kitchen-items, .dining-room-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.rotate-icon {
    transition: transform 0.3s ease-in-out;
}

.rotate-icon.open {
    transform: rotate(180deg);
}
/* Move Size Step Style End */

/* Date Time Style Start */
.date_type_radio {
    border: 1px solid #b5bcc9;
    border-radius: 50px;
    margin-right: 4px;
    padding: 10px 20px;
    margin-top: 8px;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #89C63E;
    color: white;
    border-color: #89C63E;
}

#assembly_disassembly_section {
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
    display: flex;
    padding: 16px;
    background-color: #fcfcfd;
    flex-direction: column;
    row-gap: 8px;
}

.assembly_disassembly_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 16px;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05);
}

.assembly_disassembly_item_time {
    color: #98a2b3;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
/* Date Time Style End */

/* User Details Style Start */
.input-style {
    height: 50px;
}

.input-style:focus, .textarea-style:focus {
    outline: none;
    box-shadow: none !important;
    border: 1px solid #89C63E;
}
/* User Details Style End */

.white-badge-style {
    padding: 6px 16px;
    background-color: #fff;
    border-radius: 99px;
    border: 1px solid #bfc3f7;
    box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.estimate-size-section {
    padding: 20px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.reservation-popup {
    display: none;
}