:root {
  --dark: #2d3748;
  --yellow: #f6e05e;
}

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

body {
  background-color: #f7fafc;
}

p,
label {
  margin: 0;
}

.formParentWrapper {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 20px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.steps {
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  background-color: #fabc09;
  color: white;
  gap: 52px;
}

.stepInfo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: white;
  color: #ec086d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.stepText {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.step.active {
  background-color: #e3342f;
  color: white;
}

p.label {
  font-size: 15px;
  font-weight: 900;
  color: black;
}

.info {
  font-size: 12px;
  font-weight: 500;
  color: black;
}

.rightSectionParent {
  padding: 20px;
  background-color: #5080d3;
}

.rightSectionWrapper {
  min-height: 320px;
}

.formContainer {
  display: block;
}

.formContainer.hide {
  display: none;
}

.mainForm {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.personal {
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin-top: 20px;
  text-align: center;
}
.step4-title {
  margin-bottom: 5px;
}
.personalInfo {
  color: white;
  text-align: center;
  font-size: 15px;
}

.radio-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 50px;
  padding: 20px;
  border-radius: 40px;
  width: 100%;
  margin: 80px auto;
}

.radio-option {
  border-radius: 10px;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 70px;
  border: 1px solid white;
}
.radio-option:hover {
  background-color: #fabc09;
}
.radio-option:active {
  background-color: #fabc09 !important;
}
.radio-option:hover .radio-label strong {
  color: black;
}
.radio-input:checked + .radio-label strong {
  color: black !important;
}
.radio-option:has(.radio-input:checked) {
  background-color: #fabc09; /* Background stays #fabc09 when radio is checked */
}
.radio-input {
  cursor: pointer;
  width: 18px;
  height: 18px;
  padding: 0;
}

.radio-label strong {
  font-size: 16px;
  cursor: pointer;
  padding-left: 5px;
  color: white;
  margin-bottom: 0;
}

.radio-input:checked + .radio-label strong {
  color: var(--yellow);
  font-weight: 700;
}

.ticket-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.transfer-category {
  display: none;
}

