/* Place in your CSS file at the top of the document */

@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Global Reset and Base Styles */

/* .btn:hover {
  all: unset; /* removes all hover styles *
} */

.btn:hover {
    background: inherit !important;
    color: inherit !important;
    box-shadow: none !important;
    cursor: default !important;
}

.mb-3 {
    font-size: 20px !important;
    font-weight: 500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Onest", sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #1a202c;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700 !important;
    color: #2563eb;
    transition: color 0.2s ease;
}

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus {
    font-size: 24px;
    font-weight: 700 !important;
    color: #2563eb !important; /* fixed color */
    text-decoration: none !important; /* remove underline */
    cursor: pointer !important; /* optional: no pointer hand */
    transition: none !important; /* disable animation */
}

.navbar-menu {
    display: flex;
    gap: 50px !important;
    align-items: center;
}

.user-greeting {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    border-radius: 6px;
    background-color: #edf2f7;
    transition: background-color 0.2s ease;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 15px !important;
    font-family: "Onest", sans-serif;
}

.user-greeting:hover {
    background-color: #e2e8f0;
}

.btn:hover,
.btn:focus {
    background-color: inherit !important; /* keeps original */
    border-color: inherit !important;
    color: inherit !important;
    box-shadow: none !important; /* removes glow */
}

.language-preferences {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #9c9c9c;
    transition: background-color 0.2s ease;
    width: 112px;
    height: 50px;
    gap: 10px;
}

#languageName {
    color: #000000;
    font-size: 20px;
    font-family: "Onest", sans-serif;
    font-weight: 400;
}

.dropdown-menu {
    min-width: 6rem;
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    font-size: 0.875rem;
    padding: 8px 12px;
    color: #333333;
    transition: background-color 0.2s ease;
}

.login-btn,
.logout-btn,
#logOutBtn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.login-btn {
    font-size: 20px;
    font-weight: 400;
    width: 112px;
    height: 50px;
    padding: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2563eb;
    border: none;
    color: #ffffff;
}

#logOutBtn {
    font-size: 20px;
    font-weight: 400;
    width: 112px;
    height: 50px;
    padding: 12px !important;
}

.logout-btn {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.container {
    /* width: 90%; */
    max-width: 100%;
    padding: 32px 38px;
}

#languageDropdown img {
    display: inline-block !important; /* keep icon always */
    margin-right: 6px;
}

#languageDropdown span {
    display: inline-block !important;
}

.dropdown-item img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

#languageDropdown img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* -------------------------------------------------tracker for the process------------------------------------------------------------ */

.stepTrackerHeading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headingtextStepTracker {
    font-weight: bold;
    font-size: 32px;
}

.subHeadingtextStepTracker {
    font-size: 20px;
    font-weight: 500;
}

.stepTrackerData {
    display: flex;
    justify-content: space-evenly !important;
    gap: 50px;
}

.step-tracker {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
    gap: 20px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    flex: 1;
    min-width: 200px; /* consistent width */
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle.check {
    background: #22c55e;
    font-size: 20px;
}

.step .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step .desc {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 220px; /* keeps text neat */
}

/*------------------------------------------------- Step Section--------------------------------------------------- */
.step-section {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 32px !important;
}

.step-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Location Selector */
.location-selector {
    background-color: #ffffff; /* Changed from #f9fafb to match image */
    border-radius: 0; /* Removed radius to align with image */
}

.option-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    background-color: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 620px;
    height: 50px;
}

.option-row:hover {
    background-color: #eef5ff;
}

.drag-icon,
.drag_location {
    margin-right: 12px;
    transition: opacity 0.2s ease;
}

.drag-icon:hover,
.drag_location:hover {
    opacity: 0.8;
}

.location-text {
    flex-grow: 1;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.location-text:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#addLocationBtn,
#drawRouteBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-bottom: 20px; */
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    color: #ffffff;
    background-color: #2563eb;
    transition: background-color 0.2s ease;
    width: 124px;
    height: 50px;
    padding: 20px;
    cursor: pointer;
}

