/* FOOTER STYLES */
.site-footer {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #0d47a1 100%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6D00 0%, #FFAB40 100%);
}

.footer-top {
  padding-bottom: 40px;
  position: relative;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo img {
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-title {
  color: #FFAB40;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #FF6D00;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-menu li:hover {
  padding-left: 5px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: #FFAB40;
}

.footer-menu li a i {
  margin-right: 8px;
  color: #FF6D00;
  font-size: 12px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-info li i {
  color: #FF6D00;
  margin-right: 12px;
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-info li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-info li a:hover {
  color: #FFAB40;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background: #FF6D00;
  transform: translateY(-3px);
}

.back-to-top {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 99;
}

#scroll-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #FF6D00;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 20px;
  
}

#scroll-top:hover {
  background: #FFAB40;
  transform: translateY(-5px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-right: 15px;
  margin-bottom: 0;
}

.payment-icons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons li img {
  height: 24px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payment-icons li:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.copyright {
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.copyright p {
  margin-bottom: 5px;
}

.copyright a {
  color: #FFAB40;
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: #FF6D00;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 991px) {
  .footer-widget {
      margin-bottom: 40px;
  }
  
  .copyright {
      text-align: left;
      margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-top {
      padding-bottom: 20px;
  }
  
  .footer-title {
      margin-bottom: 20px;
  }
  
  .back-to-top {
      right: 15px;
      top: -20px;
  }
  
  #scroll-top {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
}