.get-quote-section {
  padding: 90px 0;
  position: relative;
}

.get-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31,94,75,0.08),
    rgba(201,162,106,0.08)
  );
  z-index: 0;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.section-header h1 span {
  color: var(--accent-gold);
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =========================
   Form Wrapper
========================= */
.quote-form-wrapper {
background:#fff;
padding:45px;
max-width:800px;
margin:0 auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* =========================
   Form Layout
========================= */
.quote-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.quote-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-form .full-width {
  width: 100%;
}

/* Labels */
.quote-form label {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Inputs */
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 15px 18px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  background: #fafafa;
  transition: all 0.3s ease;
}

.quote-form textarea {
  resize: vertical;
}

/* Focus State */
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 106, 0.18);
}

/* =========================
   Submit Button
========================= */
.btn-submit {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--dark-green)
  );
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 48px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

article.retail-interior-article p br {
    display: none;
}
.media-92812 img{    height: 450px;
    object-fit: cover;
    width: 100%;}
/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .quote-form-wrapper {
    padding: 35px 25px;
  }

  .quote-form .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .section-header h1 {
    font-size: 32px;
  }
}