/* Footer Styles */

.page-footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--light-blue);
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
}

.footer-links a:focus,
.footer-links a:active {
  outline: none;
  box-shadow: none;
  color: var(--light-blue);
}

.footer-links a:hover {
  color: var(--light-blue);
  transform: translateX(5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.social-icons a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:focus,
.social-icons a:active {
  outline: none;
  box-shadow: none;
  background-color: var(--light-blue);
}

.social-icons a:hover {
  background-color: var(--light-blue);
  transform: translateY(-3px);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.payment-methods img {
  height: 30px;
  opacity: 0.9;
  transition: var(--transition);
}

.payment-methods img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-title {
    margin-top: 1.5rem;
  }
  
  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom .text-center, 
  .footer-bottom .text-md-start, 
  .footer-bottom .text-md-end {
    text-align: center !important;
  }
}