.ticket-type {
  margin-bottom: 25px;
  margin-top: 25px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.subtitle,
.transfer-location-label {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.subtitle {
  /* margin: 25px auto; */
  margin-top: 10px;
  margin-bottom: 25px;
}
/* .transfer-subtitle{
  margin-bottom:10px;
}
.sub-info-span {
  margin-bottom: 30px;
  color:white;
} */

.ticket-subcategory {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 95%;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ticket-subcategory label {
  display: inline-block;
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 0;
  min-width: 105px;
  text-align: left;
}

.ticket-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 98%;
}

.categories-container .ticket-category {
  flex: 1;
  min-width: 220px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  color: var(--dark);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-btn:focus {
  outline: none;
}

.counter-decrease,
.counter-increase {
  background: linear-gradient(135deg, #3490dc, #6574cd);
  color: white;
}

.counter-value {
  width: 35px;
  text-align: center;
  margin: 0 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.price {
  font-weight: bold;
  color: var(--dark);
  font-size: 15px;
  min-width: 80px;
  border-radius: 4px;
}

.form-section {
  display: flex;
  justify-content: center;
  /* margin-bottom: 15px; */
  align-items: flex-start;
  flex-direction: column;
}

.form-section label {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.location-section,
.select2-selection__rendered {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.select2-selection__rendered {
  font-size: 14px;
  width: 100%;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable,
.select2-results__option {
  font-size: 14px;
}

.select-dropdown,
.select2-hidden-accessible {
  width: 100%;
  max-width: 450px;
  margin: 8px auto;
  height: 40px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #495057;
  font-size: 15px;
}

.select2-container {
  width: 100%;
  max-width: 450px;
  margin: 8px auto;
}

.select2-selection--single {
  height: auto;
  min-height: 40px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 12px;
}

.select2-selection__arrow {
  height: 40px;
}

.select2-dropdown {
  border-radius: 6px;
  border: 1px solid #ced4da;
}

.select-dropdown:focus,
.select2-search__field:focus {
  outline: none;
  border-color: #3490dc;
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.billingContainer {
  margin: 25px auto;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  max-width: 93%;
}

.billingParent {
  margin-bottom: 15px;
}

.dynamicData {
  width: 100%;
}

.totalBill {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.adTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.finalPrice {
  font-size: 20px;
  font-weight: 900;
  color: #ec086d;
}

.btnWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24rem;
  background: #fabc09;
  height: 80px;
}

.previous {
  background: #ec086d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 38px;
}

.previous.hideBtn {
  visibility: hidden;
}

.nxt {
  background: #ec086d;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 38px;
}

.nxt:disabled {
  background-color: #cccccc;
  color: #666666;
  opacity: 0.7;
  cursor: not-allowed;
}

.order-section {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  background-color: #ffffff;
}

.order-section h5 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.order-item span {
  font-size: 15px;
  color: var(--dark);
}

.order-item .value {
  font-weight: 600;
}

/*sTEP 2*/
.formContainer[data-step="1"] .mainForm,
.formContainer[data-step="2"] .mainForm,
.formContainer[data-step="3"] .mainForm {
  display: flex;
  justify-content: center;
  align-items: center;
}

.transfer-category[style*="display: grid"] {
  grid-template-columns: repeat(2, 1fr);
  /* grid-gap: 15px; */
  grid-column-gap: 10px;
  grid-row-gap: 0;
  width: 100%;
  max-width: 92%;
}
.location-section {
  grid-column: 1 / span 2;
}
.pickup-section {
  grid-column: 1;
}
.date-section {
  grid-column: 1;
  gap: 9px;
  justify-content: flex-start;
}
/*STEP 4 */
#accept_terms,
#newsletter_subscribe {
  border-radius: 5px !important;
}
.formContainer[data-step="4"] .mainForm {
  display: grid;
  grid-gap: 16px;
  width: 94%;
}
.formContainer[data-step="4"] .form-section {
  grid-column-gap: 0;
  grid-row-gap: 10px;
  margin-bottom: 15px;
}
.formContainer[data-step="4"] .personal {
  grid-column: 1 / span 2;
}

.formContainer[data-step="4"] .form-section:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.formContainer[data-step="4"] .form-section:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.formContainer[data-step="4"] .form-section:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}

.formContainer[data-step="4"] .form-section:nth-child(5) {
  grid-column: 2;
  grid-row: 2 / span 3;
  height: 93%;
}

.formContainer[data-step="4"] .form-section:nth-child(5) textarea {
  height: 100%;
}

.formContainer[data-step="4"] .form-section:nth-child(6) {
  grid-column: 1 / span 2;
  grid-row: 5;
  padding-left: 12px;
}

.formContainer[data-step="4"] .btnWrapper {
  grid-column: 1 / span 2;
  grid-row: 6;
  gap: 20rem;
}

.formContainer[data-step="4"] .char-count {
  display: block;
  text-align: right;
  font-size: 13px !important;
  margin-top: 4px;
  color: white;
  order: 2;
  display: block;
  font-size: 11px;
  color: white;
  flex: 0;
  width: 100%;
  max-width: 100%;
}

.form-section input[type="text"]:not(#entrance_date),
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section select,
.form-section textarea {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #495057;
  font-size: 14px;
  box-sizing: border-box;
  height: 48px;
}
#full_name,
#email,
#phone {
  padding: 12px;
}
#countryCode {
  font-size: 13px;
  flex: 1;
}
#phone {
  flex: 2 !important;
}
#step2-title {
  margin: 20px auto;
}
.form-section textarea {
  height: 140px;
  resize: none;
  padding: 10px 12px;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  outline: none;
  border-color: #3490dc;
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
}

.phone-input-container {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.phone-input-container select {
  flex: 0 0 35%;
}

.phone-input-container input[type="tel"] {
  flex: 1;
}

.form-section.checkbox-section {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
  top: -20px;
}
.checkboxes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 4;
}
.formContainer[data-step="4"] .form-section:nth-child(6) {
  order: 1;
}
.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 2;
}

.terms-checkbox label {
  color: white;
  font-size: 13px;
}

.terms-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-bottom: 3px;
}

.char-count {
  display: block;
  text-align: right;
  color: white;
  font-size: 13px;
  margin-top: 4px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-section {
  grid-column: 2;
}
#entrance_date {
  padding: 12px 12px 12px 35px;
  font-size: 14px;
}
#entrance_date:disabled {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  opacity: 0.65;
  cursor: not-allowed;
}
#entrance_date:not(:disabled) {
  background-color: #ffffff !important;
  color: #111827 !important;
  opacity: 1;
  cursor: pointer;
}

