/* Contact page — clone souce_code_mau.html #page-contact */

.hc-page-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.hc-page-contact .info-note {
  display: block;
  font-size: 0.76rem;
  color: var(--hc-text-muted);
  margin-top: 4px;
}

.hc-page-contact .info-note-green {
  color: var(--hc-green);
  font-weight: 700;
}

.hc-page-contact .info-note-green i {
  vertical-align: -1px;
}

.hc-page-contact .map-box {
  background: var(--hc-red-light);
  height: 220px;
  gap: 8px;
  padding: 0;
}

.hc-page-contact .map-box > i {
  font-size: 2.5rem;
  line-height: 1;
}

.hc-page-contact .map-box-title {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--hc-red);
}

.hc-page-contact .map-box-address {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--hc-red);
  margin: 0;
}

.hc-page-contact .map-box .hc-map-btn.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: auto;
  align-self: center;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.22);
}

.hc-page-contact .map-box .hc-map-btn.btn.btn-primary i {
  font-size: 0.9rem;
  color: #fff;
  opacity: 1;
  line-height: 1;
}

.hc-page-contact .hc-contact-submit i {
  font-size: 1rem;
  color: #fff;
  opacity: 1;
}

.hc-page-contact .hc-branches-title {
  font-weight: 900;
  margin: 0 0 16px;
  font-size: 1rem;
}

.hc-page-contact .hc-branches-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-page-contact .hc-branch-item {
  background: #fff;
  border-radius: var(--hc-radius-sm);
  padding: 14px 16px;
  border: 1.5px solid var(--hc-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-page-contact .hc-branch-item i {
  color: var(--hc-red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hc-page-contact .hc-branch-item strong {
  font-size: 0.88rem;
}

.hc-page-contact .hc-branch-item span {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
}

.hc-page-contact .hc-form-note span {
  color: var(--hc-red);
}

.hc-page-contact .hc-form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.hc-page-contact .hc-form-agree input {
  width: 16px;
  height: 16px;
  accent-color: var(--hc-red);
  margin-top: 2px;
  flex-shrink: 0;
}

.hc-page-contact .hc-form-agree label {
  font-size: 0.82rem;
  color: var(--hc-text-muted);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.hc-page-contact .hc-form-agree a {
  color: var(--hc-red);
}

.hc-page-contact .hc-contact-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
}

.hc-page-contact .form-control.error {
  border-color: var(--hc-red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.08);
}

/* Support section */
.hc-page-contact .hc-contact-support {
  background: linear-gradient(135deg, #fff5f5, #fff8e1);
}

.hc-page-contact .hc-support-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.hc-page-contact .support-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.hc-page-contact .support-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--hc-transition);
  border: none;
  border-right: 1.5px solid var(--hc-border);
  background: #fff;
  font-family: inherit;
}

.hc-page-contact .support-tab:last-child {
  border-right: none;
}

.hc-page-contact .support-tab.active {
  background: var(--hc-red);
  color: #fff;
}

.hc-page-contact .support-tab:not(.active):hover {
  background: var(--hc-red-light);
  color: var(--hc-red);
}

.hc-page-contact .support-info {
  display: none;
  background: linear-gradient(135deg, #fff5f5, #fff8e1);
  border-radius: var(--hc-radius);
  padding: 24px;
  border: 1.5px solid var(--hc-border);
}

.hc-page-contact .support-info.is-active {
  display: block;
}

.hc-page-contact .support-info h3 {
  font-weight: 900;
  margin: 0 0 12px;
  font-size: 1rem;
}

.hc-page-contact .support-info p {
  font-size: 0.87rem;
  color: var(--hc-text-muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

.hc-page-contact .support-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-page-contact .support-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.hc-page-contact .support-info li i {
  color: var(--hc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social */
.hc-page-contact .hc-contact-social {
  background: #fff;
}

.hc-page-contact .hc-social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hc-page-contact .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--hc-transition);
  text-decoration: none;
  color: inherit;
}

.hc-page-contact .social-link:hover {
  border-color: var(--hc-red);
  color: var(--hc-red);
  transform: translateY(-2px);
}

.hc-page-contact .social-link i {
  font-size: 1.2rem;
}

.hc-page-contact .social-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hc-page-contact .social-link small {
  font-weight: 400;
  color: var(--hc-text-muted);
  font-size: 0.75rem;
}

.hc-page-contact .hc-faq-contact {
  background: linear-gradient(135deg, #fff5f5, #fff8e1);
}

.hc-page-contact .hc-faq-contact .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.hc-page-contact .hc-contact-cta h2 {
  color: #fff;
}

@media (max-width: 900px) {
  .hc-page-contact .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .hc-page-contact .support-tabs {
    flex-direction: column;
  }

  .hc-page-contact .support-tab {
    border-right: none;
    border-bottom: 1.5px solid var(--hc-border);
  }

  .hc-page-contact .support-tab:last-child {
    border-bottom: none;
  }
}
