/* ============================================================
   QUOTATION SECTION
   ============================================================ */
.quotation-section {
  position: relative;
  background: var(--brand-cream);
  overflow: hidden;
}
.quotation-section__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ev-pale) 0%, var(--brand-cream) 60%);
  pointer-events: none;
}
.quotation-section .container { position: relative; z-index: 2; }
.quotation-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.quotation-info { padding-top: 20px; }
.quotation-info__title { color: var(--brand-dark); }
.quotation-info__title em { color: var(--brand-maroon); }

/* Contact List */
.quotation-contact-list { display: flex; flex-direction: column; gap: 20px; }
.quotation-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.quotation-contact-item__icon {
  width: 44px; height: 44px;
  background: var(--ev-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-maroon);
  flex-shrink: 0;
}
.quotation-contact-item__icon svg { width: 20px; height: 20px; }
.quotation-contact-item__value {
  display: block;
  font-weight: 500;
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 4px;
  text-decoration: none;
}
a.quotation-contact-item__value:hover { color: var(--brand-maroon); }

.quotation-ornament {
  position: absolute;
  bottom: 40px; left: 0;
  width: 220px; height: 220px;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.quotation-form-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,154,90,0.12);
}
.quotation-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { margin-bottom: 20px; }
.form-field__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-field__label span { color: var(--brand-maroon); }
.form-field__input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--brand-gold-pale);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brand-dark);
  background: var(--brand-cream);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-field__input:focus {
  border-color: var(--brand-maroon);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107,30,30,0.08);
}
.form-field__input.error { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.form-field__input::placeholder { color: var(--text-muted); }
.form-field__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C4A35' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-field__textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

/* File Drop Zone */
.form-field__file-drop {
  position: relative;
  border: 2px dashed var(--brand-gold-pale);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--t-fast);
  background: var(--brand-cream);
  text-align: center;
}
.form-field__file-drop:hover,
.form-field__file-drop.dragover { border-color: var(--brand-maroon); background: var(--ev-pale); }
.form-field__file-drop svg { width: 32px; height: 32px; color: var(--brand-gold); }
.form-field__file-drop span { font-size: 0.9rem; color: var(--text-secondary); }
.form-field__file-hint { font-size: 0.78rem; color: var(--text-muted); }
.form-field__file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.form-field__file-preview { padding: 10px 0; font-size: 0.85rem; color: var(--brand-maroon); font-weight: 500; }

/* Submit */
.quotation-form__submit { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.quotation-form__btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 0.95rem; }
.quotation-form__btn svg { width: 18px; height: 18px; }
.quotation-form__privacy { color: var(--text-muted); font-size: 0.78rem; }

/* Response */
.quotation-form__response {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
}
.quotation-form__response.success { background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; }
.quotation-form__response.error { background: #fdedec; color: #c0392b; border: 1px solid #f5b7b1; }

/* Loading state */
.quotation-form__btn.loading { opacity: 0.7; pointer-events: none; cursor: not-allowed; }
.quotation-form__btn.loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE — FORMS
   ============================================================ */
@media (max-width: 900px) {
  .quotation-grid { grid-template-columns: 1fr; }
  .quotation-ornament { display: none; }
}
@media (max-width: 600px) {
  .quotation-form__row { grid-template-columns: 1fr; }
  .quotation-form-wrap { padding: 28px 20px; }
}