#addLocationBtn:hover,
#drawRouteBtn:hover {
    background-color: #2563eb !important; /* same as normal */
    color: #ffffff !important; /* keep text color fixed */
    border-color: #2563eb !important; /* for outline button */
    box-shadow: none !important; /* disable Bootstrap shadow */
    cursor: pointer; /* optional: no pointer hand */
}

.drag-icon.me-2 {
    display: flex;
    width: 100px;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
}

.routeButtons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

/* Map Section */
.map-section {
    background-color: #ffffff; /* Changed from #f9fafb to match image */
    border-left: 1px dashed #ddd; /* Added dashed border to match image */
    border-radius: 0 12px 12px 0; /* Adjusted to match image */
}

#map {
    min-height: 250px;
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Total Info */
.total-info {
    background-color: #2563eb;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 24px !important;
}

.total-info .card-body {
    background-color: #60a5fa !important;
    padding: 32px;
    border-radius: 12px;
}

.total-distance,
.total-price {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    background-color: #60a5fa; 
    border-radius: 6px;
    margin: 0 5px;
    width: 700px;
    height: 50px;
    padding: 32px;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.total-distance {
    margin-left: 0;
}

.total-price {
    margin-right: 0;
}

.totalDistancePrice {
    background: white !important;
    border: none !important;
    display: flex !important;
    /* padding: 10px; */
    box-shadow: none !important;
}

/* --------------------------------------------------Booking Calendar----------------------------------------------------- */
/* .booking-calendar {
    background-color: #f9fafb;
    border-radius: 12px;
}

#calendar {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

/* Time Slot *
.time-slot {
    background-color: #f9fafb;
    border-left: 1px solid #e2e8f0;
    border-radius: 0 12px 12px 0;
}

#selected-date {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    padding: 16px;
} */

.booking-calendar,
.time-slot {
    padding: 24px;
}

/* Booking Calendar */
.booking-calendar {
    background-color: #ffffff; /* Changed from #f9fafb to match image */
    border-radius: 0; /* Removed radius to align with image */
}

#calendar {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    display: none; /* Hidden as per image, replaced with custom inputs */
}

.date-time-inputs {
    margin-top: 20px;
}

.custom-date {
    margin-bottom: 20px;
}

.custom-date label {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

#customDate {
    width: 100%;
    /* padding: 8px 16px !important; */
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.875rem;
}

#customDate:focus,
#startTime:focus,
#endTIme:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.time-range {
    display: flex;
    gap: 20px;
}

.time-input {
    flex: 1;
}

.time-input label {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 5px;
    display: block;
}

#startTime,
#endTime {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.875rem;
}

#startTime:focus,
#endTime:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.booking-summary {
    margin-top: 24px !important;
    background-color: #60a5fa;
    padding: 15px;
    border-radius: 8px;
    color: #ffffff;
}

.booking-summary h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-summary p {
    font-size: 0.875rem;
    margin: 5px 0;
}

/* Time Slot */
.time-slot {
    background-color: #f9fafb;
    border-left: 1px solid #e2e8f0;
    border-radius: 0 12px 12px 0;
    display: none; /* Hidden as per image, replaced with custom inputs */
}

#selected-date {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    padding: 16px;
    display: none; /* Hidden as per image */
}

.date-input-wrapper {
    position: relative;
}
.date-input-wrapper .bi-calendar {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* makes sure clicks go to the input */
    color: #6c757d; /* Bootstrap’s text-muted color */
}
.date-input-wrapper input {
    padding-right: 2.2rem; /* add space so text doesn't overlap icon */
}

/* Force calendar background to white */
.datepicker-dropdown {
    background-color: #ffffff !important;
    z-index: 10 !important; /* make sure it's above cards etc */
}

/* Optional: add border + shadow to match Bootstrap cards */
.datepicker-dropdown {
    border: 1px solid #dee2e6;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Override positioning if needed */
.datepicker-dropdown {
    top: 1374.2px !important;
    left: 157.2px !important;
    display: block !important;
}

/* wrapper for select with icon */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none; /* hide native arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem; /* space for the icon */
}

