.tut-consulting-form-widget-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  font-family: var(--inter-font-family);
  padding: 0px 10px;
}

.country-options {
  width: max-content !important;
}

.form-container {
  backdrop-filter: blur(5px);
  position: relative;
  overflow: clip;
}

.form-container {
  width: 100%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-container::before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: #ff000073; */
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(12px) brightness(1.2);
  opacity: 1;
  background-image: url(https://turnuptechnologies.net/tut/wp-content/plugins/tut-elementor-extension/assets/images/world%20horizon.webp);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.tut-consulting-form-widget-main-container label {
  color: rgb(255 255 255);
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 300;
  font-style: italic;
}

input,
textarea,
select {
  background: rgb(0 0 0 / 5%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  font-family: var(--inter-font-family);
}

.budget-dropdown,
.country-dropdown {
  position: relative;
  background: rgb(0 0 0 / 5%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 18px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  font-family: var(--inter-font-family);
}

/* Subtle Light Grey Scrollbar */

/* Chrome, Edge, Safari */
.budget-options::-webkit-scrollbar,
.country-options::-webkit-scrollbar {
  width: 2px;
  height: 8px;
}

.budget-options::-webkit-scrollbar-track,
.country-options::-webkit-scrollbar-track {
  background: transparent;
}

.budget-options::-webkit-scrollbar-thumb,
.country-options::-webkit-scrollbar-thumb {
  background-color: #74747474;
  border-radius: 10px;
  border: 2px solid transparent; /* creates spacing */
  background-clip: content-box;
}

.budget-options::-webkit-scrollbar-thumb:hover,
.country-options::-webkit-scrollbar-thumb:hover {
  background-color: #747474;
}

.budget-options,
.country-options {
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  font-family: var(--inter-font-family);
  position: absolute;
  left: 0;
  top: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.829);
  font-family: var(--inter-font-family);
}

input:focus,
textarea:focus,
select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.phone-input-wrapper {
  display: flex;
  gap: 10px;
}

.country-select {
  /* width: 80px; */
  flex-shrink: 0;
  cursor: pointer;
  /* padding: 14px 8px; */
}

.phone-input {
  flex: 1;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1e5aa8 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.tut-consulting-form-widget-main-container
  .tut-launchpad-slider-widget-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }
}

.success-message {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.budget-dropdown {
  position: relative;
  cursor: pointer;
}

.budget-options,
.country-options {
  backdrop-filter: blur(9px);
  width: 100%;
  display: block;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  z-index: 2;
  padding: 6px 0px;
  background: #000a1be6;
  overflow: hidden;
  height: 0px;
}

.budget-option {
  padding: 6px 16px;
  transition: 0.2s ease;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 6px;
  align-items: center;
}

.country-option {
  padding: 6px 12px;
  transition: 0.2s ease;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 6px;
  align-items: center;
  justify-content: flex-start;
}

.budget-option:hover,
.country-option:hover {
  background: #ffffff0d;
}

.country-selected {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 4px;
  align-items: center;
}

.success-message,
.error-message {
  display: none;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-message.show,
.error-message.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
