/* ════════════════════════════════════════════════════════════
   Freedom Discovery — Contact page (extends home.css)
   ════════════════════════════════════════════════════════════ */

/* ─── Two-column layout: info aside + form ─── */
.contact-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}

/* ── Info aside ── */
.contact-aside .ca-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.contact-aside h2 {
  font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; color: var(--ink);
  line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 16px;
}
.contact-aside .ca-intro { color: var(--body); line-height: 1.8; font-size: 15px; margin-bottom: 30px; }

.ci-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ci-item {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.ci-item:hover { transform: translateY(-3px); border-color: rgba(47,100,224,0.28); box-shadow: 0 18px 40px rgba(8,26,77,0.1); }
.ci-icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 19px; color: #fff; background: linear-gradient(150deg, var(--blue-bright), var(--blue));
}
.ci-icon.orange { background: linear-gradient(150deg, #f9a04a, var(--orange)); }
.ci-icon.deep   { background: linear-gradient(150deg, var(--blue), var(--blue-deep)); }
.ci-body { min-width: 0; }
.ci-body .ci-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ci-body a, .ci-body span { display: block; font-size: 15.5px; font-weight: 600; color: var(--ink); margin-top: 3px; word-break: break-word; }
.ci-body a:hover { color: var(--blue); }

/* WhatsApp highlight */
.ca-whatsapp {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 20px 22px; border-radius: 18px; margin-bottom: 26px;
  background: linear-gradient(135deg, #25d366, #128c5e); color: #fff;
  box-shadow: 0 18px 40px rgba(18,140,94,0.32);
}
.ca-whatsapp .caw-text { display: flex; align-items: center; gap: 14px; }
.ca-whatsapp .caw-text i { font-size: 30px; }
.ca-whatsapp h4 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.ca-whatsapp p { font-size: 12.5px; opacity: 0.9; margin-top: 2px; }
.ca-whatsapp .caw-btn {
  flex: none; background: #fff; color: #128c5e; font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; transition: transform 0.2s var(--ease);
}
.ca-whatsapp .caw-btn:hover { transform: scale(1.04); }

.ca-socials { display: flex; align-items: center; gap: 12px; }
.ca-socials span { font-size: 13px; font-weight: 600; color: var(--muted); }
.ca-socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--soft); border: 1px solid var(--line); color: var(--blue); font-size: 15px;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}
.ca-socials a:hover { transform: translateY(-3px); background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Form card ── */
.contact-form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(26px, 3.4vw, 42px); box-shadow: 0 30px 70px rgba(8,26,77,0.12);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-form-card .cf-sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--soft); transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-bright); background: var(--white);
  box-shadow: 0 0 0 4px rgba(47,100,224,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.cf-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .ca-whatsapp { flex-direction: column; align-items: flex-start; }
}

/* ─── Map ─── */
.contact-map { line-height: 0; }
.contact-map iframe {
  width: 100%; height: 460px; border: 0; display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* ─── Closing quote ─── */
.closing { text-align: center; max-width: 760px; margin: 0 auto; }
.closing img { width: 84px; margin: 0 auto 22px; opacity: 0.95; }
.closing h2 {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px); color: var(--ink); line-height: 1.3; margin-bottom: 18px;
}
.closing p { color: var(--body); line-height: 1.9; font-size: 15px; }
.closing .closing-divider { width: 60px; height: 3px; background: var(--orange); border-radius: 3px; margin: 26px auto; }
.closing .closing-sign { font-weight: 700; color: var(--blue); letter-spacing: 0.02em; }