.select-wrapper .bi-chevron-down {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* clicks pass through */
    color: #6c757d; /* muted gray */
}

.timeHeading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sectionHeadingIcons {
    display: flex;
    gap: 15px;
}

/*------------------------------------------------------------ Contact Info--------------------------------------------------- */

#contactFormMarginBottom {
    margin-bottom: 2% !important;
}

.contact-info input,
.contact-info textarea {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 12px 12px 12px 16px; /* extra left padding for icons */
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.contact-info input:focus,
.contact-info textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info-heading {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1rem;
    pointer-events: none;
}

#confirm {
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    color: #ffffff;
}

#contactFormPlaceholder {
    padding: 16px;
}

#form-label-contact-form {
    margin-bottom: 1% !important;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
}

/* Push input text so it doesn't overlap icon */
.form-control.with-icon {
    padding-left: 42px !important;
}

/* -------------------------------------------------------------------------Modal ---------------------------------------------------------------*/
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.modal-body {
    padding: 24px;
}

.modal-body .form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 12px;
    font-size: 0.875rem;
}

/* Login button styling without hover */
#loginSubmit {
    background-color: #2563eb;
    border-color: #2563eb;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
}

#loginSubmit:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
}

/* Sign Up link styling without hover */
#signUpButton {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

#signUpButton:hover,
#loginRegisterModal:hover {
    color: #2563eb !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

/* Eye icon toggle cursor */
.toggle-password {
    cursor: pointer;
}

.buttonTextFooter {
    display: flex !important;
    justify-content: center !important;
    gap: 5px !important;
}

/* ------------------------------------------footer---------------------------------------- */
.brandTitleFooter {
    color: #2563eb;
    font-size: 24px;
    font-weight: bold;
}

.numberMail {
    display: flex;
    gap: 50px;
}

.middleTopic,
.rightTopic {
    padding-left: 250px;
}

.brandText {
    font-size: 16px;
    font-weight: normal;
}

.mobileNumberFooter,
.emailFooter {
    font-size: 14px;
    font-weight: normal;
}

.servicesHeading,
.coverageHeading {
    font-weight: 500;
    font-size: 20px;
}

.serviceItem,
.coverageItem {
    font-weight: 400;
    font-size: 15px;
}

.footerCopy {
    font-size: 16px;
    font-weight: 400;
    margin-right: 5px !important;
}

.footerCopyLinks {
    font-size: 16px;
    font-weight: 400;
    margin-right: 0px !important;
}

/* -----------------------------------------------------accordions--------------------------------------------------- */

.accordion-item {
    padding: 24px !important;
}

#accordionTitle {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #333333 !important;
}

/* Booking summary inside accordion header should only show when collapsed */
.accordion-button:not(.collapsed) .booking-summary-collapsed {
    display: none;
}

/* Preview only visible when Step 1 is collapsed */
.accordion-button:not(.collapsed) .total-info-collapsed {
    display: none;
}

.accordion-button:focus {
    border-color: inherit !important; /* Maintains the original border color */
    outline: none !important; /* Removes the default outline */
    box-shadow: none !important; /* Removes any focus shadow */
    background-color: inherit !important; /* Keeps the original background */
    color: inherit !important; /* Maintains the original text color */
}

.accordion-button {
    position: relative; /* Establish a positioning context */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: flex-start; /* Align content to the left */
    padding: 16px; /* Adjust padding as needed */
    background: #ffffff !important; /* Preserve your existing style */
}

.accordion-button::after {
    position: absolute; /* Position the arrow independently */
    top: 8px; /* Adjust the top offset as needed */
    right: 16px; /* Keep it aligned to the right, or adjust as desired */
    transform: rotate(0deg); /* Reset rotation for top placement */
    content: ""; /* Required for ::after */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); /* Default Bootstrap arrow SVG */
    /* width: 16px; */
    height: 16px;
    margin-left: 0.75rem; /* Space between content and arrow */
    margin-top: 0.75rem;
    transition: transform 0.2s ease-in-out; /* Preserve animation */
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg); /* Rotate arrow when expanded */
}

