/* Start custom CSS for html, class: .elementor-element-b5c138f *//* Full Width Background Section */
.quote-form-section {
  width: 100%;
  background: #0b3b2d;
  padding: 70px 20px;
  box-sizing: border-box;
  border-top: 3px solid #b08540;
  border-bottom: 3px solid #b08540;
}

/* Centered Form Box */
.quote-form-container {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  width: 70%;
  max-width: 900px;
  margin: auto;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(176,133,64,0.2);
  color: white;
}

/* Heading */
.quote-form-container h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 32px;
  border-bottom: 2px solid #b08540;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
}

/* Grid Form */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Full width field */
.input-field.full {
  grid-column: span 2;
}

.input-field label {
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #b08540;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: white;
  box-shadow: 0 0 10px rgba(176,133,64,0.4);
  outline: none;
}

textarea {
  height: 150px;
  resize: none;
}

/* Submit Button */
button {
  grid-column: span 2;
  width: 100%;
  background: #b08540;
  color: #0b3b2d;
  padding: 16px;
  font-size: 18px;
  border-radius: 6px;
  border: 2px solid #b08540;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

button:hover {
  background: transparent;
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .quote-form-container {
    width: 95%;
    padding: 30px;
  }

  form {
    grid-template-columns: 1fr;
  }

  button {
    grid-column: 1;
  }
}/* End custom CSS */