@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
body {
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  margin: 0;
  padding:0px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
*{
  box-sizing: border-box;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  transition: all 0.3s ease;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  border: 2px solid #f0f0f0;
}

.step.active .step-number {
  background-color: #FFA146;
  border-color: #FFA146;
  color: white;
}

.step.active {
  color: #000;
}

.step.completed .step-number {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: none;
  padding: 20px 25px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

p.subtitle {
  text-align: center;
  color: #032855;
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 29px;
  font-weight: bold;
}

.form-section h2 {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    line-height: 28px;
}
.thankyou-container.page_wrapper {
    width: 943px;
}
#quoteForm .form-group input {
    width: 100%;
}
#quoteForm .form-group textarea{
    width:100%;
    height: 140px;
}
form#quoteForm .form-group label, .access_selected_options label, .stairs_options label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}
.rooms-panel1 label {
    display: inline-block;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    width: 188px;
    cursor: pointer;
}
input, select, textarea {
  width: 50%;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  height: 50px;
  background: #fff;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #FFA146;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 161, 70, 0.2);
}

input[type="date"], input[type="text"] {
  width: 98%;
}

input[type="checkbox"], input[type="radio"] {
  height: auto;
  width: auto;
}

.inline-fields {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.inline-fields select, .inline-fields textarea {
  width: 100%;
}

/* Validation Styles */
.form-group {
  margin-bottom: 15px;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

input.error, select.error, textarea.error {
  border-color: #dc3545;
}

.btn {
  background: #FFA146;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e8913e;
}

.btn-gray {
  background: #6c757d;
  margin-top: 10px;
}

.btn-gray:hover {
  background: #5a6268;
}

.btn-secondary {
  background: #6c757d;
  margin-right: 10px;
  width: auto;
}

.btn-secondary:hover {
  background: #5a6268;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 8px;
}

.radio-group {
  margin-bottom: 15px;
}

.radio-group label {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.optional-type-details {
  margin-top: 15px;
}

.add-stop {
  color: #FFA146;
  cursor: pointer;
  font-weight: bold;
  margin: 15px 0;
  display: inline-block;
}

.add-stop:hover {
  text-decoration: underline;
}

.stop-section {
  position: relative;
  margin-top: 20px;
  border: 2px solid #FFA146 !important;
}

.remove-stop {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #FFA146;
}

.pickup-type button {
  background: #e5e7eb;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
}

.pickup-type button.active {
  background: #FFA146;
  color: #fff;
}

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-secondary {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 414px){
  input[type="text"] {
    width: 92%;
  }
  
  input, select, textarea {
    width: 100%;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn-secondary, .btn, .btn-gray {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
/* =========================
Topbar
========================= */

.topbar {
    background: #041c3c;
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.topbar-right i {
    color: #fff;
}
.orange, .orange a, .orange b {
    color: #ffa146 !important;
}
.topbar-container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* LOGO */
.logo img {
    width: 150px;
}

/* RIGHT SECTION */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #fff;
}

/* CONTACT */
.contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact i {
  font-size: 16px;
  margin-right: 4px;
}

.contact span {
  color: #ffffff;
  opacity: 0.9;
}

.contact .tel {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

/* WHATSAPP */
.whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
}
.whatsapp a {
  text-decoration: none;
  font-weight: 700;
}

/* SOCIAL */
.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}

.social a:hover,
.whatsapp a:hover,
.contact .tel:hover {
  opacity: 0.8;
}

/* =========================
Topbar End
========================= */


/* =========================
Thank You
========================= */

.thankyou-section {
    background: #ffa146;
    min-height: calc(100vh);
    display: flex;
    align-items: center;
}
.thankyou-container h1 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 800;
}

.thankyou-container p {
    color: #041c3c;
    font-size: 31px;
    font-weight: 700;
    line-height: 38px;
}

/* =========================
Thank You End
========================= */
.page_wrapper{
    width: 1320px;
    margin: 0 auto;
    padding: 60px 0;
}

.rooms-panel1, .items-panel, .summary-panel {
    display: inline-block;
    vertical-align: top;
}
      .rooms-panel,
      .items-panel,
      .summary-panel {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        margin:0px 10px;
      }
      .rooms-panel1 {
        width: 24%;
        border: 1px solid #e9e9e9;
        padding: 15px;
        border-radius: 10px;
    }

      .rooms-panel {
        width: 25%;
        border-right: 2px solid #f1f1f1;
      }

      .items-panel {
        width: 50%;
      }

      .summary-panel {
        width: 25%;
        border-left: 2px solid #f1f1f1;
      }

.items-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    /* gap: 15px; */
    margin-top: 20px;
    max-height: 660px;
    overflow-y: auto;
    overflow-x: hidden;
}
div#items-container .item-card {
    display: inline-block;
    vertical-align: top;
    width: 31%;
    margin: 0 5px 10px;
    box-sizing: border-box;
    word-break: break-all;
}
.move-details p img {
    float: left;
}
.move-details {
    max-height: 350px;
    overflow-y: auto;
}
.item-card {
    border: 1px solid #f3f3f3 !important;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

      .item-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
      }

      .qty-control {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
      }
      .room-item {
        cursor: pointer;
      }
      .room-item.active {
        background: #ffa146;
        color: #fff;
      }
a.req_quote img {
    position: relative;
    top: 7px;
    left: 6px;
}
      .filter-btns button.active {
        background: #ffa146;
        color: #fff;
      }
input#search-item {
    width: 96%;
    padding: 0px 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc !important;
    margin-bottom: 15px;
    font-size: 14px;
    height: 50px;
    background: #fff;
}
input#search-item:focus, .qty-control input:focus {
    outline: none !important;
}
      .filter-btns button.active ,
      button#confirm-add-rooms{
        background: #ffa146;
        color: #fff;
        border: none;
        padding: 10px 22px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        margin-top: 10px;
        margin-right: 6px;
      }

