/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

/* Newsletter Band */
.footer-newsletter-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-copy {}
.newsletter-copy h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.newsletter-copy p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.newsletter-form-wrap { flex-shrink: 0; }
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--r-full);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}
.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.88rem;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-submit {
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-fast);
  text-transform: uppercase;
}
.newsletter-submit:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* Main Footer Grid */
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Brand Column */
.footer-brand {}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img, .footer-logo svg { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }

/* Link Columns */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.footer-links a:hover::before { opacity: 1; }

/* Trust Badges */
.footer-trust {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.trust-item i { color: var(--gold); font-size: 1rem; }

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-copy a { color: var(--gold); }

/* Social Icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pay-badge {
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form-wrap { width: 100%; }
  .newsletter-form { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
