.premium-footer{
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 70px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand h2{
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-brand p{
  opacity: 0.7;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3{
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after{
  content: "";
  width: 40px;
  height: 2px;
  background: #e10600;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links ul li{
  margin: 10px 0;
}

.footer-links ul li a{
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links ul li a:hover{
  color: #fff;
  padding-left: 5px;
}

.footer-contact p{
  margin: 8px 0;
  opacity: 0.7;
}

.social-icons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a{
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover{
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-container{
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after{
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons{
    align-items: center;
  }
}