/* Footer Styles */
.footer {
  background-color: #1a1a24;
  background: linear-gradient(180deg, #1a1a24 0%, #151520 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  opacity: 0.5;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-column {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Footer copywriting styles */
.footer-copy {
  margin-top: -1rem;
  margin-bottom: -0.5rem;
}

.footer-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-copy .tagline {
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex: 1.5;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-column ul li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-column ul li a:hover::before {
  width: 100%;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--red);
  font-size: 0.9rem;
  width: 20px;
}



/* Social Icons */
.social-column {
  min-width: 180px;
}

.social-column .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--red), var(--orange));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.social-icon i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon:hover i {
  transform: scale(1.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Partners Badge Styles */
.partners-column,
.hours-column {
  min-width: 180px;
}

.partners-badge {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.partner-logo i {
  font-size: 1.2rem;
  color: var(--orange);
}

/* Hours Widget Styles */
.hours-widget {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.day {
  font-weight: 500;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 20px;
  width: fit-content;
  font-size: 0.9rem;
}

.status-badge i {
  color: #27ae60;
  font-size: 0.7rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-logo-column {
    min-width: 100%;
    text-align: center;
  }

  .footer-links {
    justify-content: space-between;
    margin-top: 1rem;
  }

  .footer-column {
    min-width: 45%;
    margin-bottom: 1rem;
  }

  .social-column,
  .partners-column,
  .hours-column {
    min-width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .social-column .footer-social {
    justify-content: center;
  }

  .social-column h3::after,
  .partners-column h3::after,
  .hours-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .partners-badge {
    align-items: center;
  }

  .partner-logo {
    width: 80%;
    justify-content: center;
  }

  .hours-widget {
    align-items: center;
  }

  .hours-row {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    min-width: 100%;
  }



  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
