/* ========== FOOTER ========== */
footer {
  background: linear-gradient(180deg, var(--primary) 0%, #004d5a 100%);
  color: var(--white);
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.9rem;
  transition: transform 0.3s;
}

.footer-col ul li:hover {
  transform: translateX(5px);
}

.footer-col a {
  color: var(--gray-light);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent);
}

/* Contact Info */
.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-item-footer:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-item-footer i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-item-footer a,
.contact-item-footer span {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item-footer a:hover {
  color: var(--white);
}

/* Operating Hours */
.operating-hours {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s;
}

.hours-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hours-item .day {
  color: var(--gray-light);
  font-weight: 500;
  font-size: 0.9rem;
}

.hours-item .time {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.hours-item .time.closed {
  color: var(--gray-lighter);
  font-style: italic;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent);
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.social-links a i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(79, 195, 247, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-col h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-main {
    padding: 2.5rem 1rem 1rem;
  }

  .contact-item-footer {
    padding: 0.6rem;
  }
}
