.contact-hero {
  min-height: 32vh; display: grid; place-items: center; text-align: center;
  color: var(--white);
  background-color: #0a1628;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(224,116,42,0.06) 10px, rgba(224,116,42,0.06) 11px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(224,116,42,0.06) 10px, rgba(224,116,42,0.06) 11px),
    radial-gradient(ellipse at 70% 30%, rgba(224,116,42,0.12) 0%, transparent 55%),
    linear-gradient(160deg, #0f1d32 0%, #0a1628 50%, #0f2440 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 130px 24px 56px;
}
.contact-hero-inner { max-width: 680px; }
.contact-hero h1 { margin: 0; font-size: 2.8rem; line-height: 1.12; font-weight: 800; }
.contact-hero p:last-child { margin: 16px 0 0; color: rgba(255,255,255,0.7); font-size: 1rem; }

.quote-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.quote-form-large { padding: 36px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(15,23,42,0.06); display: grid; gap: 20px; }
.quote-form-large h2 { margin: 0 0 4px; font-size: 1.6rem; }
.quote-form-large .form-subtitle { margin: 0 0 4px; color: var(--steel-2); font-size: 0.94rem; }
.quote-form-large label { display: grid; gap: 6px; color: var(--steel); font-weight: 700; font-size: 0.94rem; }
.quote-form-large input, .quote-form-large textarea, .quote-form-large select { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--ink); font: inherit; font-size: 0.94rem; background: #fbfcfc; border: 1px solid var(--line); border-radius: var(--radius); }
.quote-form-large textarea { resize: vertical; min-height: 120px; }
.quote-form-large .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form-large .submit-btn { width: 100%; min-height: 52px; font-size: 0.94rem; font-weight: 800; margin-top: 4px; }
.quote-form-large .file-hint { font-size: 0.82rem; color: var(--steel-2); margin-top: -8px; }

.contact-sidebar { display: grid; gap: 20px; }
.contact-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(15,23,42,0.06); }
.contact-card h3 { margin: 0 0 14px; font-size: 1.15rem; }
.contact-card p { margin: 0 0 6px; color: var(--steel-2); font-size: 0.94rem; }
.contact-card .contact-value { color: var(--ink); font-weight: 700; }
.whatsapp-card { background: #25D366; color: var(--white); border-color: #25D366; text-align: center; }
.whatsapp-card h3, .whatsapp-card p { color: var(--white); }
.whatsapp-card .whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 28px; background: var(--white); color: #25D366; font-weight: 800; font-size: 1rem; border-radius: var(--radius); text-decoration: none; transition: transform 0.15s; }
.whatsapp-card .whatsapp-btn:hover { transform: scale(1.03); }
.whatsapp-card .whatsapp-btn svg { width: 22px; height: 22px; fill: #25D366; }
.trust-strip { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trust-strip span { padding: 6px 14px; background: rgba(224,116,42,0.08); color: var(--orange-dark); font-size: 0.82rem; font-weight: 700; border-radius: 20px; }

@media (max-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2rem; }
}
@media (max-width: 640px) {
  .contact-hero { padding-top: 110px; padding-bottom: 40px; min-height: 28vh; }
  .contact-hero h1 { font-size: 1.7rem; }
  .quote-form-large { padding: 24px; }
  .quote-form-large .form-row { grid-template-columns: 1fr; }
}
