h2,
h3,
h4,
h6 {
  font-family: var(--toyota-semi-bold);
}
h4 {
  font-size: 18px;
}

/* ========== Service Booking – Hero & Steps (image design) ========== */
.sb-hero-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 100px; /* push banner below fixed header (same as contact page) */
}
.sb-hero-banner .sb-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sb-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.sb-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  color: #fff;
}
.sb-hero-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.95;
}
.sb-hero-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.sb-hero-desc {
  font-size: 16px;
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
  opacity: 0.95;
}

/* Progress steps */
.sb-steps-bar {
  padding: 56px 24px 0;
  margin-bottom: 40px;
  max-width: 760px;
  display: flex;
  justify-content: center;
}
.sb-steps-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.sb-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d91212;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-step-active .sb-step-num {
  background: #d91212;
}
.sb-step-label {
  font-size: 14px;
  font-weight: 600;
  color: #d91212;
}
.sb-step-active .sb-step-label {
  color: #d91212;
}
.sb-step-line {
  width: 48px;
  height: 2px;
  background: #e8e8e8;
  flex-shrink: 0;
}

/* Form card */
.sb-form-card-wrap {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.sb-form-card {
  background: #fff;
  padding: 40px 0px;
}
.sb-section {
  margin-bottom: 32px;
}
.sb-section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #d912121a;
  color: #d91212;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
}
.sb-section-desc {
  font-size: 14px;
  color: #666;
  margin: -8px 0 16px 0;
  font-weight: 400;
}

/* Customer info – two fields side by side */
.sb-section-fields {
  display: flex;
  gap: 24px;
}
.sb-section-fields .input-field-set {
  flex: 1;
}
.sb-section-fields label {
  font-size: 14px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 8px;
}
.sb-section-fields input {
  width: 100%;
  padding: 12px 0 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-size: 15px;
}
.sb-section-fields input::placeholder {
  color: #999;
}
.sb-section-fields input:focus {
  outline: none;
  border-bottom-color: #333;
}

/* Car section – placeholder box */
.sb-section-car .information-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  text-align: center;
}
.sb-section-car .information-result.add-border {
  background-color: #fff;
  background-size: 21% 65%;
  background-position: right center;
}
.sb-section-car .information-result img {
  margin: 0 auto 12px;
  opacity: 0.6;
  max-height: 180px;
  width: auto;
}
.sb-no-car-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
  display: block;
}
.sb-section-car .information-result.add-border .sb-no-car-text,
.sb-section-car .information-result.add-border img {
  display: none;
}
.sb-section-car .information-result.add-border {
  border: none;
  background: transparent;
  padding: 0;
}
.sb-car-pill {
  display: flex;
  width: 100%;
  align-items: center;
  /* justify-content: space-between; */
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
}
.sb-car-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffe6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-car-pill-icon .bi {
  color: #e60012;
  font-size: 16px;
}
.sb-car-pill-body {
  /* flex: 1; */
  min-width: 0;
  text-align: left;
}
.sb-car-pill-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--toyota-semi-bold);
}
.sb-car-pill-meta {
  margin-top: 2px;
  font-size: 12px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-car-pill-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 16px;
  padding: 0 4px;
  cursor: pointer;
}
.sb-car-pill-remove:hover {
  color: #666;
}
.sb-add-car-outer {
  margin-top: 12px;
}
.sb-add-car-btn {
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  padding: 10px 24px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sb-add-car-btn:hover {
  background: #f5f5f5 !important;
  border-color: #999 !important;
}

/* Service type section – radio row + View Details */
.service-type-section .service-box {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.service-type-section .service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
}
.service-type-section .checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-type-section .checkbox.selected {
  background: #e60012;
  border-color: #e60012;
}
.service-type-section .service-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.service-type-section .open_btn2 {
  background: none;
  border: none;
  color: #e60012;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-type-section .open_btn2:hover {
  text-decoration: underline;
}
.other-service {
  margin-top: 20px;
  margin-bottom: 30px;
}
.other-service .sb-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.other-service textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}
.other-service textarea::placeholder {
  color: #999;
}

/* Date and time trigger */
.sb-section-date .sb-date-time-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  margin-bottom: 16px;
}
.sb-section-date .sb-date-time-trigger .bi-calendar3 {
  font-size: 18px;
  color: #666;
}
.sb-section-date .sb-date-time-trigger .sb-date-placeholder,
.sb-section-date .sb-date-time-trigger .sb-date-value {
  flex: 1;
  font-size: 15px;
  color: #333;
}
.sb-section-date .sb-date-time-trigger .sb-date-placeholder {
  color: #999;
}
.sb-section-date .sb-date-time-trigger .toggle-icon {
  font-size: 14px;
  color: #666;
}

