.wa-enquiry-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
  border-top: 3px solid #25D366;
  padding: 2.5rem 1.25rem;
  margin-top: 2rem;
}
.wa-enquiry-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e0e8f5;
}
.wa-enquiry-section h2 {
  color: #1e3c72;
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 0.35rem;
}
.wa-enquiry-intro {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.wa-enquiry-form { display: grid; gap: 14px; }
.wa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wa-form-group { display: flex; flex-direction: column; gap: 5px; }
.wa-form-group label { font-size: 13px; font-weight: 600; color: #1e3c72; }
.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
  padding: 11px 14px;
  border: 1px solid #ccd6e8;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}
.wa-form-group textarea { min-height: 80px; resize: vertical; }
.wa-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.wa-submit-btn:hover { background: #1da851; }
.wa-submit-btn svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.wa-form-note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}
.wa-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
}
.wa-float-btn svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 600px) {
  .wa-form-row { grid-template-columns: 1fr; }
  .wa-float-btn { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
