/* ========== CONTACT US PAGE ========== */

/* ---- Stakeholders Hotline ---- */
.hotline-section { padding: 4px 0 80px; background: var(--white); }
.hotline-card { max-width: 720px; margin: 0 auto; text-align: center; }
.hotline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #6b6b6b;
  border-radius: 999px;
  padding: 12px 24px;
  margin-bottom: 20px;
}
.hotline-header::before,
.hotline-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #aaa;
}
.hotline-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.hotline-body { color: var(--text-light); margin-bottom: 8px; }
.hotline-link { color: #4a6fa5; text-decoration: underline; font-size: 0.95rem; word-break: break-all; }

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Hero height */
.contact-hero { height: 440px; }

/* Offices section */
.offices-section { background: var(--white); padding-top: 12px; padding-bottom: 12px;}
.offices-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.office-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  background: var(--white);
  transition: box-shadow 0.3s;
}
.office-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.office-card-info { padding: 28px; }
.office-card-map { overflow: hidden; }
.office-card-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: none;
}
.office-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 14px; color: var(--red);
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.office-field { margin-bottom: 10px; }
.office-field .field-label {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 3px;
}
.office-field .field-value {
  font-size: 1rem; color: var(--text); line-height: 1.6;
}

/* Contact form section */
.contact-form-section { background: var(--bg-gray); }
.contact-form-section .container { max-width: 760px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 1rem; font-weight: 700; color: var(--text); }
.form-label .req { color: var(--red); margin-left: 3px; }
.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(138,33,43,0.1);
}
.form-textarea { height: 140px; resize: vertical; }
.form-privacy-box {
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  overflow: hidden;
}
.form-privacy-title {
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-privacy-body {
  height: 220px;
  overflow-y: scroll;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.75;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.form-privacy-body::-webkit-scrollbar { width: 6px; }
.form-privacy-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.form-privacy-body::-webkit-scrollbar-track { background: transparent; }
.form-privacy-body p { margin: 0 0 10px; }
.form-privacy-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  margin: 16px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.form-privacy-body h4:first-child { margin-top: 0; }
.form-privacy-body ul {
  margin: 0 0 10px 18px;
  padding: 0;
}
.form-privacy-body ul li { margin-bottom: 4px; }
.form-privacy-updated {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: right;
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 8px;
  font-size: 1rem; color: var(--text-light);
}
.form-checkbox input { margin-top: 3px; accent-color: var(--red); }
.form-submit { text-align: center; margin-top: 24px; }
.form-submit button {
  padding: 14px 56px;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}
.form-submit button:hover { background: var(--red-dark); }
.form-submit button:disabled { background: var(--text-muted); cursor: default; }

@media (max-width: 768px) {
  .office-card { grid-template-columns: 1fr; }
  .office-card-map { min-height: 220px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
