/* ── Footer CTA Section ────────────────────────────────── */
.hc-footer-cta {
  background-color: var(--hc-orange);
  padding: 50px 0;
  text-align: center;
}
.hc-footer-cta h2 {
  color: var(--hc-white);
  margin-bottom: 10px;
}
.hc-footer-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.hc-footer-cta .hc-btn--outline {
  border-color: var(--hc-white);
  color: var(--hc-white);
}
.hc-footer-cta .hc-btn--outline:hover {
  background-color: var(--hc-white);
  color: var(--hc-orange);
}

/* ── Main Footer ───────────────────────────────────────── */
.hc-footer {
  background-color: var(--hc-charcoal);
  padding: 50px 0 30px;
  border-top: 3px solid var(--hc-dark-gray);
}
.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.hc-footer__brand-name {
  font-family: var(--hc-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hc-white);
  margin-bottom: 12px;
}
.hc-footer__brand-name span {
  color: var(--hc-orange);
}
.hc-footer__about {
  color: var(--hc-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hc-footer h4 {
  color: var(--hc-orange);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hc-footer__links li {
  margin-bottom: 8px;
}
.hc-footer__links a {
  color: var(--hc-text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.hc-footer__links a:hover {
  color: var(--hc-orange);
}
.hc-footer__contact-item {
  color: var(--hc-text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.hc-footer__contact-item a {
  color: var(--hc-text-muted);
}
.hc-footer__contact-item a:hover {
  color: var(--hc-orange);
}

/* ── Bottom Bar ────────────────────────────────────────── */
.hc-footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--hc-dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--hc-light-gray);
}
.hc-footer__bottom-links {
  display: flex;
  gap: 20px;
}
.hc-footer__bottom-links a {
  color: var(--hc-light-gray);
}
.hc-footer__bottom-links a:hover {
  color: var(--hc-orange);
}

@media (max-width: 768px) {
  .hc-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hc-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
