/* ─── MAIN CONTACT LAYOUT ────────────────────────────────────── */
#contact-main { padding: var(--section-pad) 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
@media(max-width:1024px){ .contact-layout { grid-template-columns: 1fr; gap: 56px; } }

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 48px; }
@media(max-width:600px){ .form-card { padding: 28px 24px; } }
.form-card-title { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.form-card-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media(max-width:560px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(142,119,84,0.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #EF4444; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.form-error-msg { font-size: 12px; color: #EF4444; margin-top: 3px; }
.form-divider { height: 1px; background: var(--border); margin: 28px 0; }
.form-submit {
  width: 100%; padding: 14px 24px; background: var(--ink); color: #fff;
  border: none; border-radius: 6px; font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em; cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px;
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-legal { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ─── SUCCESS STATE ──────────────────────────────────────────── */
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 24px; gap: 16px; }
.form-success.visible { display: flex; }
.form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: #F0FDF4; display: grid; place-items: center; flex-shrink: 0; }
.form-success-title { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); }
.form-success-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 320px; }

/* ─── SIDEBAR INFO ───────────────────────────────────────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: 32px; }
.info-block { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.info-block-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:first-of-type { padding-top: 0; }
.contact-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-item-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; color: var(--muted); }
.contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-value { font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; display: block; transition: color 0.2s; }
a.contact-item-value:hover { color: var(--accent); }
.contact-item-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── AVAILABILITY BADGE ─────────────────────────────────────── */
.availability { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 8px; }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; flex-shrink: 0; animation: blink 2.2s infinite; }
.availability-text { font-size: 13px; font-weight: 600; color: #166534; line-height: 1.4; }
.availability-sub { font-size: 12px; color: #15803D; }

/* ─── CONTACT PAGE FAQ ─────────────────────────────────────── */
#contact-faq { padding: var(--section-pad) 0; background: var(--surface); border-top: 1px solid var(--border); }
