.contact {
  background: #F1DEC0;
  padding: 80px 50px;
}

.contact-content {
  display: flex;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 70px;
  gap: 100px;
  align-items: flex-start;
}

.contact-content-home {
  display: flex;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 70px;
  gap: 30px;
  align-items: flex-start;
}

.contact-section-home {
  padding: 0px;
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  color: #7C0C0C;
  margin-bottom: 40px;
  margin-top: 20px;
}

.contact-section {
  margin-bottom: 40px;
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 60px;
  color: #4B0A0A;
  margin-bottom: 20px;
  margin-top: 20px;
}

.contact-address {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 39px;
  color: #7C0C0C;
  max-width: 707px;
}

.contact-details p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 49px;
  color: #7C0C0C;
  margin-bottom: 10px;
}

.contact-form-container {
  flex: 1;
  background: #7C0C0C;
  border-radius: 30px;
  padding: 30px;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-input,
.form-select,
.form-textarea {
  background: #F1DEC0;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #7C0C0C;
  width: 100%;
  height: 50px;
}

.form-select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  background-image: url("../images/down-arrow.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  padding-right: 60px;
}

.form-textarea {
  height: 142px;
  resize: vertical;
  padding-top: 12px;
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #7C0C0C;
  opacity: 1;
}

.submit-btn {
  background: #FF7A00;
  border: none;
  border-radius: 49px;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #7C0C0C;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 187px;
  height: 56px;
  align-self: center;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #FF7D12;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-content {
    gap: 50px;
  }

  .contact-title {
    font-size: 36px;
    line-height: 54px;
  }

  .contact-subtitle {
    font-size: 28px;
    line-height: 42px;
  }

  .contact-address {
    font-size: 24px;
    line-height: 32px;
  }

  .contact-details p {
    font-size: 24px;
    line-height: 32px;
  }

  .form-title {
    font-size: 36px;
    line-height: 54px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 24px;
    line-height: 30px;
    height: 70px;
  }

  .form-textarea {
    height: 120px;
  }
}

@media (max-width: 968px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {

  .contact-content {
    padding: 0;
  }

  .contact {
    padding: 110px 20px;
  }

  .contact-title {
    font-size: 28px;
    line-height: 42px;
  }

  .contact-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .contact-address {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-details p {
    font-size: 18px;
    line-height: 24px;
  }

  .form-title {
    font-size: 24px;
    line-height: 36px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 18px;
    line-height: 24px;
    height: 60px;
    padding: 10px 15px;
  }

  .form-textarea {
    height: 100px;
  }

  .submit-btn {
    font-size: 20px;
    line-height: 30px;
    width: 150px;
    height: 45px;
  }
}