/* Simni Bullion shared footer */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1a1a2e 0%, #11111e 100%);
  color: #b8b8c8;
  padding: 64px 24px 28px;
  margin-top: 80px;
  z-index: 1;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
}
.site-footer * { box-sizing: border-box; }
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,0.35) 18%,
    rgba(212,175,55,0.8) 50%,
    rgba(212,175,55,0.35) 82%,
    transparent 100%);
}
.footer-shine {
  position: absolute;
  top: 0; left: -240px;
  width: 240px; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,235,170,0.95),
    transparent);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .footer-shine { animation: footerShine 9s ease-in-out infinite; }
  .footer-brand-name { animation: footerSheen 9s ease-in-out infinite; }
}
@keyframes footerShine {
  0%   { left: -240px; }
  55%  { left: calc(100% + 240px); }
  100% { left: calc(100% + 240px); }
}
@keyframes footerSheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
  background: linear-gradient(120deg,
    #D4AF37 0%,
    #F4E5A1 30%,
    #D4AF37 50%,
    #F4E5A1 70%,
    #D4AF37 100%);
  background-size: 250% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.footer-brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8585a0;
  margin-bottom: 18px;
}
.footer-tagline {
  color: #d4d4e0;
  font-size: 14px;
  margin: 0 0 14px;
  line-height: 1.65;
  max-width: 300px;
}
.footer-llp {
  color: #8585a0;
  font-size: 12px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  margin: 0;
}
.footer-heading {
  color: #D4AF37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, #D4AF37, rgba(212,175,55,0));
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1.55;
  color: #b8b8c8;
}
.footer-list a {
  color: #c5c5d4;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.footer-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, #D4AF37, #C0C0C0);
  transition: width 0.3s ease;
}
.footer-list a:hover { color: #ffffff; }
.footer-list a:hover::after { width: 100%; }
.footer-list.contact a:hover { color: #D4AF37; }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,175,55,0.18),
    transparent);
  margin-bottom: 22px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #7a7a90;
}
.footer-bottom p { margin: 0; }
.footer-bottom .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  color: #c5c5d4;
  font-size: 11px;
  letter-spacing: 0.4px;
}
.footer-bottom .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
@media (max-width: 720px) {
  .site-footer { padding: 48px 20px 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