/* Submit + privacy */
.form-submit-section {
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid #eee;
  text-align: center;
}
.form-submit-section .submit-service-booking-btn {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e60012;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit-section .submit-service-booking-btn:hover {
  background: #c00;
}
.sb-privacy-text {
  font-size: 12px;
  color: #999;
  margin: 16px 0 0 0;
  line-height: 1.5;
}
.sb-privacy-text a {
  color: #e60012;
  text-decoration: none;
}
.sb-privacy-text a:hover {
  text-decoration: underline;
}

.service-booking h2 { font-size: 12px; font-family: var(--toyota-semi-bold); padding-bottom: 10px; }
.service-booking h3 {
  font-size: 18px;
  line-height: 32px;
  padding-top: 10px;
  padding-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.input_group {
  display: flex;
  gap: 10px;
}
.open_btn2{background: transparent; color:#063d6a; border:none;}

 .select-time-only input[type="time"] {
    width: 100%;
    border: 1px solid #ccc; 
    padding:15px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 20px;
  }

.input_group input,
.form-group input {
  width: 100%;
  background-color: #eee;
  border: none;
  outline: none;
  border-bottom: solid 1px #000;
  padding: 17px 10px;
}

.web-form-container {
  max-width: 1000px;
  margin: 0px auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.input_group .input-field-set {
  width: 50%;
}

.input_group .select_field {
  width: 100%;
}

.input_group .input-field-set label {
  margin-bottom: 10px;
  display: block;
  font-weight: 100;
  margin-top: 12px;

}

.input-field-set > label span {
  color: var(--red-color);
}

.add-car {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 8px 30px;
  border: none;
  text-transform: uppercase;
  min-width: 120px;
  text-align: center;
  border-radius: 4px;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index:1200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);

}
.modal-header-top{display: flex; justify-content: space-between;align-items: center;}

/* Modal Content */
.modal-content {
  position: relative;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-content label {
  font-weight: 300;
}

.modal-content .close {
  position: absolute;
  right: 20px;
  font-size: 32px;
  line-height: 1.5;
  cursor: pointer;
  top:20px;
}

.modal-content h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  outline: none;
  border-bottom: solid 1px #eee;
  padding: 16px 16px 16px 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 15px;

}

.car-information p {
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: 300;
}

.chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.dropdown.open .chevron {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 7px 15px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #eee;
}

.save-btn {
  width: 100%;
  padding: 14px;
  background: var(--red-color);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: not-allowed;
}

.save-btn:disabled {
  background: #eee;
}

/* Open Modal Trigger Button (optional) */
.add-car {
  margin: 40px auto;
  display: block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.manual-btn {
  background-color:#eee;
  color:#000;
}


.manual-btn,
.autometic-btn {
  width: 50%;
  border: none;
  padding: 12px 15px;
  display: block;
  text-transform: uppercase;
  border-radius: 3px;
}

.add_button_type {
  display: flex;
  gap: 1px;
  background-color: #fff !important;
  min-height: 80px;
  align-items: center;
}

.active-btn-choice{background:#000!important; color:#fff!important;}
.information-result{background-repeat: no-repeat; background-position:right; background-size:21% 65%; }

.information-result img {
  margin: 10px auto;
}

.information-result p {
  font-weight: 100;
  margin: 4px 0px;
}

.information-result p:first-child {
  font-family: var(--toyota-semi-bold);
}


.information-result p:nth-child(2) {
  font-family: var(--toyota-semi-bold);
}

.information-result p:first-child {
  font-weight: 600;
}

.information-result p+button {
  color: var(--red-color);
  background: transparent;
  margin: 10px 0px;
  border: none;
  font-size: 16px;
}


.max-100-container {
  max-width: 1000px;
}

.service-type-section h2 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 12px;
}

.service-type-section p {
  margin-bottom: 20px;
  color: #444;
  font-weight: 100;
}

.service-box {
  border: 1.5px solid #ccc;
  padding: 0px 20px;
  border-radius: 4px;

  cursor: pointer;
  transition: border 0.3s;

}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-info h3 {
  margin: 0;
}

h2 {
  font-size: 18px;
}

.service-info a {
  color: #063d6a;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  font-family: var(--toyota-semi-bold);
}

.checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--red-color);
  border-radius: 2px;
  position: relative;
}

.checkbox.selected {
  background-color: var(--red-color);
}

.checkbox.selected::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 1px;
  left: 3px;
  line-height: 1;
}

.dropdown-list {
  display: none;
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.dropdown-list li {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 15px;
  color: #333;
}

.dropdown-list li:last-child {
  border-bottom: none;
}

.dropdown-list li:hover {
  background-color: #efefef;
}
.dropdown-list-service-booking{position: absolute; background-color: #fff; width: 100%; top:100%; border-top: solid 1px #000;}
.my-dropdown{position: relative;}

/*---------service-popup-----------*/

.list_item_content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 20px 20px;
}

.list_one_item {
  display: none;
}

.list_item_content .list_one_item li {
  list-style: disc !important;
  margin-bottom: 6px;
}

.show-image-data {
  display: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
}

.modala-car-parts {
  background-color: rgba(192, 192, 192, 0.501);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  z-index: 1200;
}

.modal-slide-box {
  display: flex;
  flex-direction: column;
  width: 500px;
  max-width: calc(100vw - 32px);
  max-height: 500px;
  min-height: 500px;
  background-color: #fff;
  padding-bottom: 0;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.modal-header-list h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.item-slide-list {
  color: var(--red-color);
  font-family: 'Montserrat', sans-serif;
  ;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.modal-header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 25px 20px;
}

.my_tab_button {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.my_tab_button button {
  border: none;
  border-radius: 4px;
  color: var(--dark-color);
  padding: 10px 30px;
  display: block;
  width: 50%;
}

.active_button {
  background-color: black;
  color: var(--light-color) !important;
}

.modal-slide-box .list-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-bottom: solid 1px silver;
  border-top: solid 1px silver;
  padding: 15px 20px;
  margin-bottom: 16px;
}

.list-item-data {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
}

.modal-slide-box .list-item-data li,
.modal-slide-box .list_one_item li,
.modal-slide-box .data-here-list li {
  list-style: disc;
  padding-left: 15px;
}

.modal-slide-box .data-here-list {
  padding: 0;
  margin: 0;
}

.list-slider button {
  background: transparent;
  border: none;
}


.add-border{padding:20px; border:solid 1px #eeee;}

.service-info {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.service-info h4 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #393536;

}

.service-box ul {
  display: none;
}
ul.dropdown-list-service-booking,
.form-group ul.dropdown-menu {
  max-height: 250px;
  overflow-y: auto;
}
.other-service textarea {
  width: 100%;
  padding: 12px 20px;
  display: block;
}

.service-box ul,
li {
  list-style: none;
  padding-left: 0px;
}

.service-box ul li {
  padding: 10px 10px;
  margin: 1px 0px;
}

.service-box ul li:hover {
  background-color: #eee;
}

.select-list {
  padding:15px 20px 15px;
  background-color: #eee;
  margin-bottom: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-list.disabled {
  pointer-events: none;
}


#submitDateBtn{background-color: var(--red-color); margin-top: 20px; color:#fff; padding:20px; display: block; width:100%; border-radius: 6px; border:none; cursor: pointer;}

/*-----------date-time--------*/

.date-time-popup {
  background-color: rgba(33, 32, 32, 0.352);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  display: none;
}

.date-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  border: 1.5px solid #ccc;
  padding: 15px;
}

.service-date-time {
  max-width: 622px;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  min-height: 520px;
}

.calendar-nav button {
  background-color: transparent;
  border: none;
}

.date-time-header {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
}
.no-scroll {
  overflow: hidden !important;
}
.date-section p{
  font-weight: 600;
  font-size:14px;
  margin-bottom:6px;
}
.class-no-data-here{text-align: center;display: flex; justify-content: center; flex-direction: column; align-items: center;}
.close-btn-time {
  cursor: pointer;
  font-size: 34px;
  line-height: 21px;
  color: #000;
  font-weight: bold;
}
.select-list-date{font-size: 18px!important;}
.date-section p {
  font-size: 14px;
  color: #555;
  padding-top: 20px;
}

.time-section {
  margin-top: 20px;
}

.time-section-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.time-dropdowns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.time-select {
  flex: 1 1 30%;
  min-width: 90px;
}

.time-select label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.time-select select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: #fff;
}

.time-hint {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
}

.time-error {
  font-size: 12px;
  color: #e60012;
  margin-top: 4px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin: 1rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
  text-align: center;
  min-height: 328px;
}

.calendar-grid div {
  padding: 10px;
  border-radius: 6px;
  min-height: 40px;
  box-sizing: border-box;
}

.empty-cell {
  visibility: hidden;
  pointer-events: none;
}

.day-name {
  font-weight: 600;
  color: #999;
}

.day-cell {
  cursor: pointer;
}

.day-cell:hover {
  background-color: #ddd;
}

.day-cell.selected {
  background-color: #111;
  color: white;
  font-weight: bold;
}



@media(max-width:620px) {
  .sb-hero-title {
    font-size: 28px;
  }
  .sb-hero-content {
    padding: 32px 20px;
  }
  .sb-steps-inner {
    gap: 4px;
  }
  .sb-step-label {
    font-size: 12px;
  }
  .sb-form-card {
    padding: 24px 0px;
  }
  .sb-section-fields {
    flex-direction: column;
    gap: 16px;
  }
  .sb-section-fields .input-field-set {
    width: 100%;
  }
  .input_group {
    flex-direction: column;
  }

  .input_group .input-field-set {
    width: 100%;
  }

  .modal-slide-box {
    max-width: 500px;
    width: 100%;
    max-height: 100vh;
    min-height: 0;
  }

  .information-result { background-size: 35% 65%; }
  .service-heading-wraper {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/* Form Submit Section Styles */
.form-submit-section {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.submit-service-booking-btn {
  background: var(--red-color);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.submit-service-booking-btn:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.submit-service-booking-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.submit-service-booking-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-service-booking-btn:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* Loading state */
.submit-service-booking-btn.loading {
  background: #666;
  cursor: wait;
}

/* Success state */
.submit-service-booking-btn.success {
  background: #4caf50;
}

/* Error state */
.submit-service-booking-btn.error {
  background: #f44336;
}

/* Responsive design for submit button */
@media(max-width: 768px) {

  span.sb-step-label {
    display: none;
}

  .sb-hero-banner {
    margin-top: 0; /* same as contact page on mobile */
  }
  .submit-service-booking-btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .form-submit-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 15px 0;
  }
}

@media(max-width: 480px) {
  .submit-service-booking-btn {
    padding: 12px 16px;
    font-size: 13px;
    min-width: 180px;
  }
}

.input_group input, .form-group input {
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  outline: none;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  box-sizing: border-box;
}

/* WhatsApp: intl-tel-input (flags + dial code) */
.sb-section-fields .sb-phone-input-group,
.input_group .sb-phone-input-group {
  display: block;
  width: 100%;
  min-height: 44px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: visible;
  box-sizing: border-box;
}

.sb-phone-input-group.sb-whatsapp-iti .iti {
  width: 100%;
  display: block;
}

.sb-phone-input-group.sb-whatsapp-iti .iti--separate-dial-code .iti__flag-container {
  left: 0;
  right: auto;
}

.sb-phone-input-group.sb-whatsapp-iti .iti__selected-flag {
  padding: 0 8px 0 10px;
  background: transparent;
  border-radius: 12px 0 0 12px;
}

.sb-phone-input-group.sb-whatsapp-iti .iti__selected-dial-code {
  font-size: 15px;
  margin-right: 4px;
}

.sb-phone-input-group.sb-whatsapp-iti .iti__country-list {
  z-index: 10002;
  max-height: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Dropdown is appended to body — scope via page template class */
.page-template-page-service-booking-php .iti__country-list {
  font-family: inherit;
}

.page-template-page-service-booking-php .iti__country-list .iti__country {
  color: #141414;
}

.page-template-page-service-booking-php .iti__country-list .iti__country .iti__country-name,
.page-template-page-service-booking-php .iti__country-list .iti__country span,
.page-template-page-service-booking-php .iti__country-list .iti__dial-code {
  color: #141414 !important;
}

.page-template-page-service-booking-php .iti__country-list .iti__country:hover,
.page-template-page-service-booking-php .iti__country-list .iti__country.iti__highlight {
  background-color: #f5f5f5;
  color: #141414;
}

.page-template-page-service-booking-php .iti__country-list .iti__country.iti__active {
  background-color: rgba(235, 10, 30, 0.08);
}

.page-template-page-service-booking-php .iti__country-list .iti__country.iti__active .iti__country-name,
.page-template-page-service-booking-php .iti__country-list .iti__country.iti__active .iti__dial-code {
  color: var(--red-color, #eb0a1e) !important;
}

.page-template-page-service-booking-php .iti__country-list .iti__divider {
  border-bottom-color: #eee;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

.sb-phone-input-group.sb-whatsapp-iti input[type="tel"] {
  width: 100% !important;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px 10px 102px !important;
  font-size: 15px;
  line-height: 1.5;
  font-family: inherit;
  color: inherit;
  background-color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none;
  box-sizing: border-box;
}

.sb-phone-input-group.sb-whatsapp-iti input[type="tel"]:focus {
  outline: none;
  box-shadow: none;
}

.sb-phone-input-group.sb-whatsapp-iti:focus-within {
  border-color: #ccc;
}

.sb-phone-input-group.sb-whatsapp-iti:has(input.error) {
  border-color: #f44336;
  background-color: #ffebee;
}

.sb-phone-input-group.sb-whatsapp-iti:has(input.error) input[type="tel"] {
  background-color: #ffebee !important;
}