/* Interactive footer styling */
.vakrangee-footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
  color: white !important;
  padding: 60px 0 0 !important;
  position: relative;
  overflow: hidden;
}

.vakrangee-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="90" cy="10" r="10" fill="url(%23a)"/></svg>') repeat;
  opacity: 0.1;
}

.vakrangee-footer > * {
  position: relative;
  z-index: 1;
}

.vakrangee-footer h4 {
  color: #ffd700 !important;
  margin-bottom: 25px !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  position: relative;
}

.vakrangee-footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.footer-links ul {
  list-style: none !important;
  padding: 0 !important;
}

.footer-links ul li {
  margin-bottom: 10px !important;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.footer-links ul li:hover {
  transform: translateX(5px);
}

.footer-links ul li a {
  color: #e8f4fd !important;
  text-decoration: none !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffd700 !important;
}

.footer-links ul li a::before {
  content: '▶';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ffd700;
  font-size: 10px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
  left: -12px;
}

.footer-about {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}

.footer-about p {
  color: #e8f4fd !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
}

.footer-about strong {
  color: #ffd700 !important;
}

.footer-about a {
  color: #87ceeb !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-about a:hover {
  color: #ffd700 !important;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: 40px !important;
  backdrop-filter: blur(10px);
}

.footer-bottom p {
  color: #b8d4f0 !important;
  margin: 0 !important;
}

.vakrangee-footer .social-links {
  margin-top: 20px;
}

.vakrangee-footer .social-links a {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  width: 45px !important;
  height: 45px !important;
  margin: 0 8px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.vakrangee-footer .social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.vakrangee-footer .social-links a:hover::before {
  left: 100%;
}

.vakrangee-footer .social-links a:hover {
  background: #ffd700 !important;
  color: #1e3c72 !important;
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3) !important;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.footer-about:hover {
  animation: pulse 2s infinite;
}