.premium-footer {
    position: relative;
    z-index: 9;
  background: #000;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  padding: 50px 20px 20px 20px;
  border-top: 1px solid rgba(212, 160, 23, 0.14);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo */
.logo-col .footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.2rem;
}

.tagline {
  font-size: 1.05rem;
  color: #c6a34f;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Headings */
.footer-col h4 {
  font-size: 1.38rem;
  font-weight: 700;
  color: #e9c46a;
  margin-bottom: 1.8rem;
  letter-spacing: 0.9px;
}

/* Links & Contact */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a,
.contact-list li {
  color: #ccc;
  text-decoration: none;
  transition: all 0.35s ease;
  font-size: 1rem;
}

.footer-col ul li a:hover {
  color: #f4e1b9;
  padding-left: 8px;
}

.contact-list i {
  color: #d4a017;
  margin-right: 14px;
  width: 22px;
  text-align: center;
  font-size: 1.1rem;
}

/* ── Social Icons – Stronger 3D Golden Gradient ── */
.footer-bottom {
  background: #000;
  padding: 40px;
  text-align: center;
}

.social-icons-ft {
  margin-bottom: 40px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 12px;
  font-size: 1.45rem;
  color: #d4a017;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 2px solid transparent;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.7),
    inset 0 2px 8px rgba(255,255,255,0.04);
}

.social-link::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd54f, #ffecb3, #d4a017, #f0d08c);
  z-index: -2;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.social-link:hover::before {
  opacity: 0.9;
}

.social-link:hover {
  transform: translateY(-10px) scale(1.08);
  color: #111;
  background: linear-gradient(145deg, #e9c46a, #f4e1b9);
  box-shadow: 
    0 20px 50px rgba(233,196,106,0.5),
    inset 0 3px 12px rgba(255,255,255,0.3);
}

/* Credits */
.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.96rem;
  color: #aaa;
}

.footer-credits a {
  color: #c6a34f;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credits a:hover {
  color: #f4e1b9;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    /* text-align: center; */
    gap: 50px;
  }

  .logo-col {
    margin-bottom: 2.5rem;
  }

  .footer-top {
    padding: 70px 5% 50px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    font-size: 1.3rem;
  }

  .footer-credits {
    flex-direction: column;
    gap: 1.2rem;
  }
}