/* ====================================================
   LUXURY FOOTER DESIGN — Win Skin Co
   ==================================================== */

.winskinco-footer {
  position: relative;
  background-color: var(--footer-bg, #0f001f);
  color: #fff;
  padding: 80px 0 30px;
  overflow: hidden;
  text-align: left;
}

/* === Gradient Shimmer Background === */
.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(122,60,255,0.3), rgba(255,0,150,0.2), rgba(255,255,255,0.05));
  background-size: 300% 300%;
  animation: shimmerGradient 12s ease infinite;
  z-index: 0;
}
@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Container === */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Columns === */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* === Headings === */
.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Links === */
/* === MENU LINKS WITH LUXURY SHIMMER EFFECT === */
.footer-links a {
  position: relative;
  color: #ddd;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  padding: 4px 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  opacity: 0;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  transform: translateX(100%);
  opacity: 1;
}

/* ✨ Floating shimmer edge effect */
.footer-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  background-size: 200% 200%;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.footer-links a:hover::after {
  opacity: 1;
  animation: shimmerBorder 2.8s linear infinite;
}

/* Keyframes for shimmer animation */
@keyframes shimmerBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* === Socials (icon + text + pulse) === */
.footer-socials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-socials-list li {
  margin-bottom: 12px;
}
.footer-socials-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  text-decoration: none;
  transition: all 0.4s ease;
}
.footer-socials-list a i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.footer-socials-list a:hover i {
  animation: socialPulse 1.2s infinite ease-in-out;
  background: linear-gradient(45deg, #7a3cff, #ff8de0);
  box-shadow: 0 0 18px rgba(255, 141, 224, 0.5);
  color: #fff;
}
.footer-socials-list a:hover span {
  color: #fff;
  transform: translateX(6px);
}
@keyframes socialPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* === Main Office === */
.footer-office-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-office-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.footer-office-list i {
  color: #ff9cf9;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.footer-office-list li:hover {
  color: #fff;
  transform: translateX(5px);
}

/* === Footer Bottom === */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
