#contact {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-bottom: 40px;
  gap: 20px;
  flex-direction: row;
}

.leftCol {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 30px);
  align-items: center;
  width: 100%;
}

.rightCol {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}

.contactForm {
  text-align-last: left;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: clamp(15px, 2vw, 25px);
  width: auto;
  margin: 0 clamp(50px, 6vw, 90px);
  box-sizing: border-box;
  justify-content: center;
}

.inputWrapper {
  background-color: #78720031;
  backdrop-filter: blur(14px);
  padding: clamp(10px, 1.5vw, 15px);
  border: 2px solid #ffffff3a;
  border-radius: 100px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1vw, 10px);
}

.messageWrapper {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 transparent;
  border-radius: 20px;
  resize: vertical;
  min-height: 100px;
}

.inputWrapper textarea {
  min-height: 100px;
}

.inputWrapper textarea::-webkit-resizer {
  background-color: transparent;
  border: none;
}

.inputWrapper:has(#phoneInput) {
  position: relative;
  z-index: 100 !important;
}

.inputWrapper input,
.inputWrapper textarea {
  flex: 1;
  height: 100%;
  color: #fff;
  background-color: transparent !important;
  font-family: "Manrope", sans-serif;
  border: none;
  outline: none;
}

.inputWrapper svg {
  height: clamp(16px, 1.5vw, 20px);
  width: clamp(16px, 1.5vw, 20px);
}

.beeImg {
  width: clamp(220px, 30vw, 320px);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Manrope", sans-serif !important;
}

.iti {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(5px, 1vw, 10px) !important;
}

/* Style the actual input field */
.iti input {
  flex: 1;
  height: 100% !important;
  border: none !important;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  outline: none;
  padding-left: clamp(76px, 10vw, 80px) !important;
}

/* The dropdown container */
.iti__country-list {
  background-color: var(--background-color) !important;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none !important;
  padding: 5px 0;
  position: relative !important;
  z-index: 1000 !important;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #2c2c2c;
}

/* Individual country items */
.iti__country {
  padding: 10px 15px;
  font-family: "Manrope", sans-serif;
}

/* Highlighted/Hovered state */
.iti__country.iti__highlight {
  background-color: #f0f7ff;
  color: #007bff;
}

/* The name of the country */
.iti__country-name {
  font-weight: 500;
  color: #d3d3d3 !important;
}

/* The dial code (+1, +44, etc.) */
.iti__dial-code {
  color: #bfbfbf !important;
}

.iti__selected-flag {
  padding: 0 !important;
}

.iti__flag {
  box-shadow: none !important;
  background-image: url("../src/flags@2x.png");
  background-size: 5652px 15px;
}

.iti__selected-dial-code {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #d3d3d3;
}

.submitBtn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(10px, 1.4vw, 14px) 28px;
  background: -o-linear-gradient(305deg, #2c2200, #201b00);
  background: linear-gradient(145deg, #2c2200, #201b00);
  border: 2px solid rgba(255, 239, 138, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0 0 20px rgba(255, 238, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 238, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.submitBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #eeff00, #7a7600, #ffff00);
  opacity: 0;
  z-index: -2;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.submitBtn:hover::before {
  opacity: 1;
}

.submitBtn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #2d2b00f8;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  border-radius: inherit;
  z-index: -1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.submitBtn:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 40px rgba(255, 247, 0, 0.2);
  box-shadow: 0 0 40px rgba(255, 247, 0, 0.2);
}

.submitBtn:hover .arrow {
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  color: #ffea00;
}

.leftColWrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.contactTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 0 clamp(50px, 6vw, 90px);
}

.contactTxt * {
  text-align: start;
  width: 100%;
  margin: 0;
  padding: 0;
}

.contactTxt h1 {
  font-size: clamp(24px, 6vw, 40px);
}

.contactTxt h3 {
  font-size: clamp(14px, 3vw, 25px);
}

.contactTxt h3 a {
  all: unset;
  color: #fff;
  transition: all 0.3s ease;
}

.contactTxt h3 a:hover {
  color: #ffee80;
  cursor: pointer;
}

.mailBeeImg {
  width: clamp(300px, 35vw, 400px);
}