.sectionHeadingIcons {
    display: flex;
    align-items: center;
    gap: 22px; /* Space between icon and text */
}

.mb-3 {
    margin-bottom: 0 !important; /* Remove default margin if it interferes */
}

#loginInputField,
#registerInputField {
    margin-bottom: 2vh !important; /* Remove default margin if it interferes */
}

/*---------------------------------------------------------- Responsive Adjustments -----------------------------------------------------------*/
/* Mobile (≤576px) */
@media (max-width: 576px) {
    /* Navbar */
    .navbar {
        padding: 8px 16px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-menu {
        flex-direction: column;
        gap: 8px !important;
        align-items: flex-start;
    }

    .user-greeting,
    .language-preferences,
    .login-btn,
    .logout-btn,
    #logOutBtn {
        font-size: 16px !important;
        font-weight: 400;
        width: 112px;
        height: 50px;
        padding: 12px !important;
        display: flex;
        justify-content: center !important;
        align-items: center;
        border: none;
        color: #ffffff;
    }

    .dropdown-menu {
        min-width: 100%;
    }

    /* Container */
    .container {
        padding: 16px;
        width: 100%;
    }

    /* Step Tracker */
    .stepTrackerData {
        flex-direction: column;
        gap: 20px;
    }

    .step-tracker {
        padding: 16px;
        gap: 10px;
    }

    .step {
        min-width: 100%;
        max-width: 100%;
    }

    .circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step .title {
        font-size: 14px;
    }

    .step .desc {
        font-size: 12px;
        max-width: 100%;
    }

    /* Step Section */
    .step-section {
        padding: 16px !important;
    }

    /* Location Selector */
    .option-row {
        width: 102%;
        height: 45px;
        padding: 6px;
    }

    .location-text {
        font-size: 0.75rem;
    }

    .card-body {
        padding: 20px !important;
        border-radius: 8px !important;
    }

    #addLocationBtn,
    #drawRouteBtn {
        width: 100%;
        height: 40px;
        padding: 10px;
        font-size: 12px;
        justify-content: center;
        align-items: center;
    }

    .routeButtons {
        /* flex-direction: column; */
        gap: 8px;
    }

    /* Map Section */
    .map-section {
        border-left: none;
        border-top: 1px dashed #ddd;
        border-radius: 12px;
    }

    #map {
        min-height: 200px;
    }

    /* Total Info */
    .total-distance,
    .total-price {
        font-size: 11px !important;
        width: 100%;
        height: 45px;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .distanceValue,
    .priceValue {
        font-size: 15px !important;
        font-weight: bold;
    }

    /* Booking Calendar */
    .booking-calendar,
    .time-slot {
        padding: 16px;
        border-radius: 12px;
    }

    .time-range {
        flex-direction: column;
        gap: 10px;
    }

    #customDate,
    #startTime,
    #endTime {
        font-size: 0.75rem;
    }

    .booking-summary {
        padding: 12px;
    }

    .booking-summary h3 {
        font-size: 1rem;
    }

    .booking-summary p {
        font-size: 0.75rem;
    }

    /* Contact Info */
    .contact-info input,
    .contact-info textarea {
        font-size: 0.75rem;
        padding: 10px 10px 10px 14px;
    }

    #confirm {
        font-size: 0.875rem;
        padding: 10px;
    }

    /* Modal */
    .modal-content {
        margin: 10px;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-body .form-control {
        font-size: 0.75rem;
        padding: 10px;
    }

    /* Footer */
    .middleTopic,
    .rightTopic {
        padding-left: 10px !important;
    }

    .numberMail {
        flex-direction: column;
        gap: 20px;
    }

    .brandTitleFooter {
        font-size: 1.25rem;
    }

    .brandText,
    .footerCopy,
    .footerCopyLinks {
        font-size: 14px;
    }

    .servicesHeading,
    .coverageHeading {
        font-size: 18px;
    }

    .serviceItem,
    .coverageItem {
        font-size: 16px;
    }
}

