

/* =========================================================
   FOOTER.CSS
   Footer system only.
   Shared across core, city, and service pages.
   ========================================================= */

.footer-executive {
  position: relative;
  background: linear-gradient(180deg, #07162e 0%, #041124 100%);
  color: var(--white);
  padding: 58px 0 22px;
}

.footer-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10) 0, rgba(212, 175, 55, 0) 30%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0) 28%),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.72;
}

.relative-z {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-branding,
.footer-brand-col {
  max-width: 460px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 18px;
}

.footer-copy {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.footer-slogan {
  margin: 0 0 14px;
  color: #E2E8F0;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 28px 0;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link,
.footer-link-highlight {
  font-size: 14px;
  line-height: 1.5;
  color: #CBD5E1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.footer-link:hover,
.footer-link-highlight:hover,
.footer-link:focus,
.footer-link-highlight:focus {
  color: var(--white);
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

.footer-link-highlight {
  color: var(--gold-light);
}

.footer-hours {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.6;
}

.social-links,
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  width: 100%;
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 12px;
  color: #64748B;
  margin-top: 0;
}

.copyright {
  margin: 0;
  color: #64748B;
}

.legal-links .dot {
  color: #475569;
}

.legal-links {
  display: flex;
  gap: 12px;
}

.legal-links a {
  color: #64748B;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--white);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 24px 0;
  }

  .footer-executive {
    padding-top: 50px;
    padding-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .footer-executive {
    padding-top: 42px;
    padding-bottom: 14px;
  }

  .footer-top {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .footer-logo {
    height: 44px;
  }

  .footer-slogan {
    font-size: 16px;
  }

  .footer-socials,
  .social-links {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    margin: 22px 0;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding-top: 14px;
  }
}