
/* Wrapper */
.enquiry-wrapper {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Left Image */
.enquiry-image {
  flex: 1 1 40%;
  min-height: 400px;
}

.enquiry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Form */
.enquiry-form-container {
  flex: 1 1 60%;
  padding: 40px;
  background-color: #f9f9f9;
}

.enquiry-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
  font-family: "Poppins";
  font-weight: 600;
}

.enquiry-subtitle {
  margin-bottom: 25px;
  color: #000;
  font-size: 16px;
  font-family: "Poppins";
}

.enquiry-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.custom-input,
.custom-textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  transition: border 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
  border-color: #00a88e;
  outline: none;
}

.full-width {
  width: 100%;
}

.custom-btn {
  background-color: #00a88e;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.custom-btn:hover {
  background-color: #008f79;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .enquiry-wrapper {
    flex-direction: column;
  }

  .enquiry-form-container {
    padding: 25px;
  }

  .enquiry-title {
    font-size: 22px;
  }
}


/* Hide the image on small devices */
@media screen and (max-width: 768px) {
  .enquiry-image {
    display: none;
  }

  .enquiry-form-container {
    flex: 1 1 100%;
    padding: 30px 20px;
  }
}