/* ============================================================
   ELEVAX — Contact Page Styles
   ============================================================ */

/* ─── Contact Section ────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-form-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--faint);
  margin-top: 12px;
  justify-content: center;
}

/* Contact channels */
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 12px;
}
.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.contact-channel.whatsapp {
  border-color: rgba(37,211,102,0.2);
  background: rgba(37,211,102,0.04);
}
.contact-channel.whatsapp:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.08);
}
.cc-icon {
  width: 44px; height: 44px;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-icon.phone {
  background: rgba(0,212,255,0.1);
  color: var(--accent);
}
.cc-icon.email {
  background: rgba(77,159,255,0.1);
  color: var(--blue);
}
.cc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.cc-label { font-size: 12px; color: var(--faint); }
.cc-value { font-size: 15px; font-weight: 700; }
.cc-arrow { color: var(--muted); flex-shrink: 0; }

/* Office card */
.office-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  margin-top: 4px;
}
.office-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.office-icon { font-size: 28px; }
.office-title { font-size: 15px; font-weight: 700; }
.office-subtitle { font-size: 12px; color: var(--faint); }
.office-card address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.office-hours { display: flex; flex-direction: column; gap: 8px; }
.oh-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.oh-row:last-child { border-bottom: none; }
.oh-row.emergency { color: var(--accent-green); font-weight: 600; }
.oh-row.emergency span:last-child { color: var(--accent-green); }

/* Response promise */
.response-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.rp-icon { font-size: 24px; flex-shrink: 0; }
.rp-title { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 3px; }
.rp-desc { font-size: 12px; color: var(--faint); }

/* ─── Map Section ────────────────────────────────────────────── */
.map-section {
  padding: 0 0 80px;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder {
  background: linear-gradient(135deg, var(--card), var(--surface));
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.map-pin { font-size: 48px; }
.map-label {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

/* ─── FAQ Section ────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0 100px;
  background: var(--surface);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,212,255,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--faint);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