.select-dropdown,
.select2-hidden-accessible,
.form-section select,
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"] {
  min-height: 45px;
}

.select2-selection--single {
  height: auto;
  min-height: 45px;
  padding: 12px;
}

.select2-selection__rendered {
  padding: 0;
  line-height: 18px;
}

.select2-selection__arrow {
  height: 45px;
}
input[type="radio"]:checked {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*MODAL MAP*/
.map-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.map-modal-content {
  position: relative;
  margin: 2% auto;
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 600px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  top: 10%;
}

.map-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  z-index: 10000;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.map-close:hover,
.map-close:focus {
  color: black;
  background-color: #f8f8f8;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  flex-grow: 1;
}

.map-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #666;
  font-size: 16px;
}

.map-loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.map-header {
  background: white;
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}

.map-footer {
  padding: 12px 20px;
  background: white;
  text-align: left;
  font-size: 14px;
  color: black;
  border-radius: 0 0 10px 10px;
  font-style: italic;
}
.time-distance-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 25px;
}
.time-distance-info span {
  font-size: 16px;
  color: white;
  font-weight: 700;
}
.time-distance-info a {
  font-size: 16px;
  color: #fabc09;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.span-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.span-asterisk {
  font-size: 13px;
  text-align: center;
  color: white;
}

/*LOADER*/
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #f8f9fa;
  z-index: 9999;
}

.redirect-loader {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px -5px rgba(255, 255, 255, 0.5),
    inset 0 -40px 40px -20px rgba(255, 255, 255, 0.5);
  background: linear-gradient(#ff3d00 120px, transparent 0) no-repeat;
  background-position: 0px 120px;
  animation: fillLq 3s linear infinite alternate;
}

.redirect-loader:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 25%;
  top: 20px;
  left: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-45deg);
}

@keyframes fillLq {
  0%,
  10% {
    background-position: 0 120px;
  }
  90%,
  100% {
    background-position: 0 0;
  }
}

