/* ===========================================
   PREMIUM KILLER FOOTER - CSS
   Best of the best animations & transitions
=========================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Footer Base */
.premium-footer {
  position: relative;
  background: linear-gradient(135deg, #0a0f1e 0%, #0c1427 25%, #121b36 50%, #0d1328 100%);
  color: #e0e7ff;
  padding: 80px 20px 0;
  margin-top: 120px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid rgba(100, 255, 218, 0.2);
  box-shadow: 0 -20px 60px rgba(0, 20, 80, 0.4);
  isolation: isolate;
}

/* Animated Background */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: floatShape 30s infinite linear;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: -250px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
  animation-delay: 10s;
  animation-direction: reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 70%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation-delay: 20s;
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(40px, -40px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Main Container */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Footer Sections */
.footer-section {
  padding: 30px;
  background: rgba(16, 23, 41, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(100, 255, 218, 0.15);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 0%,
    rgba(100, 255, 218, 0.05) 50%,
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.footer-section:hover::before {
  transform: translateX(100%);
}

.footer-section:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 20, 80, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Company Info Section */
.company-info {
  grid-column: 1 / -1;
  text-align: center;
}

.logo-animated {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.logo-sparkle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(100, 255, 218, 0.1) 30%,
    transparent 70%);
  filter: blur(20px);
  animation: sparklePulse 4s infinite;
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  border: 3px solid rgba(100, 255, 218, 0.3);
  padding: 10px;
  background: linear-gradient(45deg, rgba(16, 23, 41, 0.8), rgba(100, 255, 218, 0.1));
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.footer-logo:hover {
  transform: rotateY(180deg) scale(1.1);
  border-color: #64ffda;
  box-shadow: 0 0 40px rgba(100, 255, 218, 0.5);
}

.company-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #64ffda, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 3s ease infinite;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1rem;
  color: #8892b0;
  font-style: italic;
  letter-spacing: 1px;
}

.company-description {
  color: #ccd6f6;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), rgba(255, 138, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64ffda;
  border: 2px solid rgba(100, 255, 218, 0.2);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(45deg, rgba(100, 255, 218, 0.2), rgba(255, 138, 0, 0.2));
  border-color: #64ffda;
  box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

.badge::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.badge:hover::after {
  opacity: 1;
}

.company-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #64ffda);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #8892b0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Quick Links Section */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #64ffda;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  color: #ff8a00;
  animation: iconBounce 2s infinite;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: #ccd6f6;
  text-decoration: none;
  border: 1px solid rgba(100, 255, 218, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), rgba(255, 138, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64ffda;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.nav-link:hover::before {
  transform: translateY(0);
}

.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(100, 255, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64ffda;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.link-text {
  flex-grow: 1;
  font-weight: 500;
  z-index: 2;
}

.link-hover-effect {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #64ffda;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link:hover {
  border-color: rgba(100, 255, 218, 0.3);
  transform: translateX(10px) scale(1.05);
}

.nav-link:hover .link-icon {
  transform: rotate(15deg) scale(1.2);
  background: rgba(100, 255, 218, 0.2);
}

.nav-link:hover .link-hover-effect {
  opacity: 0.5;
  transform: scale(2);
}

.featured-products {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  border-left: 4px solid #ff8a00;
}

.featured-products h4 {
  color: #ff8a00;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #64ffda transparent;
}

.products-scroll span {
  white-space: nowrap;
  padding: 8px 15px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 20px;
  color: #64ffda;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.products-scroll span:hover {
  background: rgba(100, 255, 218, 0.2);
  transform: translateY(-3px);
}

/* Contact Section */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  text-decoration: none;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: currentColor;
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.contact-method:hover::before {
  transform: scaleY(1);
}

.method-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 2px solid currentColor;
  animation: pulseRing 2s infinite;
}

.method-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.method-label {
  font-size: 0.85rem;
  color: #8892b0;
  margin-bottom: 3px;
}

.method-value {
  font-size: 1rem;
  font-weight: 500;
  color: #e0e7ff;
}

.method-action {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 2;
}

.contact-method:hover .method-action {
  opacity: 1;
  transform: translateX(0);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Colors */
.phone {
  color: #00c853;
}
.phone .method-icon {
  background: rgba(0, 200, 83, 0.1);
}

.whatsapp {
  color: #25d366;
}
.whatsapp .method-icon {
  background: rgba(37, 211, 102, 0.1);
}

.email {
  color: #2196f3;
}
.email .method-icon {
  background: rgba(33, 150, 243, 0.1);
}

.address {
  color: #ff8a00;
}
.address .method-icon {
  background: rgba(255, 138, 0, 0.1);
}

.business-hours {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.business-hours h4 {
  color: #64ffda;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 0.9rem;
}

.day {
  color: #ccd6f6;
  font-weight: 500;
}

.time {
  color: #8892b0;
  text-align: right;
}

/* Newsletter & Social Section */
.newsletter-container {
  margin-bottom: 30px;
}

.newsletter-container p {
  color: #ccd6f6;
  margin-bottom: 15px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(100, 255, 218, 0.2);
  border-radius: 50px;
  color: #e0e7ff;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #64ffda;
  box-shadow: 0 0 25px rgba(100, 255, 218, 0.3);
  transform: translateY(-2px);
}

.newsletter-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #64ffda, #ff8a00);
  border: none;
  color: #0a192f;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 20px;
}

.social-container h4 {
  color: #64ffda;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, currentColor, transparent);
  animation: rotateBorder 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover::before {
  opacity: 0.3;
}

.icon-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.2;
  transform: scale(0);
  transition: transform 0.6s ease;
}

.social-icon:hover .icon-wave {
  transform: scale(1.5);
  opacity: 0;
}

.tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.social-icon:hover .tooltip {
  opacity: 1;
}

/* Social Colors */
.fb {
  background: linear-gradient(45deg, #1877f2, #0d5cb6);
}
.ig {
  background: linear-gradient(45deg, #e4405f, #c13584);
}
.tw {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}
.in {
  background: linear-gradient(45deg, #0077b5, #005582);
}
.yt {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-icon:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.payment-methods {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h4 {
  color: #64ffda;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 2rem;
  color: #ccd6f6;
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-icons i:hover {
  color: #64ffda;
  transform: translateY(-5px) scale(1.2);
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  background: rgba(5, 10, 24, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(100, 255, 218, 0.2);
  position: relative;
  z-index: 2;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.copyright {
  color: #8892b0;
  font-size: 0.9rem;
}

.highlight {
  color: #64ffda;
  font-weight: 600;
}

.crafted-with {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: #e52e71;
  font-size: 0.85rem;
}

.crafted-with i {
  animation: heartbeat 1.5s infinite;
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav-link {
  color: #ccd6f6;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #64ffda, #ff8a00);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-nav-link:hover {
  color: #64ffda;
}

.footer-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #64ffda, #ff8a00);
  color: #0a192f;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.back-to-top:hover::before {
  left: 100%;
}

.back-to-top:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(100, 255, 218, 0.4);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* Animated Elements */
.floating-diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, 
    transparent 40%, 
    rgba(100, 255, 218, 0.1) 50%, 
    transparent 60%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 20%;
  right: 5%;
  animation: diamondFloat 25s infinite linear;
  opacity: 0.4;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkleTwinkle 3s infinite;
  z-index: 1;
}

.sparkle-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.sparkle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}
.sparkle-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

/* Animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(10deg);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes diamondFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(0, -100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, -50px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes sparklePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 60px 15px 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section {
    padding: 25px;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-nav {
    justify-content: center;
  }
  
  .company-name {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .payment-icons i {
    font-size: 1.5rem;
  }
}

/* Simple Killer Footer Navigation */
.footer-nav {
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.footer-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Ripple Effect */
.footer-nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.5s, height 0.5s;
    transform: translate(-50%, -50%);
}

.footer-nav a:hover::after {
    width: 200px;
    height: 200px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav a {
        width: 200px;
        text-align: center;
    }
}

.simple-payment-btn {
  display: inline-block;
  background: linear-gradient(135deg, #64ffda, #2196f3);
  color: #0a192f;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  margin-top: 25px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.simple-payment-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(100, 255, 218, 0.5);
}

.simple-payment-btn i {
  margin-right: 10px;
}