.btn_items {
        background: transparent;
        color: #032855;
        border: none;
        padding: 10px 22px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        margin-top: 10px;
        border: 1px solid #ffa146;
      }

      .qty-control {
        display: flex;
        justify-content: center;
        align-items: initial;
        margin-top: 10px;
      }
.qty-control input {
    width: 50px;
    margin: 0 10px;
    text-align: center;
    border: 1px solid #908f9d !important;
    font-size: 14px;
    border-radius: 4px;
    height: 24px;
}
      .rooms-panel, .summary-panel{
        width: 24%;
		  border: 1px solid #e9e9e9;
      }
      .items-panel {
        width: 50%;
        border: 1px solid #e9e9e9;
      }

      .room-item.active {
        background: #ffa146;
        color: #fff;
        padding: 6px 20px;
        margin: 10px 0;
        border-radius: 4px;
      }
.room-item {
    cursor: pointer;
    margin: 10px 0;
    padding: 5px 15px !important;
    font-size: 15px;
    font-weight: 500;
    color: #323232;
}
div#rooms-list {
    max-height: 560px;
    overflow-y: auto;
    margin-bottom: 20px;
}
span.room-count {
    margin-right: 15px;
    font-size: 18px;
}
#rooms-header label {
    width: 222px;
}
span.room-count {
    margin-right: 15px;
}
.room-item.active label {
    color: #fff;
}
 .room-item img,.move-details img,.inventory-summary img {
    margin-bottom: -4px;
    margin-right: 4px;
}
.summary-panel a {
    background: #032855;
    color: #fff;
    height: 60px;
    border-radius: 7px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    line-height: 60px;
}
.qty-control button {
    background: #f1f5fe;
    border: 1px solid #d8e3f6 !important;
    border: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}
.move-details p {
    font-size: 15px;
    margin-top: 0;
}
.additional-comments label {
    margin-bottom: 5px;
    display: block;
}
.item-card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}
      .item-card {
        border: 1px solid #e9e9e9;
      }
      /* .item-card p {
        min-height: 50px;
      } */

      .item-card img {
        display: none;
      }
      #rooms-header {
    background: #f0f6fd;
    padding: 10px 19px;
    border-radius: 4px;
    border: 1px solid #d7e4f3;
    margin: 20px 0;
}
.inventory-summary {
    background: #f0f6fd;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #d7e3f3;
    margin: 20px 0;
    font-size: 15px;
    font-weight: 500;
    color: #323232;
}
.items-panel h3, .rooms-panel1 h3, .summary-panel h3 {
    color: #323232;
    font-weight: 700;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.rooms-panel1 p {
    margin-top: 0;
}
#rooms-header li {
    list-style-type: none;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #323232;
}
      h3 {
        font-size: 20px;
      }
