

/* ==========================================
   🎯 PROGRESS BAR - DESKTOP CSS
   ========================================== */


/* ========================================
   PROGRESS BAR STYLES
   ======================================== */
.wizard .steps,
.wizard .steps:before,
.wizard .steps:after,
.wizard .content:before,
.wizard .content:after,
.wizard:before,
.wizard:after {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    background: transparent !important;
}

.wizard .steps ul li:before,
.wizard .steps ul li:after {
    display: none !important;
    border-left: none !important;
    background: transparent !important;
}

.wizard.vertical .steps {
    border-right: none !important;
}

.wizard .steps>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 20px;
}

.wizard .steps>ul>li {
    float: none !important;
    width: auto !important;
    display: inline-flex;
    align-items: center;
}

.wizard .steps>ul>li a {
    text-decoration: none;
}

.wizard .steps>ul>li .title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wizard .steps>ul>li .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wizard .steps>ul>li .step-text {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.wizard .steps>ul>li.current .step-number {
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.wizard .steps>ul>li.current .step-text {
    color: #002b5c;
    font-weight: 700;
}

.wizard .steps>ul>li.disabled .step-number {
    background: #f3f4f6;
    color: #9ca3af;
}

.wizard .steps>ul>li.disabled .step-text {
    color: #9ca3af;
}

.wizard .content {
    margin: 0;
    padding-left: 0;
    text-align: left;
}

.wizard .content h2 {
    color: #002b5c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
    padding-top: 0;
}

.wizard .content .desc {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 0;
}

.wizard .actions {
    margin-top: 30px;
}

.video-call-timing{
    margin-top: 20px;
}

.video-call-timing .preferred-datetime{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 5px;
}

.video-call-timing .preferred-datetime input{
    height: 40px;
        font-size: 14px;
    font-weight: 600;
    outline: none;
}

.video-call-label{
    font-weight:600;
    display:block;
    margin-bottom:10px;
    color:#374151;
}

.video-call-grid{
    display:flex;
    gap:12px;
}

.date-field,
.time-field{
    position:relative;
    flex:1;
}

.field-icon{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    font-size:14px;
    opacity:.6;
}

.date-field input,
.time-field input{
    padding-left:32px;
    height:42px;
    border-radius:8px;
}

.booking-radio-option{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.checkout-contact-step .phone-input-wrapper{
        display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding-left: 12px;
    align-items: center;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: rgb(229, 231, 235) !important;
    border-image: initial !important;
    border-radius: 12px !important;
    /* padding: 12px 16px !important; */
    transition: 0.3s !important;
    background: white !important;
}
.checkout-contact-step .phone-input-wrapper input{
   border: unset !important;
    padding-left: 5px !important; 
}
.checkout-contact-step .phone-input-wrapper input:focus{
   box-shadow:unset !important;
   outline:none;
}
/* ==========================================
   🎯 PROGRESS BAR - RESPONSIVE CSS
   ========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .wizard .steps>ul {
        gap: 25px;
        padding: 15px 10px;
    }

    .wizard .steps>ul>li .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .wizard .steps>ul>li .step-text {
        font-size: 14px;
    }

    .wizard .content h2 {
        font-size: 24px;
    }

    .wizard .content .desc {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {
    .wizard .steps>ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        align-items: stretch;
    }

    .wizard .steps>ul>li {
        width: 100% !important;
        justify-content: flex-start;
    }

    .wizard .steps>ul>li .title {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .wizard .steps>ul>li .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .wizard .steps>ul>li .step-text {
        font-size: 15px;
        flex: 1;
    }

    .wizard .steps>ul>li.current {
        background: #fff4e6;
        border-radius: 12px;
        padding: 12px;
        border-left: 4px solid #ff7f00;
    }

    .wizard .content h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .wizard .content .desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .wizard .steps>ul {
        gap: 15px;
        padding: 15px 10px;
    }

    .wizard .steps>ul>li .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .wizard .steps>ul>li .step-text {
        font-size: 13px;
    }

    .wizard .content h2 {
        font-size: 20px;
    }

    .wizard .content .desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .wizard .steps>ul>li.current {
        padding: 10px;
    }
}

/* ==========================================
   📍 STEP 1 - DESKTOP CSS
   ========================================== */


/* ========================================
   STEP 1: MOVE LAYOUT & MAP
   ======================================== */
/* ==========================================
   📍 STEP 1 - FULL WIDTH FORM LAYOUT
   Form boxes take 100% width, map section below
   ========================================== */

/* Override default layout - Make form full width */
.move-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.move-layout .form-column {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.move-layout .map-column {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
}

/* Map takes full width below the form */
#map {
    width: 90%;
    height: 400px;
    margin: auto;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#map:hover {
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

/* Route Info Box - Full Width */
.route-info {
    width: 90%;
    margin:10px auto;
  
    padding: 14px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0369a1;
    text-align: center;
    border: 2px solid #bae6fd;
    transition: all 0.3s ease;
}

.route-info:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

/* Additional Details Card - Full Width */
.additional-details-card {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.additional-details-card h5 {
    color: #002b5c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

/* Form Input Groups */
.form-row {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Autocomplete Suggestion Box */
.suggestion-box {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    width: calc(100% - 4px);
    margin-top: 4px;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #fff4e6 0%, #ffedd5 100%);
    color: #ff7f00;
    font-weight: 600;
}


/* ==========================================
   📍 STEP 1 - TABLET RESPONSIVE (768px - 991px)
   ========================================== */

@media (max-width: 991px) and (min-width: 768px) {

    /* ========================================
   STEP 1: MOVE LAYOUT & MAP
   ======================================== */
    .move-layout {
        gap: 20px;
    }

    .move-layout .form-column {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .move-layout .map-column {
        flex: 0 0 40%;
        max-width: 40%;
    }

    #map {
        height: 280px;
        width: 100%;
    }

    .route-info {
        width: 100%;
        font-size: 13px;
        padding: 12px;
    }

    .additional-details-card {
        width: 100%;
        padding: 16px;
        margin-top: 18px;
    }

    .additional-details-card h5 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .form-row {
        margin-bottom: 1.3rem;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .suggestion-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ==========================================
   📍 STEP 1 - MOBILE RESPONSIVE (Below 768px)
   STACKED: Form → Map → Details (All Full Width)
   ========================================== */

@media (max-width: 767px) {

    .booking-form {
        display: flex;
        flex-direction: column;
    }


    /* ========================================
   STEP 1: MOVE LAYOUT & MAP
   ======================================== */
    .move-layout {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    /* Form Column - Full Width First */
    .move-layout .form-column {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 25px;
        order: 1;
    }

    /* Map Column - Full Width Second */
    .move-layout .map-column {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 0;
        order: 2;
    }

    /* Map Styling */
    #map {
        width: 100%;
        height: 280px;
        margin: 0;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
    }

    /* Route Info */
    .route-info {
        width: 100%;
        font-size: 13px;
        padding: 12px 14px;
        margin: 12px 0 0 0;
        border-radius: 10px;
    }

    /* Additional Details - Full Width Third */
    .additional-details-card {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 16px;
        border-radius: 12px;
    }

    .additional-details-card h5 {
        font-size: 15px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    /* Form Rows */
    .form-row {
        margin-bottom: 1.2rem;
    }

    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    /* Input Fields */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="datetime-local"],
    select.select-box,
    .form-control,
    textarea {
        padding: 11px 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
        width: 100%;
    }

    /* Autocomplete Box */
    .suggestion-box {
        width: calc(100% - 4px);
        max-height: 200px;
        border-radius: 8px;
    }

    .suggestion-item {
        padding: 11px 14px;
        font-size: 13px;
    }

    /* Property Type Selector */
    .property-type-selector {
        margin-bottom: 1.2rem;
    }

    .property-type-selector .row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .property-type-selector .col-md-4 {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Property Cards */
    .property-card {
        padding: 12px 14px !important;
        margin-bottom: 0 !important;
    }

    /* Wizard Actions */
    .wizard .actions {
        margin-top: 20px;
        padding: 0 15px;
    }

    .wizard .actions ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .wizard .actions ul li {
        flex: 1;
        min-width: 140px;
    }

    .wizard .actions ul li a {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* ==========================================
   📍 STEP 1 - EXTRA SMALL MOBILE (Below 480px)
   Ultra Compact for Small Screens
   ========================================== */

@media (max-width: 480px) {

    .move-layout .form-column,
    .move-layout .map-column {
        padding: 0 12px;
    }

    /* Map */
    #map {
        height: 240px;
        border-radius: 10px;
    }

    .route-info {
        font-size: 12px;
        padding: 10px 12px;
        margin-top: 10px;
        border-radius: 8px;
    }

    /* Additional Details */
    .additional-details-card {
        padding: 14px;
        margin-top: 18px;
        border-radius: 10px;
    }

    .additional-details-card h5 {
        font-size: 14px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    /* Form Elements */
    .form-row {
        margin-bottom: 1rem;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="datetime-local"],
    select.select-box,
    .form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }

    textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
        min-height: 100px !important;
        border-radius: 8px !important;
    }

    /* Suggestion Box */
    .suggestion-box {
        max-height: 180px;
        border-radius: 8px;
    }

    .suggestion-item {
        padding: 10px 12px;
        font-size: 12px;
    }

    /* Property Cards */
    .property-card {
        padding: 10px 12px !important;
        border-radius: 8px !important;
    }

    /* Actions */
    .wizard .actions {
        padding: 0 12px;
        margin-top: 18px;
    }

    .wizard .actions ul li {
        min-width: 120px;
    }

    .wizard .actions ul li a {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* ==========================================
   📍 STEP 1 - LANDSCAPE MOBILE (Height < 500px)
   ========================================== */

@media (max-height: 500px) and (orientation: landscape) {
    #map {
        height: 200px;
    }

    .route-info {
        padding: 8px 12px;
        font-size: 12px;
    }

    .additional-details-card {
        padding: 12px;
    }
}

/* ====== FIX: Step 1 mobile full-width override ======
   Paste near the end of your CSS so it overrides global rules
   Targets screens < 768px only (mobile) and forces form + map + blue input to 100%
====================================================== */
@media (max-width: 767px) {

  /* stop page horizontal overflow from global width bugs */
  html, body {
    overflow-x: hidden;
  }

  /* ensure booking layout columns go full width */
  .booking-form .content,
  .booking-form .sidebar-column,
  .move-layout .form-column,
  .move-layout .map-column,
  .step1 .form-column,      /* in case you have step-specific wrapper names */
  .step1 .map-column {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important;
  }

  /* guard against any rogue inline or global width that expands beyond viewport */
  .move-layout,
  .booking-form,
  .wizard,
  .additional-details-card,
  .inventory-column,
  .inventory-layout {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* fix the map container to be full width and not blow out */
  #map,
  .map-column #map,
  .move-layout .map-column #map {
    width: 100% !important;
    max-width: 100% !important;
    height: 280px; /* keep mobile-friendly height */
    box-sizing: border-box !important;
  }

  /* Blue route input / info box — make it full width */
  /* You referenced "map ka blue wala input" — common candidates: .route-info or .map-input */
  .route-info,
  .map-input,
  .map-controls .route-info,
  .map-column .route-info {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom:10px;
  }

  /* Enforce images/iframes inside form/map not to expand */
  .move-layout img,
  .move-layout iframe,
  #map iframe,
  .additional-details-card img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* If a mysterious element has a huge inline width, clamp it */
  [style*="width: 790%"],
  [style*="width:790%"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* safety: make sure suggestion box fits mobile width */
  .suggestion-box {
    width: calc(100% - 4px) !important;
    left: 0 !important;
    right: 0 !important;
  }
}

/* ==========================================
   📦 STEP 2 - DESKTOP CSS
   ========================================== */


/* ========================================
   STEP 2: INVENTORY SELECTION
   ======================================== */
.step2-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step2-layout .inventory-column {
    flex: 0 0 100%;
}

.step2-layout .sidebar-column {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.inventory-layout {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-height: 600px;
}

.inventory-layout input[type="radio"] {
    display: none;
}

.inventory-tabs {
    width: 260px;
    background: linear-gradient(180deg, #f9f9f9 0%, #f3f4f6 100%);
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-shrink: 0;
}

.inventory-tabs .tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #444;
}

.inventory-tabs .tab-btn:hover {
    background: linear-gradient(90deg, #eef3ff 0%, #e0edff 100%);
    color: #002b5c;
}

.inventory-tabs img {
    width: 22px;
    height: 22px;
    filter: grayscale(60%);
    transition: filter 0.3s ease;
}

.inventory-tabs .tab-btn:hover img {
    filter: grayscale(0%);
}

#tab0:checked~.inventory-tabs label[for="tab0"],
#tab1:checked~.inventory-tabs label[for="tab1"],
#tab2:checked~.inventory-tabs label[for="tab2"],
#tab3:checked~.inventory-tabs label[for="tab3"],
#tab4:checked~.inventory-tabs label[for="tab4"],
#tab5:checked~.inventory-tabs label[for="tab5"],
#tab6:checked~.inventory-tabs label[for="tab6"],
#tab7:checked~.inventory-tabs label[for="tab7"] {
    background: linear-gradient(90deg, #e0edff 0%, #d0e4ff 100%);
    color: #002b5c;
    font-weight: 600;
    border-left: 4px solid #ff7f00;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#tab0:checked~.inventory-tabs label[for="tab0"] img,
#tab1:checked~.inventory-tabs label[for="tab1"] img,
#tab2:checked~.inventory-tabs label[for="tab2"] img,
#tab3:checked~.inventory-tabs label[for="tab3"] img,
#tab4:checked~.inventory-tabs label[for="tab4"] img,
#tab5:checked~.inventory-tabs label[for="tab5"] img,
#tab6:checked~.inventory-tabs label[for="tab6"] img,
#tab7:checked~.inventory-tabs label[for="tab7"] img {
    filter: grayscale(0%);
}

.inventory-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #fafbfc;
}

.tab-panel {
    display: none;
}

#tab0:checked~.inventory-content .tab0,
#tab1:checked~.inventory-content .tab1,
#tab2:checked~.inventory-content .tab2,
#tab3:checked~.inventory-content .tab3,
#tab4:checked~.inventory-content .tab4,
#tab5:checked~.inventory-content .tab5,
#tab6:checked~.inventory-content .tab6,
#tab7:checked~.inventory-content .tab7 {
    display: block;
}

.tab-panel ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.inventory-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #e5e7eb;
    padding: 12px 14px;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.inventory-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.12);
    transform: translateY(-2px);
}

.inventory-item:has(input[type="checkbox"]:checked) {
    border-color: #ff7f00;
    background: #fff4e6;
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.15);
}

.inventory-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    flex: 1;
}

.inventory-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff7f00;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-controls button {
    border: 2px solid #e5e7eb;
    background: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #555;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.quantity-controls button:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(251, 191, 36, 0.3);
}

.quantity-controls span {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.item-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
.added-items-list {
    padding: 0 16px 16px 16px !important;
    background: #ffffff;
    border-radius: 14px;
    width: 90%;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.added-items-list::-webkit-scrollbar {
    width: 8px;
}

.added-items-list::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.added-items-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.added-items-list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* .added-items-list h6 {
            color: #002b5c;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        } */

/* .added-category {
            margin-bottom: 14px;
        } */

/* .added-category-title {
            font-weight: 600;
            color: #002b5c;
            font-size: 13px;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 2px solid #e5e7eb;
        } */


/* ==========================================
   📦 COLLAPSIBLE ADDED ITEMS LIST
   ========================================== */


/* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
.added-items-list {
    padding: 16px;
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.item-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-top: 15px;
}

.item-list-header h6 {
    color: #002b5c;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Collapsible Category Header */
.added-category-title-collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    user-select: none;
}

.added-category-title-collapsible:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #60a5fa;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(96, 165, 250, 0.2);
}

.category-title-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #002b5c;
    font-size: 14px;
}

.collapse-icon {
    font-size: 16px;
    font-weight: 700;
    color: #0369a1;
    transition: transform 0.3s ease;
}

.added-category-title-collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

.category-item-count {
    background: #0369a1;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* Collapsible Wrapper */
.added-items-grid-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.added-items-grid-wrapper.open {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 16px;
}

/* Grid */
.added-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 4px;
}

.added-category {
    margin-bottom: 0;
}

.added-item-card {
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
}

.added-item-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.12);
}

.added-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.added-item-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 12px;
    word-wrap: break-word;
    flex: 1;
    margin-right: 5px;
}

.delete-item-btn {
    background: #fee2e2;
    border: none;
    color: #991b1b;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.delete-item-btn:hover {
    background: #fca5a5;
    color: white;
    transform: scale(1.1);
}

.added-item-field {
    margin-bottom: 5px;
}

.added-item-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 3px;
}

.added-item-field input[type="number"] {
    width: 100%;
    padding: 5px 7px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    background: white !important;
}

.added-item-field input[type="number"]:hover {
    border-color: #fbbf24 !important;
}

.added-item-field input[type="number"]:focus {
    border-color: #ff7f00 !important;
    box-shadow: 0 0 0 2px rgba(255, 127, 0, 0.1) !important;
    background: white !important;
}

.qty-display {
    background: #f3f4f6;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

/* Scrollbar Styling */
.added-items-list::-webkit-scrollbar {
    width: 8px;
}

.added-items-list::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.added-items-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.added-items-list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ==========================================
   📱 RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 767px) {

    /* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
    .added-items-list {
        max-height: 400px;
        padding: 14px;
    }

    .item-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .item-list-header h6 {
        font-size: 14px;
    }

    .added-category-title-collapsible {
        padding: 10px 12px;
    }

    .category-title-left {
        font-size: 13px;
    }

    .category-item-count {
        font-size: 10px;
        padding: 3px 8px;
    }

    .added-items-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    /* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
    .added-items-list {
        max-height: 350px;
        padding: 12px;
    }

    .added-category-title-collapsible {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .category-title-left {
        font-size: 12px;
        gap: 8px;
    }

    .collapse-icon {
        font-size: 14px;
    }
}

.added-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.added-item-card {
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
}

.added-item-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.12);
}

.added-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.added-item-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
    word-wrap: break-word;
    flex: 1;
    margin-right: 5px;
}

.delete-item-btn {
    background: #fee2e2;
    border: none;
    color: #991b1b;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.delete-item-btn:hover {
    background: #fca5a5;
    color: white;
    transform: scale(1.1);
}

.added-item-field {
    margin-bottom: 5px;
}

.added-item-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 3px;
}

.added-item-field input[type="number"] {
    width: 100%;
    padding: 5px 7px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    background: white !important;
}

.added-item-field input[type="number"]:hover {
    border-color: #fbbf24 !important;
}

.added-item-field input[type="number"]:focus {
    border-color: #ff7f00 !important;
    box-shadow: 0 0 0 2px rgba(255, 127, 0, 0.1) !important;
    background: white !important;
}

.qty-display {
    background: #f3f4f6;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.additional-details-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid #e5e7eb;
}

.additional-details-section h6 {
    color: #002b5c;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.additional-details-section textarea {
    width: 100%;
    min-height: 70px;
    padding: 8px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    resize: vertical;
    background: white !important;
}

.additional-details-section textarea:hover {
    border-color: #fbbf24 !important;
}

.additional-details-section textarea:focus {
    border-color: #ff7f00 !important;
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.1) !important;
    background: white !important;
}

/* ==========================================
   📦 STEP 2 - RESPONSIVE CSS
   ========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {

    /* ========================================
   STEP 2: INVENTORY SELECTION
   ======================================== */
    .step2-layout {
        gap: 15px;
    }

    .step2-layout .inventory-column {
        flex: 0 0 65%;
        max-width: 65%;
    }

    .step2-layout .sidebar-column {
        flex: 0 0 35%;
        max-width: 35%;
        position: relative;
        max-height: none;
    }

    .inventory-tabs {
        width: 220px;
    }

    .inventory-tabs .tab-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .tab-panel ul {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }


    /* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
    .added-items-list {
        max-height: none;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {

    /* ========================================
   STEP 2: INVENTORY SELECTION
   ======================================== */
    .step2-layout {
        flex-direction: column;
        gap: 20px;
    }

    .step2-layout .inventory-column,
    .step2-layout .sidebar-column {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        position: relative;
        max-height: none;
    }

    .inventory-layout {
        flex-direction: column;
        max-height: none;
    }

    .inventory-tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: none;
        border-bottom: 2px solid #ddd;
        padding:15px;
    }

    .inventory-tabs .tab-btn {
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
        font-size: 11px;
        white-space: nowrap;
        min-width: 80px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .inventory-tabs img {
        width: 20px;
        height: 20px;
    }

    .inventory-content {
        padding: 16px;
    }

    .tab-panel ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    /* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
    .added-items-list {
        max-height: none;
        padding: 14px;
    }

    .added-items-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .inventory-tabs .tab-btn {
        padding: 8px 10px;
        font-size: 10px;
        min-width: 70px;
    }

    .inventory-tabs img {
        width: 18px;
        height: 18px;
    }

    .inventory-content {
        padding: 12px;
    }

    .inventory-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .quantity-controls {
        width: 100%;
        justify-content: flex-end;
    }


    /* ========================================
   COLLAPSIBLE ADDED ITEMS LIST
   ======================================== */
    .added-items-list {
        padding: 12px;
    }
}

/* ==========================================
   📅 STEP 3 - DESKTOP CSS
   ========================================== */


/* ========================================
   STEP 3: CONTACT & SUMMARY
   ======================================== */
.step3-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step3-layout .contact-column-left {
    flex: 0 0 100%;
    max-width: 100%;
}

.step3-layout .summary-column-right {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}


/* ========================================
   CALENDAR DATE PICKER
   ======================================== */
.calendar-day-btn {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    padding: 4px 2px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 45px;
    position: relative;
    font-size: 10px;
    transition: all 0.2s ease;
}

.calendar-day-btn:hover {
    border-color: #fbbf24;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.15);
    transform: translateY(-1px);
}

.calendar-day-btn.selected {
    border-color: #2563eb;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.calendar-day-btn.today {
    background: #fffbeb;
}

.calendar-day-btn.selected.today {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calendar-day-btn .day-number {
    font-weight: 600;
    font-size: 11px;
}

.calendar-day-btn .day-price {
    font-weight: 700;
    font-size: 11px;
    margin-top: 1px;
}

.calendar-day-btn .best-price-badge {
    font-size: 7px;
    color: #f59e0b;
    margin-top: 1px;
}

.calendar-day-btn.selected .best-price-badge {
    color: #fef3c7;
}

.people-option-btn {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 8px 12px;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    margin-bottom: 6px;
}

.people-option-btn:hover {
    border-color: #fbbf24;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.15);
}

.people-option-btn.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.people-option-btn .icon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.people-option-btn .price {
    font-size: 15px;
}

.summary-section {
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.summary-section.ultra-compact {
    padding: 10px;
    margin-bottom: 12px;
}

.summary-section h4 {
    color: #002b5c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.summary-section.ultra-compact h4 {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 6px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
}

.summary-value {
    color: #1f2937;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}

.summary-items-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.summary-items-list li {
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.summary-items-list li strong {
    color: #374151;
}

.summary-items-list li span {
    color: #6b7280;
}

.edit-step-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    float: right;
    position: relative;
}

.edit-step-btn:disabled,
.edit-step-btn[disabled] {
    background: linear-gradient(135deg, #dddddd 0%, #dddddd 100%);
}

.edit-step-btn:disabled,
.edit-step-btn[disabled]:hover {
    background: linear-gradient(135deg, #dddddd 0%, #dddddd 100%);
    box-shadow: none;
}

.calendar-day-btn.disabled-day {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}


.edit-step-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================
   📅 STEP 3 - RESPONSIVE CSS
   ========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {

    /* ========================================
   STEP 3: CONTACT & SUMMARY
   ======================================== */
    .step3-layout {
        gap: 15px;
    }

    .step3-layout .contact-column-left {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .step3-layout .summary-column-right {
        flex: 0 0 40%;
        max-width: 40%;
        position: relative;
        max-height: none;
    }

    .summary-section {
        width: 100%;
        padding: 16px;
    }

    .summary-section h4 {
        font-size: 16px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {

    /* ========================================
   STEP 3: CONTACT & SUMMARY
   ======================================== */
    .step3-layout {
        flex-direction: column;
        gap: 20px;
    }

    .step3-layout .contact-column-left,
    .step3-layout .summary-column-right {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        position: relative;
        max-height: none;
    }

    .summary-section {
        width: 100%;
        padding: 16px;
        margin-bottom: 16px;
    }

    .summary-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .summary-row {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }

    .summary-label,
    .summary-value {
        font-size: 13px;
        text-align: left;
    }

    .summary-value {
        margin-top: 2px;
    }

    .edit-step-btn {
        padding: 6px 14px;
        font-size: 12px;
        top: -6px;
    }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {

    /* ========================================
   CALENDAR DATE PICKER
   ======================================== */
    .calendar-day-btn {
        min-height: 40px;
        padding: 3px 1px;
    }

    .people-option-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .summary-section {
        padding: 14px;
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .summary-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .summary-row {
        padding: 6px 0;
    }

    .summary-label,
    .summary-value {
        font-size: 12px;
    }

    .edit-step-btn {
        padding: 5px 12px;
        font-size: 11px;
        border-radius: 6px;
    }
}

/* ==========================================
   📝 BASE FORM STYLES (ALL STEPS)
   ========================================== */


/* ========================================
   GLOBAL FORM STYLES
   ======================================== */
.fieldset-content {
    margin-left: 0;
}

.booking-form-area {
    text-align: left;
}

.booking-form-area .form-flex {
    margin: 0;
}

.booking-form-area .form-flex .form-group {
    padding: 0;
}

.booking-form-area .form-label {
    margin-bottom: 0;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
}

.booking-form .content {
    width: 70%;
}

.booking-form .sidebar-column {
    width: 30%;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="mobile"],
input[type="tel"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
.select-box,
select.select-box,
.form-control {
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
    background: white !important;
    font-size: 14px;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="mobile"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="number"]:hover,
.select-box:hover,
select.select-box:hover,
.form-control:hover {
    border-color: #fbbf24 !important;
    background: white !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="mobile"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="number"]:focus,
.select-box:focus,
select.select-box:focus,
.form-control:focus {
    outline: none !important;
    border-color: #ff7f00 !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.12) !important;
}

textarea {
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 14px !important;
    transition: all 0.3s ease !important;
    min-height: 120px;
    resize: vertical;
    font-size: 14px;
    background: white !important;
}

textarea:hover {
    border-color: #fbbf24 !important;
    background: white !important;
}

textarea:focus {
    outline: none !important;
    border-color: #ff7f00 !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.12) !important;
}

.property-dropdown .select-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.dropdown-menu-property {
    border-radius: 12px !important;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   ✅ CHECKBOXES & FORM CONTROLS
   ========================================== */

.form-check {
    padding: 8px 10px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    position: relative !important;
}

.form-check:hover {
    background: #fffbeb !important;
}

.step4-layout .form-check-input {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
    accent-color: #ff7f00 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    padding: 8px;
}

.form-check-label {
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
    line-height: 1.4 !important;
}

.checkbox-form .form-check {
    margin-top: 8px !important;
    padding: 6px 8px !important;
}

.checkbox-form .form-check-input {
    width: 16px !important;
    height: 16px !important;
}

.checkbox-form .form-check-label {
    font-size: 13px !important;
}

/* ==========================================
   🎯 SERVICE ACCORDION - COLLAPSIBLE
   ========================================== */


/* ========================================
   SERVICES ACCORDION
   ======================================== */
.services-accordion-wrapper {
    margin-bottom: 20px;
}

.service-accordion-item {
    margin-bottom: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* 
.service-accordion-header:hover {
    background: linear-gradient(135deg, #fff4e6 0%, #ffedd5 100%);
}

.service-accordion-item.open .service-accordion-header {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.service-accordion-item.completed .service-accordion-header {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
} */

.service-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info i {
    font-size: 18px;
    color: #ff7f00;
}

.service-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.service-price-tag {
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
}

.service-accordion-item.open .service-accordion-content {
    max-height: 200px;
    padding: 16px;
}

.service-description {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-buttons {
    display: flex;
    gap: 10px;
}

.service-btn-no,
.service-btn-yes {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid;
}

.service-btn-no {
    background: white;
    border-color: #e5e7eb;
    color: #6b7280;
}

.service-btn-no:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

.service-btn-yes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
}

.service-btn-yes:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .service-accordion-header {
        padding: 10px 12px;
    }

    .service-name {
        font-size: 13px;
    }

    .service-price-tag {
        font-size: 12px;
        padding: 3px 10px;
    }

    .service-buttons {
        flex-direction: column;
    }
}


/* ==========================================
   🔘 BUTTONS SECTION
   ========================================== */

.btn-view-cubic-sheet,
.btn-close-sheet,
.btn-edit-step2 {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 12px;
}

.btn-view-cubic-sheet {
    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);
    color: white;
}

.btn-view-cubic-sheet:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ffaa00 100%);
    transform: translateY(-1px);
}

.btn-edit-step2 {
    background: rgb(255, 127, 0);
    color: white;
}

.btn-edit-step2:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
}

.btn-okay-proceed {
    background: rgb(255, 127, 0);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 12px;
}

.btn-okay-proceed:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/*.btn-view-added-items {*/
/*    background: linear-gradient(135deg, #ff7f00 0%, #ff9500 100%);*/
/*    color: white;*/
/*    padding: 14px 32px;*/
/*    border-radius: 12px;*/
/*    font-weight: 700;*/
/*    font-size: 16px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);*/
/*}*/

/*.btn-view-added-items:hover {*/
/*    background: linear-gradient(135deg, #ff9500 0%, #ffaa00 100%);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);*/
/*}*/

.btn-view-added-items i {
    font-size: 18px;
}

/* ==========================================
   🗂️ CUBIC SHEET MODAL
   ========================================== */


/* ========================================
   CUBIC SHEET MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: block;
}

.cubic-sheet-professional {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 800px;
    max-height: 95vh;
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    overflow: hidden;
}

.cubic-sheet-professional.show {
    display: block;
}

.cubic-sheet-header {
    background: white;
    padding: 12px 20px;
    border-bottom: 3px solid #ff7f00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cubic-sheet-title {
    font-size: 22px;
    font-weight: 700;
    color: #002b5c;
    margin: 0;
}

.modal-close-btn {
    background: #fee2e2;
    border: none;
    color: #991b1b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.modal-close-btn:hover {
    background: #fca5a5;
    color: white;
    transform: rotate(90deg);
}

.cubic-sheet-body {
    padding: 16px 20px;
    overflow-y: auto;
    max-height: calc(95vh - 140px);
    background: white;
}

.cubic-category-section {
    margin-bottom: 12px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.cubic-category-bar {
    background: #ff7f00;
    color: white;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cubic-items-table {
    width: 100%;
    border-collapse: collapse;
}

.cubic-items-table tbody {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px;
}

.cubic-items-table tbody tr {
    display: flex;
    align-items: center;
    padding: 3px 6px;
    border-bottom: none;
    font-size: 11px;
    line-height: 1.3;
}

.cubic-items-table td {
    padding: 0;
    margin: 0;
    color: #1f2937;
}

.cubic-items-table td:first-child {
    font-weight: 600;
    flex: 1;
    font-size: 11px;
}

.cubic-items-table td:nth-child(2) {
    font-weight: 600;
    margin: 0 8px;
    font-size: 11px;
    min-width: 15px;
    text-align: center;
}

.cubic-items-table td:nth-child(3),
.cubic-items-table td:nth-child(4) {
    display: none;
}

.cubic-grand-total {
    background: #ff7f00;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cubic-comments-section {
    background: #ff7f00;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.cubic-comments-bar {
    color: white;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 12px;
}

.cubic-comments-content {
    padding: 10px 12px;
    background: white;
    color: #374151;
    font-size: 11px;
    line-height: 1.4;
}

.cubic-sheet-footer {
    padding: 10px 20px;
    background: #f9fafb;
    border-top: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   📱 FORM RESPONSIVE (ALL STEPS)
   ========================================== */

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .form-row {
        margin-bottom: 1.3rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select.select-box,
    .form-control {
        padding: 11px 14px !important;
        font-size: 13px !important;
    }

    .service-card .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .btn-view-added-items {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .form-row {
        margin-bottom: 1.2rem;
    }

    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="number"],
    select.select-box,
    .form-control,
    textarea {
        padding: 11px 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    .property-dropdown .select-box {
        font-size: 14px;
        padding: 11px 14px !important;
    }

    .service-card {
        padding: 16px;
        margin-bottom: 16px;
    }

    .service-card .row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .form-check {
        padding: 10px 12px !important;
    }

    .form-check-input {
        width: 18px !important;
        height: 18px !important;
    }

    .form-check-label {
        font-size: 14px !important;
    }

    .wizard .actions {
        margin-top: 20px;
    }

    .wizard .actions ul li a {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-view-added-items {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .cubic-sheet-professional {
        width: 98%;
        max-height: 90vh;
    }

    .cubic-items-table tbody {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .form-row {
        margin-bottom: 1rem;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="number"],
    select.select-box,
    .form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }

    textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
        min-height: 100px !important;
    }

    .service-card {
        padding: 14px;
        border-radius: 10px;
    }

    .form-check {
        padding: 8px 10px !important;
    }

    .form-check-label {
        font-size: 13px !important;
    }

    .wizard .actions ul li a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-view-added-items {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cubic-sheet-professional {
        width: 100%;
        max-height: 95vh;
        border-radius: 0;
    }

    .cubic-items-table tbody {
        grid-template-columns: 1fr;
    }

    .cubic-sheet-title {
        font-size: 18px;
    }

    .modal-close-btn {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}


.service-accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 0;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.service-accordion-item:has(input[type="checkbox"]:checked) {
    background-color: #ededed;   /* light blue */
    border-color: #0284c7;
}

.service-accordion-item.completed {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.service-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.service-accordion-item input[type="checkbox"]:checked + .service-accordion-header {
    background-color: #ededed;
}



#map.map-placeholder {
    width: 90%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;          
    position: relative;
    background: #f1f5f9;
}

/* 🖼️ IMAGE SHOULD FILL ENTIRE BOX */
#map.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;        
    display: block;
}
