/* =========================================
   FOOTER SECTION STYLES (PREMIUM)
   ========================================= */
:root {
  --footer-bg: #000c1a;
  --footer-accent: #dcb118;
  --footer-text-muted: #94a3b8;
  --footer-text-white: #ffffff;
  --footer-glass: rgba(255, 255, 255, 0.03);
  --footer-border: rgba(255, 255, 255, 0.08);
  --footer-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-elegant {
  background: 
    url("../assets/images/footer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 8rem 0 3rem;
  border-top: 1px solid var(--footer-border);
  position: relative;
  overflow: hidden;
}

.footer-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--footer-accent) 50%, 
    transparent 100%);
  opacity: 0.5;
}

.footer-container {
  width: 100%;
  margin: 0;
  padding: 0 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 8rem;
  margin-bottom: 6rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-left: 0;
}

.footer-slogan {
  color: var(--footer-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--footer-glass);
  border: 1px solid var(--footer-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--footer-transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--footer-accent);
  color: #000c1a;
  transform: translateY(-5px);
  border-color: var(--footer-accent);
  box-shadow: 0 10px 20px rgba(220, 177, 24, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-column h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--footer-accent);
}

.footer-column a {
  display: block;
  color: var(--footer-text-muted);
  text-decoration: none;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  transition: var(--footer-transition);
  width: fit-content;
}

.footer-column a:hover {
  color: var(--footer-accent);
  transform: translateX(10px);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--footer-text-muted);
  font-size: 0.95rem;
}

.footer-legal-links {
  display: flex;
  gap: 2.5rem;
}

.footer-legal-links a {
  color: var(--footer-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--footer-transition);
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
  .footer-top {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column a {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .footer-elegant {
    padding-top: 6rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}