.grid_btn {
    text-align: right;
}
.modal-header h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: bold;
}
#add-room-btn {
    border: 0px solid #ffa146;
    background: transparent;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 15px;
    color: #323232;
    font-weight: 600;
    cursor: pointer;
}
.modal-footer {
    text-align: right;
}
button#add-room-btn i {
    font-size: 24px;
    color: #ffa146;
    margin-left: 10px;
    position: relative;
    top: 3px;
}
      .room-item img {
            transform: scale(1.2);
        }
      .room-item.active img {
        filter: brightness(0) invert(1);
      }
      #rooms-header ul li label img {
    margin-bottom: -6px;
}
      #rooms-header ul{
    padding: 0;
}

      /* New styles for search results */
      .search-result-room {
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
        font-style: italic;
      }
      
      .search-results-header {
        grid-column: 1 / -1;
        font-weight: 600;
        margin: 10px 0;
        padding: 8px 12px;
        background: #f0f6fd;
        border-radius: 8px;
      }
      
      .loading {
        opacity: 0.6;
        pointer-events: none;
      }

    .item-card[data-room-id="1"] img,
    .item-card[data-room-id="2"] img,
    .item-card[data-room-id="4"] img,
    .item-card[data-room-id="3"] img {
        display: unset;
    }
    
    /********** CSS – Simple popup styling **********/
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .modal-box {
      background: #fff;
      width: 700px;
      border-radius: 10px;
      padding: 20px;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-modal {
      font-size: 22px;
      cursor: pointer;
    }

    #available-rooms {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .add-room-item {
      background: #f6f7f9;
      padding: 12px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
    }

    .add-room-item.active {
      background: #ffa146;
      color: #fff;
    }
    #rooms-header li label, #rooms-header li span {
    display: inline-block;
    vertical-align: middle;
}
.summary-panel {
    padding: 15px;
    margin: 0;
}
.additional-comments textarea {
    width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    padding: 10px;
    height: 80px;
}

@media screen and (max-width:767px){
.topbar {
    display: inline-block;
    padding: 15px;
    width: 100%;
}
div#items-container .item-card {
    width: 100%;
    margin: 0 0px 10px !important;
}
div#addRoomsModal .modal-body {
    max-height: 450px;
    overflow: auto;
    padding-right: 10px;
}
.modal-box {
    width: 95%;
}
.contact, .whatsapp, .social {
    display: inline-block;
}
.rooms-panel1 label {
    width: 82%;
}
#rooms-header label {
    width: 92%;
}
.contact .tel, .contact span {
    font-size: 14px;
    margin: 0 2px;
}
.rooms-panel, .items-panel, .summary-panel {
    margin: 0;
    padding: 0px;
}
.contact {
    margin:0;
}
.whatsapp, .social a {
    margin-right: 10px;
}
.topbar-container {
    max-width: 100%;
    width: 100%;
    display: inherit;
}
.topbar-right {
    display: block;
    width: 100%;
}
.page_wrapper {
    width: 100% !important;
    padding: 15px !important;
    max-width: 100%;
    box-sizing: border-box;
}
.rooms-panel1, .items-panel, .rooms-panel, .summary-panel {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
}
.items-panel h3, .rooms-panel1 h3, .summary-panel h3 {
    padding: 0;
    margin: 0;
    margin-bottom: 10px !important;
}
.topbar-right, .logo {
    text-align: center;
}
.topbar-right i {
    margin-right: 5px;
}

.items-grid, #available-rooms {
    grid-template-columns: inherit;
}
.thankyou-container h1 {
    font-size: 30px;
}
#quoteForm .form-section {
    padding: 15px;
}
.thankyou-container h1 br{
  display: none;
}
section.thankyou-section {
    text-align: center;
}
.thankyou-container p {
    font-size: 20px;
    line-height: 28px;
}
}