.quote-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(22, 33, 72, 0.18);
}

.quote-modal .modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: #ffffff;
}

.quote-modal .btn-close {
  box-shadow: none;
}

.quote-modal-body {
  padding: 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  min-height: 620px;
}

.quote-form-pane {
  padding: 42px 34px 34px;
  color: #141414;
}

.quote-title {
  margin: 0 0 10px;
  color: #121212;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.quote-copy {
  margin: 0 0 24px;
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
}

.quote-feedback {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 700;
}

.quote-feedback.is-success {
  background: #eefbf0;
  color: #18753a;
  border: 1px solid #ccebd3;
}

.quote-feedback.is-error {
  background: #fff1f0;
  color: #b43c33;
  border: 1px solid #f1c7c3;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-field,
.quote-field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-label {
  color: #272727;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 700;
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 12px;
  background: #fbfbfb;
  color: #141414;
  padding: 14px 16px;
  font-size: 0.96rem;
  line-height: 1.3;
  font-weight: 600;
  outline: none;
  box-shadow: none;
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  border-color: #f0b91f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(240, 185, 31, 0.12);
}

.quote-textarea {
  min-height: 126px;
  resize: vertical;
}

.quote-submit {
  min-height: 54px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff7b1e, #dc420d);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 28px rgba(220, 66, 13, 0.18);
}

.quote-image-pane {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(20, 34, 10, 0.12), rgba(15, 18, 8, 0.22)),
    url("../adf.jpg") center center / cover no-repeat;
}

.quote-image-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.12)),
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 24%, transparent 76%, rgba(255,255,255,0.08));
}

.quote-image-pane::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("../ChatGPT Image Apr 21, 2026, 06_52_30 AM.png") center bottom / contain no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .quote-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .quote-form-pane {
    padding: 28px 18px 22px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }

  .quote-image-pane {
    display: none;
  }
}
