/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffed4e 25%,
    #ffc837 50%,
    #ffd700 75%,
    #ffd700 100%
  );
  color: #1a1a1a;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.3),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 140, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6) 25%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.6) 75%,
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section h3 {
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff9500, #ff6b00);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 149, 0, 0.4);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

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

.footer-section ul li a {
  color: #2d2d2d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff9500, #ff6b00);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(255, 149, 0, 0.3);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #ff6b00;
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo-img2 {
  width: 120px;
  background: transparent;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img2:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 6px 12px rgba(255, 107, 0, 0.3));
}

.footer-description {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  padding: 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border-left: 4px solid #ff9500;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.15);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info p {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.contact-info p:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(255, 149, 0, 0.2);
  border-left-color: #ff9500;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 149, 0, 0.3);
  padding-top: 25px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 149, 0, 0.1),
    rgba(255, 107, 0, 0.15)
  );
  margin: 0 -20px -30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}

.footer-bottom p {
  color: #1a1a1a;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ff6b00;
}

.language-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff9500, #ffb300);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.language-toggle:hover {
  background: linear-gradient(135deg, #ffb300, #ffc837);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}

.language-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .language-toggle {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .footer-bottom {
    margin: 0 -20px -20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 15px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .footer-bottom {
    margin: 0 -15px -15px;
  }
}
