/* Encore Protection - Footer Styles */

.site-footer {
  background: var(--brand-dark-navy);
  color: var(--silver-200);
}

/* Footer CTA Banner */
.footer-cta {
  background: linear-gradient(135deg, var(--brand-navy-1) 0%, var(--brand-navy-2) 60%, #072e50 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-16) 0;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.footer-cta__text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-2);
}

.footer-cta__text p {
  color: var(--silver-300);
  font-size: var(--text-lg);
}

.footer-cta__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Footer Main */
.footer-main {
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo__mark {
  display: flex;
  align-items: center;
}

.footer-logo .site-logo__img {
  display: block;
  width: auto;
}

.footer-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo__name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
}

.footer-logo__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-500);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  color: var(--silver-400);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer-brand__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--silver-300);
  transition: color var(--transition-fast);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.footer-contact-link span,
.footer-contact-link a {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.footer-contact-link svg {
  color: var(--silver-200);
  flex-shrink: 0;
}

.footer-contact-link:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-400);
  transition: all var(--transition-fast);
}

.footer-social__link:hover {
  background: var(--brand-navy-2);
  border-color: var(--brand-silver);
  color: var(--white);
}

/* Footer Nav Columns */
.footer-col__title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col__link {
  font-size: var(--text-sm);
  color: var(--silver-400);
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer-col__link:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: var(--text-xs);
  color: var(--silver-500);
}

.footer-bottom__legal {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer-bottom__legal-link {
  font-size: var(--text-xs);
  color: var(--silver-500);
  transition: color var(--transition-fast);
}

.footer-bottom__legal-link:hover { color: var(--white); }

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 240px repeat(3, 1fr);
  }
  .footer-grid .footer-col:last-child {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .footer-cta { padding: var(--space-10) 0; }
  .footer-cta__inner { flex-direction: column; text-align: center; gap: var(--space-6); }
  .footer-cta__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .footer-main { padding: var(--space-10) 0 var(--space-6); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-cta { padding: var(--space-8) 0; }
  .footer-cta__actions .btn { width: 100%; justify-content: center; }
  .footer-cta__actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-3); }
  .footer-bottom__legal { justify-content: center; }
}
