/*CONTACT US PAGE*/
.contactus-main-div {
  gap: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: start;
  padding: 0 2%;
}

.contactus-sub-div {
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}

.contactus-location-item {
  margin-bottom: 20px;
}

.contactus-location-item p {
  margin: 0 0 6px 0;
  color: var(--brand-black);
  line-height: 1.5;
}

.contactus-direction-link {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contactus-direction-link:hover {
  font-weight: 800;
}

.contact-form {
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--theme-shadow-black);
  background: var(--theme-white);
}

.contact-form h3 {
  margin-bottom: 15px;
  text-align: center;
  color: var(--brand-black);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--theme-border-grey);
  border-radius: 10px;
  min-height: 40px;
  color: var(--brand-black);
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: var(--brand-red);
  color: var(--theme-white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  height: 50px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.8;
}

.phone-field {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  background: var(--theme-white);
  border: 1px solid var(--theme-border-grey);
  border-radius: 10px;
  height: 40px;
  width: 100%;
}

.country-code {
  padding: 8px;
  height: 40px;
  color: var(--brand-black);
}

.phone-field input {
  flex: 1;
  height: 40px;
  margin-top: 10px;
  border: none;
  background-color: transparent;
  border-radius: 10px;
}

@media(max-width:600px) {
  .contactus-main-div {
    flex-direction: column;
  }
}