/* ===== v7 CONTACT — page-specific styles (loads after v7-shared.css) ===== */

.ct-hero { padding: 56px 0 32px; }
.ct-hero h1 { font-size: 56px; }

.ct-grid { padding: 32px 0 96px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }

/* Form card */
.ct-form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-md); }
.ct-form-card h2 { font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--ink); }
.ct-form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea { padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.15s; background: var(--bg); color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-field.full { grid-column: 1 / -1; }
.ct-form-card button[type="submit"] { width: 100%; margin-top: 20px; }

/* Alerts (form success / error) */
.ct-alert { padding: 16px 18px; border-radius: var(--r-md); font-size: 14px; line-height: 1.5; margin-bottom: 22px; }
.ct-alert.ok { background: #DEF7E5; color: var(--jade); border: 1px solid #B7E9C4; }
.ct-alert.err { background: #FCE8E6; color: #A23B2E; border: 1px solid #F3C8C2; }

/* Side info cards */
.ct-side { display: flex; flex-direction: column; gap: 24px; }
.ct-side-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.ct-side-card .icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--saffron-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.ct-side-card h3 { font-family: 'Inter Tight', sans-serif; font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.ct-side-card p { font-size: 13px; line-height: 1.55; color: var(--ink-2); margin-bottom: 12px; }
.ct-side-card p:last-child { margin-bottom: 0; }
.ct-side-card a { color: var(--plum); font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.ct-side-card a:hover { color: var(--saffron-deep); }

/* Quick-answers FAQ */
.ct-faq { padding: 96px 0; background: var(--bg-soft); }
.faq-list { max-width: 720px; margin: 32px auto 0; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item h4::after { content: '?'; color: var(--saffron-deep); font-size: 18px; font-weight: 800; line-height: 0.8; flex-shrink: 0; }
.faq-item p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.faq-item p a { color: var(--plum); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.faq-item p a:hover { color: var(--saffron-deep); }

@media (max-width: 1024px) {
  .ct-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-hero h1 { font-size: 40px; }
  .ct-form-card { padding: 28px; }
}