.loading-text {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

.loading-text span {
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-text span:nth-child(1) {
  animation-delay: 0s;
}
.loading-text span:nth-child(2) {
  animation-delay: 0.05s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0.1s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.15s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.2s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.25s;
}
.loading-text span:nth-child(7) {
  animation-delay: 0.3s;
}
.loading-text span:nth-child(8) {
  animation-delay: 0.35s;
}
.loading-text span:nth-child(9) {
  animation-delay: 0.4s;
}
.loading-text span:nth-child(10) {
  animation-delay: 0.45s;
}
.loading-text span:nth-child(11) {
  animation-delay: 0.5s;
}
.loading-text span:nth-child(12) {
  animation-delay: 0.55s;
}
.loading-text span:nth-child(13) {
  animation-delay: 0.6s;
}
.loading-text span:nth-child(14) {
  animation-delay: 0.65s;
}
.loading-text span:nth-child(15) {
  animation-delay: 0.7s;
}
.loading-text span:nth-child(16) {
  animation-delay: 0.75s;
}
.loading-text span:nth-child(17) {
  animation-delay: 0.8s;
}
.loading-text span:nth-child(18) {
  animation-delay: 0.85s;
}
.loading-text span:nth-child(19) {
  animation-delay: 0.9s;
}
.loading-text span:nth-child(20) {
  animation-delay: 0.95s;
}
.loading-text span:nth-child(21) {
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/*CANCEL TRANSACTION*/
.transaction-cancel {
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #000000;
}
.cancel-message {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: white;
  margin-bottom: 20px;
}
.cancel-message > a {
  color: #f79e1b;
}
.cancel-section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 15vh;
  text-align: left;
  padding: 20px;
}
.cancel-section-parent {
  height: 350px;
}

/* Disabled states για progressive form */
.select-dropdown:disabled,
.select2-container.select2-container--disabled .select2-selection--single {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.counter-btn:disabled,
.counter-btn[disabled],
.transfer-ticket-category.disabled .counter-btn {
  background: #e9ecef !important;
  background-color: #e9ecef !important;
  background-image: none !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
  border: 1px solid #dee2e6 !important;
}

.counter-btn:disabled:hover,
.counter-btn[disabled]:hover,
.transfer-ticket-category.disabled .counter-btn:hover {
  background: #e9ecef !important;
  background-color: #e9ecef !important;
  background-image: none !important;
  transform: none !important;
  color: #6c757d !important;
}

.transfer-ticket-category.disabled {
  opacity: 0.6;
  position: relative;
}

.transfer-ticket-category.disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 6px;
}

.transfer-ticket-category.disabled .ticket-subcategory {
  background-color: #f8f9fa !important;
  opacity: 0.7;
}

.transfer-ticket-category.disabled label {
  color: #6c757d !important;
}

.transfer-ticket-category.disabled .price {
  color: #6c757d !important;
}

.transfer-ticket-category.disabled .counter-value {
  color: #6c757d !important;
}

.time-distance-section {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  grid-column: 2;
  align-self: center;
}

.time-distance-section.show,
.time-distance-section[style*="display: flex"] {
  display: flex !important;
  opacity: 1;
}

select:disabled,
.select-dropdown:disabled {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  border-color: #dee2e6 !important;
}

.select2-container--disabled .select2-selection--single {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.counter-decrease:disabled,
.counter-increase:disabled,
.counter-decrease[disabled],
.counter-increase[disabled] {
  background: #e9ecef !important;
  background-color: #e9ecef !important;
  background-image: none !important;
  color: #6c757d !important;
}

.transfer-ticket-category.disabled .counter-decrease,
.transfer-ticket-category.disabled .counter-increase {
  background: #e9ecef !important;
  background-image: none !important;
}
/*RESPONSIVE */
@media (max-width: 1600px) {
}

@media (max-width: 1280px) {
  /* .formParentWrapper {
    max-width: 600px;
  } */

  .radio-selection {
    padding: 15px;
    width: 98%;
  }

  .formContainer[data-step="4"] .mainForm {
    width: 95%;
  }
  .btnWrapper {
    gap: 17rem;
  }
}

@media (max-width: 980px) {
  .steps {
    padding: 10px 15px;
  }
  .step {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .transfer-category[style*="display: grid"] {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 92%;
  }
  .location-section,
  .pickup-section,
  .schedule-section,
  .date-section,
  .time-distance-section {
    grid-column: 1 / span 1;
  }
  p.label {
    font-size: 13px;
  }
  p.info {
    font-size: 11px;
  }
  .finalPrice {
    font-size: 17px;
  }
  .adTitle {
    font-size: 16px;
  }
  .max-w-sm {
    max-width: 100%;
    width: 100%;
  }
  .radio-selection {
    width: 92%;
  }
  .nxt {
    margin-right: 58px;
  }
  .previous {
    margin-left: 58px;
  }
  .categories-container {
    width: 93%;
  }
  .billingContainer {
    max-width: 88%;
  }
  .formContainer[data-step="4"] .mainForm {
    width: 88%;
  }
  .transfer-category[style*="display: grid"] {
    width: 100%;
    max-width: 92%;
    grid-column-gap: 0;
    grid-row-gap: 10px;
  }
}

@media (max-width: 768px) {
  .formParentWrapper {
    max-width: 100%;
  }
  .btnWrapper {
    gap: 7rem;
  }
  .radio-selection {
    gap: 30px;
    width: 100%;
  }
  .formContainer[data-step="4"] .personal {
    grid-column: 1;
  }
  .formContainer[data-step="4"] .form-section:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
  .formContainer[data-step="4"] .btnWrapper {
    grid-column: 1;
  }
  .max-w-sm {
    max-width: 100%;
    width: 100%;
  }
  .formContainer[data-step="4"] .char-count {
    text-align: center;
  }
  .formContainer[data-step="4"] .form-section:nth-child(6) {
    grid-row: 6;
  }
  .terms-checkbox {
    flex: 4;
  }
  .subtitle {
    font-size: 20px;
  }
  .steps {
    gap: 41px;
  }
  .nxt {
    margin-right: 31px;
  }
  .previous {
    margin-left: 31px;
  }
  .categories-container {
    width: 100%;
  }
  .billingContainer {
    max-width: 95%;
  }
  .formContainer[data-step="4"] .mainForm {
    width: 95%;
    grid-template-columns: 1fr;
    grid-column-gap: 0px !important;
  }
  .terms-checkbox {
    flex: 10;
    margin-top: 10px;
  }
  .terms-checkbox label {
    margin-bottom: 2px;
  }
  .transfer-category[style*="display: grid"] {
    grid-column-gap: 0;
    width: 100%;
    max-width: 92%;
    grid-row-gap: 15px;
  }
}
@media (max-width: 639px) {
  .stepInfo {
    flex-direction: column;
  }
  .stepText {
    justify-content: center;
    align-items: center;
  }
  .steps {
    gap: 50px;
  }
  .radio-label strong {
    font-size: 13px;
  }
  .radio-input {
    width: 14px;
    height: 14px;
  }
  .personalInfo {
    font-size: 12px;
  }
  .personal {
    font-size: 23px;
  }
}
@media (max-width: 600px) {
  .formParentWrapper {
    box-shadow: none;
  }
  .rightSectionParent {
    padding: 25px;
  }
  .radio-option {
    height: 60px;
  }
  .ticket-subcategory {
    max-width: 94%;
  }
  .categories-container {
    width: 100%;
  }
  .select2-container,
  .select-dropdown,
  .phone-input-container {
    max-width: 100%;
  }
  .personal {
    font-size: 20px;
  }
  .subtitle,
  .transfer-location-label {
    font-size: 18px;
  }
  .personalInfo {
    font-size: 12px;
  }
  .stepInfo {
    flex-direction: column;
  }
  .radio-selection {
    flex-direction: column;
  }
  .radio-option {
    width: 55%;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
  }
}
@media (max-width: 520px) {
  .nxt {
    margin-right: 20px;
  }
  .previous {
    margin-left: 20px;
  }
  .radio-selection {
    padding: 0;
    gap: 35px;
  }
  .rightSectionParent {
    padding: 10px;
  }
  .steps {
    gap: 35px;
  }
  .nxt {
    margin-right: 43px;
  }
  .previous {
    margin-left: 43px;
  }
  .categories-container {
    width: 90%;
  }
  .transfer-category[style*="display: grid"] {
    width: 100%;
    max-width: 84%;
  }
}
@media (max-width: 480px) {
  .rightSectionParent {
    padding: 15px;
  }
  .steps {
    flex-direction: row;
    gap: 20px;
  }
  .stepText {
    font-size: 14px;
  }
  .radio-selection {
    padding: 10px;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 0;
  }
  .radio-option {
    height: 50px;
  }
  .radio-label strong {
    font-size: 14px;
  }
  .ticket-row {
    align-items: center;
    gap: 8px;
  }
  .ticket-counter {
    width: 100%;
    justify-content: center;
    gap: 0;
  }
  .form-section input[type="text"],
  .form-section input[type="email"],
  .form-section input[type="tel"],
  .form-section select,
  .form-section textarea {
    font-size: 14px;
  }
  .billingContainer {
    padding: 10px;
  }
  .finalPrice {
    font-size: 18px;
  }
  p.label {
    font-size: 12px;
  }
  p.info {
    font-size: 10px;
  }
  .previous,
  .nxt {
    font-size: 12px;
  }
  .ticket-subcategory label,
  .price {
    font-size: 12px;
  }
  .ticket-subcategory label {
    min-width: 100px;
  }
  .order-item span {
    font-size: 12px;
  }
  .form-section.checkbox-section {
    max-width: 100%;
  }
  .nxt {
    margin-right: 30px;
  }
  .previous {
    margin-left: 30px;
  }

  .form-section {
    width: 100%;
  }
  .categories-container {
    width: 100%;
  }
  .billingContainer {
    max-width: 93%;
    margin-top: 48px;
  }
  .radio-option {
    width: 70%;
  }
  .transfer-category[style*="display: grid"] {
    width: 100%;
    max-width: 84%;
  }
  .subtitle {
    font-size: 15px;
  }
  .form-section label {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .personal {
    font-size: 18px;
  }
  .personalInfo {
    font-size: 13px;
  }
  .step {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .counter-btn {
    width: 28px;
    height: 28px;
  }
  .counter-value {
    width: 30px;
    font-size: 14px;
  }
  .previous,
  .nxt {
    padding: 8px 20px;
    font-size: 14px;
  }
  .radio-option {
    width: 80%;
  }
  .nxt,
  .previous {
    padding: 8px 10px;
    font-size: 13px;
  }
  .steps {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .formParentWrapper {
    margin: 10px auto;
  }
  .rightSectionParent {
    padding: 10px;
  }
  .radio-selection {
    margin-top: 15px;
  }
  .ticket-subcategory label {
    font-size: 14px;
  }
  .price {
    font-size: 14px;
  }
  .adTitle {
    font-size: 16px;
  }
  .radio-selection {
    margin-top: 50px;
  }
}
@media (max-width: 360px) {
  .ticket-subcategory {
    max-width: 94%;
    padding: 10px 5px;
  }
}
@media (max-width: 340px) {
  .personal {
    font-size: 16px;
  }
  .subtitle,
  .transfer-location-label {
    font-size: 16px;
  }
  .radio-label strong {
    font-size: 13px;
  }
  .form-section label {
    font-size: 13px;
  }
  .select2-selection--single,
  .select-dropdown,
  .form-section input,
  .form-section textarea {
    font-size: 13px;
  }
  .order-section h5 {
    font-size: 14px;
  }
  .order-item span {
    font-size: 13px;
  }
  .previous,
  .nxt {
    font-size: 12px;
  }
}

/*Errors*/
.dtb-m-menu-trigger {
  display: none;
}
.error-area {
  background-color: white;
}
.error-404-container {
  background-color: white;
  font-family: "Modak", cursive;
  text-align: center;
  padding: 100px 20px;
  color: #ec086d;
  margin-top: 100px;
}

.error-404-icon {
  font-size: 150px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Modak", cursive;
  color: #ec086d;
}

.error-404-title {
  font-size: 60px;
  margin: 0 0 30px 0;
  line-height: 1.2;
  font-family: "Modak", cursive;
  color: #ec086d;
}

.error-404-message {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: normal;
  color: #ec086d;
}

.error-content a {
  display: inline-block;
  font-family: "Inter";
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  color: white;
  background-color: #ec086d;
  padding: 12px 25px;
  border-radius: 30px;
}
.error-content {
  background: transparent;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 70px 30px;
}
[type="radio"]:checked {
  background-size: 10px;
}
/* Responsive Breakpoints */
@media (max-width: 1600px) {
  .map-modal-content {
    max-width: 750px;
    max-height: 550px;
  }
}

@media (max-width: 1450px) {
  .map-modal-content {
    max-width: 700px;
    max-height: 500px;
    margin: 5% auto;
  }
  .map-header {
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  .map-modal-content {
    max-width: 650px;
    max-height: 480px;
    margin: 8% auto;
  }
  .map-close {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .map-modal-content {
    max-width: 600px;
    max-height: 450px;
    margin: 10% auto;
  }
  .map-header {
    font-size: 16px;
    padding: 12px 18px;
  }
  .map-footer {
    font-size: 13px;
  }
  .time-distance-info span,
  .time-distance-info a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .map-modal-content {
    max-width: 550px;
    max-height: 420px;
    margin: 15% auto;
  }
  .map-close {
    top: 12px;
    right: 20px;
  }
  .time-distance-section {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .map-modal-content {
    max-width: 400px;
    max-height: 380px;
    margin: 22% auto;
  }
  .map-header {
    font-size: 15px;
    padding: 10px 16px;
  }
  .map-footer {
    font-size: 12px;
    padding: 10px 16px;
  }
  .time-distance-info {
    flex-direction: row;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .map-modal-content {
    max-width: 350px;
    max-height: 350px;
    margin: 50% auto;
  }
  .map-header {
    font-size: 12px;
  }
  .map-close {
    width: 26px;
    height: 26px;
    font-size: 22px;
    top: 5px;
  }
  .map-loading {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .map-modal-content {
    max-width: 350px;
    max-height: 320px;
    margin: 50% auto;
  }
  .time-distance-info span,
  .time-distance-info a {
    font-size: 14px;
  }
  .map-header {
    font-size: 11px;
  }
  .personalInfo {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .map-modal-content {
    max-width: 300px;
    max-height: 300px;
  }
  .map-header {
    font-size: 10px;
  }
  p.label {
    font-size: 10px;
  }
  p.info {
    font-size: 9px;
  }
}

@media (max-width: 340px) {
  .map-modal-content {
    max-width: 280px;
    max-height: 280px;
  }
  .map-header {
    font-size: 9px;
  }
  .map-header {
    padding: 8px 14px;
  }
  .map-footer {
    padding: 8px 14px;
  }
  .ticket-subcategory {
    max-width: 95%;
  }
}

.form-section {
  position: relative;
}

.error-message {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 12px;
  margin-top: 2px;
  background-color: rgba(220, 38, 127, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .error-message {
    font-size: 11px;
    padding: 3px 6px;
  }
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 700px;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left,
.footer-right {
  font-size: 14px;
  color: #374151;
}

.footer-left a,
.footer-right a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-left a:hover,
.footer-right a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 639px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
  }

  .footer-left,
  .footer-right {
    font-size: 13px;
    width: 100%;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 1;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .footer-container {
    padding: 1.25rem;
    justify-content: center;
    gap: 200px;
  }
  .footer-left,
  .footer-right {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-container {
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 1rem 2rem;
  }
}

@media (max-width: 479px) {
  .footer-container {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }

  .footer-left,
  .footer-right {
    font-size: 12px;
    line-height: 1.4;
  }
}

/*MESSAGE INFANT*/
.infant-notice {
  margin-top: 0;
  font-size: 13px;
  text-align: left;
  width: 100%;
}

.infant-notice span {
  display: inline-block;
  color: white;
  padding-left: 20px;
}

@media (max-width: 1600px) {
  .infant-notice {
    font-size: 13px;
    margin-top: 8px;
  }
}

@media (max-width: 1450px) {
  .infant-notice {
    font-size: 13px;
  }
}

@media (max-width: 1280px) {
  .infant-notice {
    font-size: 12px;
    padding: 3px 6px;
  }
}

@media (max-width: 980px) {
  .infant-notice {
    font-size: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .infant-notice {
    font-size: 12px;
    text-align: left;
  }
  .infant-notice span {
    padding: 3px 5px;
    padding-left: 15px;
  }
}

@media (max-width: 600px) {
  .infant-notice {
    font-size: 12px;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .infant-notice {
    font-size: 12px;
  }
  .infant-notice span {
    padding: 2px 4px;
    padding-left: 15px;
  }
}

@media (max-width: 400px) {
  .infant-notice {
    font-size: 11px;
  }
  .infant-notice span {
    padding-left: 15px;
  }
}

@media (max-width: 380px) {
  .infant-notice {
    font-size: 11px;
    margin-top: 4px;
  }
  .infant-notice span {
    padding-left: 15px;
  }
}

@media (max-width: 340px) {
  .infant-notice {
    font-size: 10px;
    padding: 2px 3px;
  }
}

.navbar-expand-md > .container {
  max-width: 700px;
}
a.lang-change {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: auto;
  border: 1px solid #5080d3;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  background: white;
  border-radius: 50%;
  padding: 15px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.lang-change::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fabc09;
  z-index: 0;
  transition: width 0.4s ease;
  border-radius: 50%;
}

a.lang-change:hover::before {
  width: 100%;
}

a.lang-change span {
  position: relative;
  z-index: 1;
  color: black;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-expand-md > .container {
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  .navbar-expand-md > .container {
    max-width: 500px;
  }
  .navbar-brand > img {
    width: 85%;
  }
}
@media (max-width: 480px) {
  .navbar-brand > img {
    width: 80%;
  }
}

.closing-notice-banner {
  font-size: 17px;
  text-align: center;
  margin-bottom: 5px;
}
.closing-notice-banner .notice-highlight {
  color: #e3342f;
  font-weight: bold;
}

/* Pickup info box – transfer section only */
.pickup-info-box {
  width: 100%;
  max-width: 93%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 4px solid #fabc09;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 auto 16px auto;
  box-sizing: border-box;
}

.pickup-info-title {
  color: #fabc09;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pickup-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.pickup-info-list li {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  line-height: 1.5;
}

.pickup-location {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.pickup-days {
  color: white;
  font-weight: 400;
}

@media (max-width: 600px) {
  .pickup-info-list {
    flex-direction: column;
    gap: 6px;
  }
  .pickup-info-list li {
    flex-wrap: wrap;
  }
}
