/* ═══ Contact page specific styles ═══ */

/* Contact card title */
.contact-card-title {
  font-size: 18px;
  margin-bottom: 24px;
}

/* Legal info block */
.legal-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
}

/* Form lead text */
.form-lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Form checkbox row */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--accent);
}
.form-check label {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

/* Block button */
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Success message */
.success-msg {
  display: none;
  background: rgba(0,168,120,0.08);
  border: 1px solid rgba(0,168,120,0.25);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.success-msg.visible {
  display: block;
}
.success-icon {
  font-size: 32px;
  color: var(--accent3);
  margin-bottom: 12px;
  display: block;
}
.success-title {
  color: var(--heading);
  margin-bottom: 6px;
}
.success-text {
  font-size: 14px;
  color: var(--muted);
}

/* Map section */
.map-container {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.map-card {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  text-align: center;
}
.map-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--heading);
}
.map-card-addr {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.map-card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--accent);
}

/* Legal list muted labels */
.legal-list span {
  color: var(--muted);
}
.legal-list div + div {
  margin-top: 4px;
}

/* Form section title */
.form-title {
  margin-bottom: 8px;
}

/* Map section zero padding */
.map-section {
  padding: 0;
}

/* Form controls */
.form-ctrl {
  cursor: pointer;
}
