/* ══════════════════════════════════════
   contact.css  (contact + hotline + report)
   ══════════════════════════════════════ */

/* ── Section title ───────────────────── */
.contact-section-title {
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--cesm-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* ── Info block (plain text) ─────────── */
.contact-info-block {
  font-size: .95rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.9;
  margin-bottom: .5rem;
}
.contact-info-block p { margin-bottom: .6rem; }
.contact-info-block a {
  color: #782AA0;
  text-decoration: none;
  font-weight: 400;
}
.contact-info-block a:hover { text-decoration: underline; }
.contact-label {
  color: #374151;
  font-weight: 300;
}

/* ── Social ──────────────────────────── */
.contact-social {
  display: flex;
  gap: .65rem;
  padding: .25rem 0;
}
.contact-social-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.contact-social-btn:hover { background: var(--cesm-primary); color: #fff; }

/* ── Map ────────────────────────────── */
.contact-map {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  height: 460px;
}
.contact-map iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ══════════════════════════════════════
   HOTLINE
   ══════════════════════════════════════ */
.hotline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hotline-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.hotline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
.hotline-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--g-100);
  color: var(--g-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hotline-body { flex: 1; }
.hotline-dept {
  font-size: .85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: .25rem;
  line-height: 1.45;
}
.hotline-name {
  font-size: .8rem;
  color: #6b7280;
  margin-bottom: .35rem;
}
.hotline-contact {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--g-600);
  text-decoration: none;
  margin-top: .2rem;
  transition: color .2s;
}
.hotline-contact:hover { color: var(--g-800); text-decoration: underline; }

.hotline-general {
  background: var(--g-100);
  border-left: 4px solid var(--g-500);
  border-radius: 0 10px 10px 0;
  padding: .85rem 1.25rem;
  font-size: .82rem;
  color: var(--g-700);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
}

/* ══════════════════════════════════════
   REPORT (แจ้งเบาะแส)
   ══════════════════════════════════════ */
.report-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #7c2d12;
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.report-notice-icon {
  font-size: 1.6rem;
  color: #ea580c;
  flex-shrink: 0;
  margin-top: .1rem;
}

.report-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.report-channels { margin-bottom: 2rem; }
.report-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.report-channel-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.report-channel-card i {
  font-size: 1.75rem;
  color: var(--g-600);
}
.report-channel-label {
  font-size: .72rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .04em;
}
.report-channel-card a,
.report-channel-card span {
  font-size: .8rem;
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}
.report-channel-card a:hover { color: var(--g-600); text-decoration: underline; }

/* ── Responsive ──────────────────────── */
@media (max-width: 576px) {
  .hotline-grid { grid-template-columns: 1fr; }
  .report-channel-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-box { padding: 1.25rem; }
}
