/* Travel Survey Form Styles */
.travel-survey-form-container {
  margin: 0 auto;
  width: 100%;
  font-family: "Darker Grotesque";
}
.travel-survey-form-container *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.travel-survey-form-container input{
    background-color: transparent;
}
.travel-survey-form-container h1,
.travel-survey-form-container h2,
.travel-survey-form-container h3,
.travel-survey-form-container h4,
.travel-survey-form-container h5,
.travel-survey-form-container h6,
.travel-survey-form-container button[type="submit"] {
  font-family: "Abhaya Libre";
}

.travel-survey-form-container p,
.travel-survey-form-container label {
  margin: 0;
}

.travel-survey-form-container label {
  display: block;
  color: #4d423d;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px !important;
}

.travel-survey-form-container select {
  appearance: none;
  padding-inline-end: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5.379L20.621 2.5 10.5 12.621.379 2.5 2.5.379l8 8z' fill='%234F5D6D' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: 20px auto, 100%;
  background-position: right 16px top 50%, 0 0;
}

.travel-survey-form-container select,
.travel-survey-form-container input[type="text"],
.travel-survey-form-container input[type="email"],
.travel-survey-form-container input[type="date"],
.travel-survey-form-container input[type="tel"],
.travel-survey-form-container input[type="number"] {
  position: relative;
  width: 100%;
  height: auto;
  padding: 16px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 20px;
  color: #000;
  line-height: 1.2em;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.travel-survey-form-container
  input[type="date"]::-webkit-calendar-picker-indicator {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: inset 0 1px #fff, 0 1px #eee;
  background-color: #eee;
  background-image: -webkit-linear-gradient(top, #f0f0f0, #e6e6e6);
  color: #666;
}

.travel-survey-form-container input[type="text"]:focus,
.travel-survey-form-container input[type="email"]:focus,
.travel-survey-form-container input[type="date"]:focus,
.travel-survey-form-container input[type="tel"]:focus,
.travel-survey-form-container input[type="number"]:focus,
.travel-survey-form-container select:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.travel-survey-form-container input::placeholder {
  color: #535353;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.travel-survey-form-container textarea {
  position: relative;
  width: 100%;
  min-height: 186px;
  height: auto;
  padding: 16px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 20px;
  color: #000;
  line-height: 1.2em;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.travel-survey-form-container textarea:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.travel-survey-form-container input[type="checkbox"],
.travel-survey-form-container input[type="radio"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  align-self: flex-end;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.travel-survey-form-container input[type="checkbox"]:checked,
.travel-survey-form-container input[type="radio"]:checked {
  background: rgba(255, 255, 255, 0.75);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.select-dropdown {
  position: relative;
  width: 100%;
}

.select-dropdown.inner {
  width: 80px;
  flex-shrink: 0;
}

.select-dropdown-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 58px;
  padding: 12px 16px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
}

.select-dropdown.inner .select-dropdown-button {
  border: none;
  padding-right: 0;
}

.select-dropdown-button .selected-option-text {
  pointer-events: none;
  font-size: 20px;
  color: #535353;
  line-height: 1.2em;
}

.select-dropdown-button.active .selected-option-text {
  font-size: 20px;
  color: #000;
}

.select-dropdown-button.active {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.select-dropdown-button .arrow-icon {
  width: 26px;
  height: auto;
}

.select-dropdown-button.active .arrow-icon {
  transform: rotate(180deg);
}

ul.select-dropdown-menu {
  list-style-type: none;
  padding-left: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out,
    visibility 0.2s;
  max-height: 250px;
  min-width: 160px;
  overflow-y: auto;
}

ul.select-dropdown-menu li {
  font-size: 20px;
  color: #000;
  line-height: 1.2em;
}

.select-dropdown-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-dropdown-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.select-dropdown-option:hover {
  background-color: #f3f4f6;
}

.select-dropdown-option:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.select-dropdown-option:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.select-dropdown-option.selected {
  background-color: #e5e7eb;
  font-weight: 600;
}

.form-control-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.travel-survey-form-container div.space-height {
  height: 97px;
}

.travel-survey-form-wrapper {
  background-color: transparent;
  padding: 20px 0;
  margin: 0 auto;
}

.travel-survey-title {
  color: #1e3a8a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.travel-survey-description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}

.travel-survey-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* travel-survey-form-section */
.travel-survey-form-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.travel-survey-form-section-head h3 {
  color: #4d423d;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.44em;
  margin-bottom: 0;
}

.travel-survey-form-section-head p {
  color: #535353;
  font-size: 24px;
  margin-bottom: 0;
}

.travel-survey-form-section-body.travel-survey-form-section-body-2grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: stretch;
}

.travel-survey-form-body-aside-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.travel-survey-form-body-aside-images img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 16px;
}

.travel-survey-form-body-aside-images.two-row-images img {
  height: 50%;
}

.travel-survey-form-body-aside-images .aside-image-with-tips {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.travel-survey-form-body-aside-images
  .aside-image-with-tips
  .aside-image-with-tips-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: auto;
  max-width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  background: #f0e7af;
  padding: 20px 40px 28px 20px;
  box-sizing: border-box;
}

.aside-image-with-tips .aside-image-with-tips-content p {
  color: #535353;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}

.travel-survey-country-wrap {
  display: block;
  position: relative;
}

.travel-survey-country-choose {
  display: flex;
  height: 72px;
  padding: 10px 16px;
  align-items: center;
  border-radius: 8px;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0px 4px 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  cursor: pointer;
}

.travel-survey-country-choose .travel-survey-country-choose-text {
  flex-grow: 1;
  color: #737373;
  font-size: 16px;
  line-height: 20px;
}

.travel-survey-country-choose .travel-survey-country-choose-text.not-empty {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.travel-survey-country-choose .travel-survey-country-choose-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.travel-survey-country-choose.open .travel-survey-country-choose-icon {
  transform: rotate(180deg);
}

.travel-survey-country-options-wrap {
  display: none;
  position: absolute;
  z-index: 10;
  top: 78px;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #858585;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}

.travel-survey-country-options-wrap
  input.travel-survey-country-search::placeholder {
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.travel-survey-country-choose.open ~ .travel-survey-country-options-wrap {
  display: block;
}

.travel-survey-country-options {
  max-height: 400px;
  overflow-y: auto;
}

.travel-survey-country-options .travel-survey-country-option {
  display: block;
  padding: 10px;
  cursor: pointer;
}

.travel-survey-country-options .travel-survey-country-option:hover {
  background-color: #f6f6f6;
}

.travel-survey-form-city-section .city-selection-placeholder {
  display: flex;
  padding: 24px;
  flex-direction: column;
  border-radius: 12px;
  background: #f8f8f8;
}

.travel-survey-form-city-section .city-selection-placeholder p {
  color: #000;
  font-size: 28px;
  line-height: 1.25em;
  margin-bottom: 26px;
}

.travel-survey-form-city-section .city-selection-placeholder small {
  color: #535353;
  font-size: 20px;
  line-height: 1.25em;
}

.travel-survey-form-city-section .travel-survey-form-city-tips {
  color: #4d423d;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}

.travel-survey-form-city-section #travel-survey-form-city-options-wrap {
  display: none;
}

.travel-survey-form-city-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}

.travel-survey-form-city-options label {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  padding-top: 85%;
  background: #d9d9d9;
}

.travel-survey-form-city-options img.city-option-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-survey-form-city-options .city-option-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 24px;
  box-sizing: border-box;
}

.city-option-content .city-option-name {
  margin-top: auto;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}

.city-option-content .city-option-desc {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.travel-survey-form-plan .travel-survey-stay-days-custom-wrap {
  position: relative;
  flex-grow: 1;
}

.travel-survey-form-plan .travel-survey-stay-days-custom-wrap span {
  position: absolute;
  right: 12px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: #535353;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
}

.travel-survey-form-plan .travel-survey-number-travelers-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  margin-bottom: 8px;
}

.travel-survey-number-travelers-option .number-travelers-option-label {
  color: #4d423d;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.travel-survey-number-travelers-option-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.travel-survey-number-travelers-option-action .action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 42px;
  font-size: 36px;
  line-height: 1;
  color: #000;
  cursor: pointer;
  box-sizing: border-box;
  user-select: none;
}

.travel-survey-number-travelers-option-action .action svg {
  pointer-events: none;
}

.travel-survey-number-travelers-option-action .number-travelers-option-value {
  color: #535353;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  width: 32px;
}

.travel-survey-form-plan .travel-survey-travelers-age-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 4px 0 16px 0;
}

.travel-survey-form-plan .travel-survey-travelers-age-inputs#adults-age-inputs {
  display: none;
}

.travel-survey-form-plan .travel-survey-travelers-age-inputs:empty {
  padding: 0;
}

.travel-survey-form-plan .travel-survey-number-travelers-total {
  text-align: right;
  color: #4d423d;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 16px;
}

.travel-survey-form-plan .travel-survey-number-travelers-tips {
  padding: 24px;
  border-radius: 12px;
  background: #f8f8f8;
  color: #535353;
  font-size: 20px;
  line-height: 24px;
}

.travel-survey-form-plan .travel-survey-budget-total {
  margin-top: 26px;
  text-align: right;
  color: #4d423d;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.travel-survey-form-plan .travel-survey-budget-tips {
  margin-top: 32px;
  border-radius: 12px;
  background: #f8f8f8;
  color: #535353;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 24px;
}

.travel-survey-form-section-body.contact-infomations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.travel-survey-phone-group,
.travel-survey-budget-group {
  display: flex;
  align-items: center;
  gap: 1px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.travel-survey-phone-group select,
.travel-survey-budget-group select {
  flex-shrink: 0;
  border: none !important;
  border-radius: 8px 0 0 8px;
  width: 90px;
  background-size: 16px auto, 100%;
  background-position: right 12px top 50%, 0 0;
}

.travel-survey-phone-group input,
.travel-survey-budget-group input {
  flex-grow: 1;
  border: none !important;
  border-radius: 0 8px 8px 0;
  padding: 12px !important;
  box-sizing: border-box;
}

/* travel-survey-form-experience */
.travel-survey-form-experience .travel-survey-accommodation,
.travel-survey-form-experience .travel-survey-journey,
.travel-survey-form-experience .travel-survey-forward {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.travel-survey-form-plan .travel-survey-stay-days-options,
.travel-survey-accommodation-options,
.travel-survey-journey-options,
.travel-survey-forward-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.travel-survey-form-plan .travel-survey-stay-days-option,
.travel-survey-accommodation-option,
.travel-survey-journey-option,
.travel-survey-forward-option {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 15px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  color: #535353;
  font-size: 20px;
  line-height: 24px;
  color: transparent;
  user-select: none;
  cursor: pointer;
}

.travel-survey-form-plan .travel-survey-stay-days-option::before,
.travel-survey-accommodation-option::before,
.travel-survey-journey-option::before,
.travel-survey-forward-option::before {
  pointer-events: none;
  content: attr(data-value);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-sizing: border-box;
  position: absolute;
  /* 使其不影响正常文字的布局 */
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  color: #535353;
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
  pointer-events: none;
}

.travel-survey-form-plan .travel-survey-stay-days-option.active::before,
.travel-survey-accommodation-option.active::before,
.travel-survey-journey-option.active::before,
.travel-survey-forward-option.active::before {
  border: 1px solid rgba(0, 0, 0, 1);
  color: #000;
  font-weight: 700;
}

/* Interests Selection */
.travel-survey-form-interests .interests-selection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.travel-survey-form-interests .interests-selection label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.travel-survey-form-interests .interests-selection span.interest-label {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #4d423d;
  cursor: pointer;
  user-select: none;
}

/* Form Actions */
.form-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

button[type="submit"].btn-submit {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  background: #000;
  color: white;
  border: none;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.form-status.error {
  color: #ef4444;
}

.form-error {
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #ef444431;
  color: #df0707;
  font-size: 18px;
  margin-top: 10px;
}

.form-error:empty {
  display: none;
}

/* Thank You Message */
.travel-survey-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: auto;
  padding: 100px 0;
}

.thank-you-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
  max-width: 1200px;
  height: auto;
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 16px;
  box-sizing: border-box;
	
}

.thank-you-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #535353;
  transition: all 0.3s ease;
  z-index: 10;
}

.thank-you-close-btn svg {
  pointer-events: none;
  width: 30px;
  height: 30px;
}

.thank-you-content .thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px !important;
  border-radius: 100px;
  border: 8px solid #c8ffea;
  background: #15c180;
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.thank-you-content-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-you-content-body h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
  margin-bottom: 0;
}

.thank-you-content-body p {
  font-size: 20px;
  line-height: 24px;
  color: rgba(72, 67, 59, 1);
  text-align: center;
  margin-top: 24px;
}

.thank-you-content-body h4 {
  font-size: 32px;
  line-height: 40px;
  color: #000;
  margin-top: 40px;
  margin-bottom: 0;
}

.thank-you-content-body .next-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  width: 100%;
}

.thank-you-content-body .next-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}

.thank-you-content-body .next-step h5 {
  color: #26231e;
  font-family: "Abhaya Libre";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
  text-align: center;
}

.thank-you-content-body .next-step p {
  margin-top: 16px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #48433b;
}

.thank-you-content-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.thank-you-content-foot p {
  text-align: center;
  font-family: "Darker Grotesque";
  font-size: 20px;
  line-height: 24px;
  color: #48433b;
}

.thank-you-content-foot a.back-to-home-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  max-width: 388px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 99px;
  background-color: #26231e;
}

