/* ===============================
   GET QUOTE SECTION ONLY
================================ */

.get-quote-section {
  background: #E9F5FE;
  padding: 60px 20px;
}

.get-quote-section h2 {
  text-align: center;
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 30px;
}

/* Container */
.get-quote-container {
  max-width: 480px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Form */
.get-quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

/* Inputs & Select */
.get-quote-form input,
.get-quote-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d0d7de;
  font-size: 14px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.get-quote-form input:focus,
.get-quote-form select:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.15);
}

/* Button */
.quote-btn {
  margin-top: 10px;
  background: #1e88e5;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.quote-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .get-quote-container {
    padding: 22px;
  }
}