/* Tablet (577px–768px) */
@media (min-width: 577px) and (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 10px 20px;
    }

    .navbar-menu {
        flex-direction: row;
        gap: 15px !important;
    }

    .user-greeting,
    .language-preferences,
    .login-btn,
    .logout-btn,
    #logOutBtn {
        font-size: 0.875rem;
        padding: 8px 14px;
        height: 45px;
        width: auto;
    }

    /* Container */
    .container {
        padding: 24px;
        width: 100%;
    }

    /* Step Tracker */
    .stepTrackerData {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-tracker {
        padding: 24px;
    }

    .step .desc {
        font-size: 17px !important;
        color: #555;
        line-height: 1.4;
        margin: 0 auto;
        max-width: 220px;
    }

    #sortableLocations {
        width: -webkit-fill-available;
    }

    .circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Step Section */
    .step-section {
        padding: 24px !important;
    }

    /* Location Selector */
    .option-row {
        width: 100%;
        max-width: 500px;
        height: 48px;
    }

    .location-text {
        font-size: 0.875rem;
    }

    #addLocationBtn,
    #drawRouteBtn {
        width: 150px;
        height: 45px;
        padding: 12px;
        font-size: 13px;
        justify-content: center !important;
    }

    .routeButtons {
        justify-content: flex-end;
        gap: 10px;
    }

    /* Map Section */
    .map-section {
        border-left: 1px dashed #ddd;
        border-radius: 0 12px 12px 0;
    }

    #map {
        min-height: 220px;
    }

    /* Total Info */
    .total-distance,
    .total-price {
        font-size: 18px;
        width: 100%;
        max-width: 600px;
        height: 48px;
        padding: 24px;
    }

    /* Booking Calendar */
    .booking-calendar,
    .time-slot {
        padding: 20px;
    }

    .time-range {
        flex-direction: row;
        gap: 15px;
    }

    #customDate,
    #startTime,
    #endTime {
        font-size: 0.875rem;
        /* padding: 8px 12px; */
    }

    /* Contact Info */
    .contact-info input,
    .contact-info textarea {
        font-size: 0.875rem;
        padding: 10px 10px 10px 14px;
    }

    #confirm {
        font-size: 0.875rem;
        padding: 10px;
    }

    /* Footer */
    .middleTopic,
    .rightTopic {
        padding-left: 100px;
    }

    .numberMail {
        gap: 30px;
    }
}

/* Laptop (769px–1440px) */
@media (min-width: 769px) and (max-width: 1440px) {
    /* Navbar */
    .navbar {
        padding: 12px 24px;
    }

    .navbar-menu {
        gap: 30px !important;
    }

    .user-greeting,
    .language-preferences,
    .login-btn,
    .logout-btn,
    #logOutBtn {
        font-size: 0.875rem;
        padding: 10px 16px;
        height: 48px;
    }

    /* Container */
    .container {
        padding: 28px;
        max-width: 100%;
    }

    /* Step Tracker */
    .stepTrackerData {
        gap: 40px;
    }

    .step-tracker {
        padding: 28px;
    }

    .step {
        min-width: 200px;
        max-width: 240px;
    }

    /* Step Section */
    .step-section {
        padding: 28px !important;
    }

    /* Location Selector */
    .option-row {
        width: -webkit-fill-available !important;
    }

    #sortableLocations {
        width: -webkit-fill-available !important;
    }

    #addLocationBtn,
    #drawRouteBtn {
        width: 160px;
        height: 48px;
    }

    /* Map Section */
    #map {
        min-height: 240px;
    }

    /* Total Info */
    .total-distance,
    .total-price {
        max-width: 650px;
    }

    /* Booking Calendar */
    .booking-calendar,
    .time-slot {
        padding: 22px;
    }

    /* Footer */
    .middleTopic,
    .rightTopic {
        padding-left: 200px;
    }
}
