/* =========================
   TRL FOOTER – ULTRA PREMIUM
========================= */
.trl-footer {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 110px 20px 50px;
  position: relative;
  overflow: hidden;
}

/* Premium Ambient Glow */
.trl-footer::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 30%, rgba(255,0,0,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255,26,26,0.06), transparent 60%);
  animation: footerGlow 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* Subtle top divider glow */
.trl-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,0,0,0.5), transparent);
}

/* Layout Grid (better than flex for premium feel) */
.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Glass effect blocks */
.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  backdrop-filter: blur(6px);
  text-decoration: none;
}

/* Logo */
.footer-logo {
  font-size: 40px;
  font-weight: 700;
  color: #ff1a1a;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* Text */
.footer-text {
  font-size: 15px;
  line-height: 1.9;
  color: #aaa;
  max-width: 360px;
}

/* Headings */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 15px;
  margin-bottom: 20px;
  color: #ff1a1a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Lists */
.footer-links li,
.footer-contact li,
.footer-social li {
  margin-bottom: 14px;
  font-size: 14px;
  color: #bbb;
}

/* Links */
.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #bbb;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Premium underline animation */
.footer-links a::after,
.footer-social a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff1a1a, #ff4d4d);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-links a:hover::after,
.footer-social a:hover::after {
  width: 100%;
}

/* Hover interaction */
.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* Social */
.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  color: #ff1a1a;
  text-shadow: 0 0 15px rgba(255,0,0,0.6);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding-top: 30px;
  margin-top: 70px;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.5px;
}

/* Glow animation */
@keyframes footerGlow {
  0% { transform: translate(0,0); }
  50% { transform: translate(40px,-20px); }
  100% { transform: translate(-20px,30px); }
}

/* =========================
   RESPONSIVE (VERY CLEAN)
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-text {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trl-footer {
    padding: 80px 20px 40px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo {
    font-size: 32px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-links li,
  .footer-contact li,
  .footer-social li {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 50px;
    font-size: 12px;
  }
}

