/* Contact page */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
/* Grid items default to min-width:auto, which lets unbreakable content (e.g. an
   email address) force the track wider than the viewport — reset it. */
.contact-layout > * { min-width: 0; }
.contact-info h2 { font-size: 1.4rem; font-weight: 900; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.contact-info > p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.contact-method:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: rgba(229,9,20,0.15); }
.contact-method-icon { font-size: 1.4rem; width: 48px; height: 48px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-icon.wa { background: rgba(37,211,102,0.1); }
.contact-method-icon.email { background: rgba(229,9,20,0.07); }
.contact-method-text { flex: 1; min-width: 0; }
.contact-method-name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.contact-method-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; overflow-wrap: break-word; }
.contact-method-arrow { margin-left: auto; color: var(--red); font-weight: 700; flex-shrink: 0; }
.response-time { background: rgba(229,9,20,0.05); border: 1px solid rgba(229,9,20,0.15); border-radius: var(--radius-md); padding: 1.1rem 1.4rem; }
.response-time p { font-size: 0.85rem; color: #4a4a68; line-height: 1.6; margin: 0; }
.response-time strong { color: var(--ink); }

.contact-form-card { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.contact-form-title { font-size: 1.25rem; font-weight: 900; color: var(--ink); margin-bottom: 0.4rem; }
.contact-form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.75rem; }
