/* ============================================================
   CONTACT PAGE (contact.html) — Page-specific styles
   ============================================================ */

/* ── LAYOUT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 100px); align-items: start;
  padding: clamp(100px, 12vw, 140px) var(--px) var(--py);
}

/* ── LEFT PANEL ── */
.contact-left { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 36px; }
.contact-headline { color: white; }
.contact-sub  { font-size: clamp(15px, 1.4vw, 17px); color: var(--text-muted); line-height: 1.78; max-width: 400px; }
.contact-quote { border-left: 2px solid var(--blue); padding-left: 20px; font-family: var(--display); font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; color: var(--text-light); line-height: 1.4; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-detail  { display: flex; align-items: center; gap: 14px; }
.detail-icon { width: 36px; height: 36px; background: var(--blue-dim); border: 1px solid rgba(21,102,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-icon svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.detail-text   { font-size: 14px; color: var(--text-muted); }
.detail-text a { color: var(--text-light); transition: color 0.2s; }
.detail-text a:hover { color: var(--blue); }
.social-row   { display: flex; gap: 12px; margin-top: 4px; }
.social-link  { width: 40px; height: 40px; border: 1px solid var(--bd-dark); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-link:hover { border-color: var(--blue); background: var(--blue-dim); }
.social-link svg   { width: 16px; height: 16px; fill: var(--text-muted); transition: fill 0.2s; }
.social-link:hover svg { fill: var(--blue); }

/* ── FORM WRAPPER ── */
.contact-form-wrap { background: var(--navy-surf); border: 1px solid var(--bd-dark); padding: clamp(36px, 4vw, 56px); }
.form-title { font-family: var(--display); font-size: 28px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 32px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--text-muted); text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--navy-mid); border: 1px solid var(--bd-dark);
  color: var(--text-light); font-family: var(--body); font-size: 15px;
  padding: 14px 16px; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); font-size: 14px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,102,255,0.12); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23637291' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select option { background: var(--navy-mid); }
.form-textarea      { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin: 8px 0 24px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.form-check-label   { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.form-check-label a { color: var(--blue); }
.form-submit { width: 100%; padding: 16px; font-size: 15px; }
.form-note   { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ── SUCCESS STATE ── */
.form-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 20px; padding: 40px 0;
}
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.success-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 2.5; fill: none; }
.success-title { font-family: var(--display); font-size: 28px; font-weight: 700; color: white; text-transform: uppercase; }
.success-body  { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 380px; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--bd-dark); border: 1px solid var(--bd-dark);
}
.why-card  { background: var(--navy-mid); padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; }
.why-icon  { width: 40px; height: 40px; color: var(--blue); }
.why-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.03em; }
.why-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid  { grid-template-columns: 1fr; padding-top: 120px; }
  .contact-left  { position: static; }
  .form-row      { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
}
