/* ============================================
   CREATIVE ANIMATED FOOTER STYLES
   ============================================ */
.footer-creative {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98));
  padding: 6rem 0 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
  width: 100%;
}

.footer-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 193, 7, 0.05),
    transparent
  );
  animation: footerWave 15s linear infinite;
}

.wave-1 {
  animation-duration: 15s;
  opacity: 0.6;
  height: 80px;
}

.wave-2 {
  animation-duration: 20s;
  animation-delay: -5s;
  opacity: 0.4;
  height: 100px;
}

.wave-3 {
  animation-duration: 25s;
  animation-delay: -10s;
  opacity: 0.3;
  height: 120px;
}

@keyframes footerWave {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 193, 7, 0.3);
  border-radius: 50%;
  animation: footerParticleFloat 20s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.footer-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.footer-particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 3s;
  animation-duration: 22s;
}

.footer-particle:nth-child(3) {
  left: 60%;
  top: 30%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.footer-particle:nth-child(4) {
  left: 80%;
  top: 70%;
  animation-delay: 9s;
  animation-duration: 25s;
}

.footer-particle:nth-child(5) {
  left: 50%;
  top: 10%;
  animation-delay: 12s;
  animation-duration: 19s;
}

.footer-particle:nth-child(6) {
  left: 20%;
  top: 80%;
  animation-delay: 15s;
  animation-duration: 23s;
}

@keyframes footerParticleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-40px) translateX(30px) scale(1.3);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-80px) translateX(-20px) scale(0.7);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-40px) translateX(15px) scale(1.1);
    opacity: 0.4;
  }
}

.footer-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 193, 7, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 193, 7, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: footerGridMove 30s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

@keyframes footerGridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 193, 7, 0.15);
}

.footer-brand {
  position: relative;
}

.footer-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent 70%);
  border-radius: 50%;
  animation: footerLogoGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerLogoGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.logo-name {
  color: #fff;
  display: block;
}

.logo-surname {
  color: #ffc107;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.footer-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem 0;
  font-weight: 500;
  line-height: 1.6;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  max-width: 400px;
}

.footer-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, transparent);
  border-radius: 2px;
  margin-top: 1.5rem;
}

.footer-section {
  position: relative;
}

.footer-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffc107, transparent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.footer-link:hover,
.footer-link.active {
  color: #ffc107;
  transform: translateX(5px);
}

.link-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover .link-icon,
.footer-link.active .link-icon {
  background: rgba(255, 193, 7, 0.2);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.link-text {
  flex: 1;
}

.link-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-link:hover .link-underline,
.footer-link.active .link-underline {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.footer-contact-item:hover {
  background: rgba(255, 193, 7, 0.05);
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateX(5px);
  color: #ffc107;
}

.contact-icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  color: #ffc107;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.icon-ripple-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent 70%);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
}

.footer-contact-item:hover .icon-ripple-effect {
  width: 80px;
  height: 80px;
}

.footer-contact-item:hover .contact-icon-wrapper {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.5);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.contact-value {
  font-size: 1rem;
  color: inherit;
  font-weight: 600;
}

.footer-social-section {
  margin-top: 1rem;
}

.social-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link-item {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  color: #ffc107;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.social-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.5), transparent 70%);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
}

.social-link-item:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.social-link-item:hover .social-icon-bg {
  opacity: 1;
}

.social-link-item:hover .social-hover-effect {
  width: 100px;
  height: 100px;
}

.social-link-item i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-link-item:hover i {
  transform: rotate(360deg) scale(1.1);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  position: relative;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.copyright-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.copyright-year {
  color: #ffc107;
  font-weight: 600;
}

.copyright-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.heart-icon {
  color: #ff6b6b;
  animation: footerHeartBeat 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes footerHeartBeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.footer-badge i {
  color: #ffc107;
  font-size: 1rem;
}

.footer-scroll-top {
  position: relative;
}

.scroll-top-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: 16px;
  color: #ffc107;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  overflow: hidden;
  min-width: 70px;
}

.scroll-top-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top-btn:hover::before {
  opacity: 1;
}

.scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.scroll-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.scroll-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.5), transparent 70%);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
  animation: footerScrollGlow 2s ease-in-out infinite;
}

@keyframes footerScrollGlow {
  0%, 100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 60px;
    height: 60px;
    opacity: 0.6;
  }
}

.scroll-top-btn:hover .scroll-glow {
  width: 80px;
  height: 80px;
  animation: none;
}

.scroll-top-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover i {
  transform: translateY(-3px);
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-top-btn:hover .scroll-text {
  color: #ffc107;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-creative {
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-section-title {
    font-size: 1.15rem;
  }

  .footer-bottom {
    gap: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .footer-badges {
    width: 100%;
    justify-content: center;
  }

  .footer-scroll-top {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .scroll-top-btn {
    min-width: 60px;
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .footer-creative {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-top {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-logo {
    font-size: 1.75rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-section-title {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .footer-contact-item {
    padding: 0.75rem;
  }

  .contact-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .footer-social-links {
    gap: 0.75rem;
  }

  .social-link-item {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .footer-badges {
    flex-direction: column;
    width: 100%;
  }

  .footer-badge {
    width: 100%;
    justify-content: center;
  }

  .copyright-text {
    font-size: 0.85rem;
  }

  .copyright-subtext {
    font-size: 0.8rem;
  }
}

