/* Shared "Get a Quote" modal styles.
   Include this on every page that has a #quoteBtn button. */

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.quote-modal-overlay[hidden] {
  display: none;
}
.quote-modal {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}
.quote-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
}
.quote-modal h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: #004080;
  font-family: 'Montserrat', sans-serif;
}
.quote-modal label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}
.quote-modal input,
.quote-modal select,
.quote-modal textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}
.quote-modal textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.quote-modal-optional {
  font-weight: 400;
  color: #888;
}
.quote-modal-status {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.1rem;
}
.quote-modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.quote-modal-actions button {
  flex: 1;
}
.quote-modal .whatsapp-submit {
  margin-top: 0;
  background: #25D366;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.quote-modal .whatsapp-submit:hover {
  background: #1ebe5b;
}
.quote-modal .email-submit {
  margin-top: 0;
  background: #fff;
  color: #004080;
  padding: 0.9rem;
  border: 2px solid #004080;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.quote-modal .email-submit:hover {
  background: #f0f5fb;
}