/* ── Contact page ─────────────────────────────────────────────────────────── */

/* Main body: sidebar + form */
.contact-body {
  background: var(--off-white, #f8f7f4);
  padding: 4rem 1.5rem 5rem;
}
.contact-body__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-body__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Sidebar */
.contact-sidebar__title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy, #13325e);
  margin: 0 0 0.6rem;
}
.contact-sidebar__intro {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 1.75rem;
}

.contact-details {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #2d3748;
  line-height: 1.6;
}
.contact-details__icon {
  width: 1.6rem;
  flex-shrink: 0;
  color: var(--gold, #b8972a);
  font-size: 0.95rem;
  padding-top: 0.1rem;
}
.contact-details__item a {
  color: var(--navy, #13325e);
  text-decoration: none;
}
.contact-details__item a:hover { text-decoration: underline; }

.contact-social {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--navy, #13325e);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.contact-social a:hover { background: var(--gold, #b8972a); transform: translateY(-2px); }

.contact-join-nudge {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #eef3fa;
  border-left: 3px solid var(--navy, #13325e);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1rem;
  font-size: 0.87rem;
  color: #2d3748;
  line-height: 1.55;
}
.contact-join-nudge i {
  color: var(--navy, #13325e);
  margin-top: 0.15rem;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-join-nudge a {
  color: var(--navy, #13325e);
  font-weight: 600;
}
.contact-join-nudge p { margin: 0; }

/* Form wrapper — white card */
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* ── Legacy / shared classes ───────────────────────────────────────────────── */
.frm-section-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ugle-blue);
  margin-bottom: 0.2rem;
}
.frm-section-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.contact-map-section {
  background: var(--ugle-blue);
  padding: 3.5rem 1.5rem;
}
.contact-map-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 640px) {
  .contact-map-inner { grid-template-columns: 1fr; }
}

.contact-address__title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.contact-address__details {
  font-style: normal;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  line-height: 1.8;
}
.contact-address__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--accent-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-address__link:hover { color: #fff; }

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 8px;
  display: block;
}
