/* ==========================================
   FOOTER COMPONENT
   ========================================== */

.site-footer{
  padding:80px 0 40px;
  margin-top:80px;
  border-top:1px solid rgba(196,155,70,0.15);
  background:linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  position:relative;
}

.site-footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(196,155,70,0.3) 50%, transparent 100%);
}

.footer-main{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:60px;
  margin-bottom:60px;
}
.footer-logo{
  height:40px;
  width:auto;
  margin-bottom:20px;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.footer-col h4{
  color:#1e293b;
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:20px;
  font-family:'Plus Jakarta Sans', sans-serif;
  letter-spacing:0.01em;
  background:linear-gradient(135deg, #c49b46 0%, #d4af37 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:12px;
}
.footer-links a{
  color:#64748b;
  text-decoration:none;
  font-size:0.95rem;
  transition:all 0.2s ease;
  display:inline-block;
  position:relative;
  font-weight:500;
}
.footer-links a::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg, #c49b46 0%, #d4af37 100%);
  transition:width 0.3s ease;
}
.footer-links a:hover{
  color:#c49b46;
  transform:translateX(3px);
}
.footer-links a:hover::after{
  width:100%;
}
.social-links{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.social-icon{
  color:#64748b;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:white;
  border-radius:10px;
  border:1px solid rgba(196,155,70,0.15);
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.social-icon:hover{
  color:#c49b46;
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(196,155,70,0.25);
  border-color:#c49b46;
  background:linear-gradient(135deg, rgba(196,155,70,0.05) 0%, rgba(212,175,55,0.08) 100%);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:40px;
  border-top:1px solid rgba(196,155,70,0.15);
  flex-wrap:wrap;
  gap:20px;
}
.footer-bottom p{
  color:#64748b;
  font-size:0.9rem;
  font-weight:500;
}
.footer-legal{
  display:flex;
  align-items:center;
  gap:var(--spacing-md);
  flex-wrap:wrap;
}
.legal-links{
  display:flex;
  gap:var(--spacing-sm);
  align-items:center;
  font-size:0.875rem;
}
.legal-links a{
  color:var(--muted);
  text-decoration:none;
  transition:color 0.2s ease;
}
.legal-links a:hover{
  color:var(--accent);
}
.footer-contact{
  text-align:right;
  font-size:0.9375rem;
}
.footer-contact address{
  font-style:normal;
  color:var(--muted);
  margin-bottom:0.25rem;
}
.footer-contact a{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}
.footer-contact a:hover{
  text-decoration:underline;
}