.ui-datepicker.ui-widget {
  background: #fff;
  border-radius: 8px;
  margin-top: 8px;
  padding-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ui-datepicker.ui-widget .ui-datepicker-prev.ui-corner-all,
.ui-datepicker.ui-widget .ui-datepicker-next.ui-corner-all {
  display: none;
}

.ui-datepicker.ui-widget select {
  color: #333;
    display: block;
    width: 100%;
    min-height: 40px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background-color: transparent;
    appearance: none;
    padding-inline-end: 25px;
    padding-left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5.379L20.621 2.5 10.5 12.621.379 2.5 2.5.379l8 8z' fill='%234F5D6D' fill-rule='nonzero'/%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-size: 16px auto, 100%;
    background-position: right 16px top 50%, 0 0;
}

.ui-datepicker.ui-widget select option {
  background-color: #f8f8f8;
  color: #333;
}

.ui-datepicker.ui-widget select:focus,
.ui-datepicker.ui-widget select:focus-visible {
  outline: none;
}

.ui-datepicker.ui-widget table,
.ui-datepicker.ui-widget th,
.ui-datepicker.ui-widget td {
  background-color: transparent;
  padding: 9px 12px;
  border: none;
  color: #000;
}

.ui-datepicker.ui-widget table a {
  color: #000;
}

.ui-datepicker.ui-widget
  table
  .ui-datepicker-unselectable.ui-state-disabled
  span {
  color: #ccc;
}

.ui-datepicker.ui-widget table .ui-datepicker-current-day {
  background-color: #333;
  border-radius: 8px;
}

.ui-datepicker.ui-widget table .ui-datepicker-current-day a {
  color: #fff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Tablet styles for thank you modal */
  .thank-you-content-body .next-steps {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Tablet and small screen styles for thank you modal */
  .thank-you-content {
    width: 85%;
    padding: 40px 32px;
  }

  .thank-you-content .thank-you-icon {
    width: 80px;
    height: 80px !important;
    font-size: 32px;
  }

  .thank-you-content-body h3 {
    font-size: 36px;
    margin-top: 32px;
  }

  .thank-you-content-body h4 {
    font-size: 28px;
    margin-top: 32px;
  }

  .thank-you-content-body .next-steps {
    margin-top: 32px;
  }

  .thank-you-content-body .next-step {
    padding: 20px;
  }

  .thank-you-content-body .next-step h5 {
    font-size: 24px;
    line-height: 30px;
  }

  .thank-you-content-foot {
    margin-top: 32px;
  }

  .thank-you-content-foot a {
    margin-top: 32px;
    width: 70%;
  }
}

@media (max-width: 480px) {
  .travel-survey-form-container div.space-height {
    height: 40px;
  }

  .travel-survey-form-section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .travel-survey-form-section-head h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
  }

  .travel-survey-form-section-head p {
    font-size: 16px;
  }

  .travel-survey-form-section-body.travel-survey-form-section-body-2grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .travel-survey-form-body-aside-images {
    /* display: none; */
  }

  .travel-survey-form-plan .travel-survey-travelers-age-inputs {
    grid-template-columns: repeat(1, 1fr);
  }

  .travel-survey-form-section-body.contact-infomations {
    grid-template-columns: repeat(1, 1fr);
  }

  .travel-survey-form-body-aside-images
    .aside-image-with-tips
    .aside-image-with-tips-content {
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    height: 160px;
    padding: 20px 40px 20px 20px;
  }

  .travel-survey-form-city-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .travel-survey-form-city-options .city-option-content{
        padding: 14px;
    }

    #travel-survey-city-other-option{
        grid-column: 1 / -1;
        padding-top: 50%;
    }
    
    .city-option-content .city-option-name {
        font-size: 20px;
    }

    .city-option-content .city-option-desc {
        font-size: 14px;
    }

  .thank-you-content-body .next-steps {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }

  /* Thank you modal mobile styles */
  .thank-you-content {
    width: 92%;
    padding: 32px 24px;
  }

  .thank-you-close-btn {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .thank-you-close-btn svg {
    width: 20px;
    height: 20px;
  }

  .thank-you-content .thank-you-icon {
    width: 60px;
    height: 60px !important;
    font-size: 24px;
    border: 6px solid #c8ffea;
  }

  .thank-you-content-body h3 {
    font-size: 28px;
    margin-top: 24px;
  }

  .thank-you-content-body p {
    font-size: 18px;
    line-height: 22px;
  }

  .thank-you-content-body h4 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 32px;
  }

  .thank-you-content-body .next-steps {
    margin-top: 24px;
  }

  .thank-you-content-body .next-step {
    padding: 16px;
  }

  .thank-you-content-body .next-step h5 {
    font-size: 20px;
    line-height: 26px;
  }

  .thank-you-content-body .next-step p {
    font-size: 16px;
    line-height: 20px;
    margin-top: 12px;
  }

  .thank-you-content-foot {
    margin-top: 24px;
  }

  .thank-you-content-foot p {
    font-size: 16px;
    line-height: 20px;
  }

  .thank-you-content-foot a {
    margin-top: 24px;
    width: 90%;
    font-size: 14px;
    padding: 12px 20px;
  }
}
