.festival-footer {
  background: radial-gradient(circle at top, #111 0%, #000 60%);
  color: #fff;
  padding: 80px 8% 40px;
  font-family: 'Montserrat', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-col h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #d7df23;
  display: block;
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-col p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col span {
  color: #fff;
}

.footer-col.highlight {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 10px;
  animation: pulseGlow 3s infinite ease-in-out;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  background: #d7df23;
  color: #000;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #d7df23;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* Glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(215,223,35,0.2); }
  50% { box-shadow: 0 0 25px rgba(215,223,35,0.4); }
  100% { box-shadow: 0 0 0 rgba(215,223,35,0.2); }
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-col i{
  font-size: 28px;
  color: #fff;
}