
/*----------------------------------------------------------------------------------------------------------------
Footer Styling
------------------------------------*/


.footer {
  color: #ffffff;
  /*padding: 50px 0;*/
}

.footer-email {
  text-decoration: none !important;
  color: #ffffff;
}

.footer-phone {
  text-decoration: none !important;
  color: #ffffff;
}

.footer-address {
  text-decoration: none !important;
  color: #ffffff;
}

.custom-list-group-item {
  background-color: #000000 !important; /* Custom background color */
  color: white !important; /* Custom text color */
}

.list-group h4 {
  font-family: "Roboto", sans-serif !important;
}

.list-group a:hover {
  color: #787878 !important;

}

.light-border-top {
  border-top: 1px solid #ffffff; /* Custom border color */
}

.light-border-bottom {
  border-bottom: 1px solid #ffffff; /* Custom border color */
}

.site-footer {
  background:#fff;
  color: #fff;
  padding: 25px 0;
}

.footer-top {
  display:flex; 
  flex-wrap:wrap;
   align-items:center; 
   justify-content:space-between; 
   border-bottom:1px solid var(--line); 
   padding-bottom:12px; 
   margin-bottom:12px
}

.footer-logo img {
  max-width: 130px;
  height: auto;
}

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

.footer-nav a {
  font-weight: 500;
  color: #000000;
  font-weight:800;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #FC7B30;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #333333;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.8rem;
}

.footer-social .social-icon:hover {
  background: #FC7B30;
  color: #fff;
}

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

.footer-contact ul li{
  line-height: 1.5;
  font-size: 0.9rem;
  color: #000000;
  list-style-type: none;
} 

.footer-contact  p {
    padding-block: 1em;
    color: #000000;
    font-size: 16px;
    margin-block: 20px;
}
.footer-contact .infoContact{
  display: flex;
  flex-direction: column;
  color: #000000;
}
.infoContact a {
    text-decoration: none;
    color: #000000;
}
.footer-links .infolinks{
  display: flex;
  flex-direction: column;
  color: #000000;
}
 .footer-links p {
    padding-block: 1em;
    color: #000000;
    font-size: 16px;
    margin-block: 20px;
} 
.footer-newsletter p{
    padding-block: 1em;
    color: #000000;
    font-size: 16px;
    margin-block: 20px;
}

.btn:hover{
    transform: translateY(-1px);
}
.btn.accent{
  background: var(--linear-gradient-style-Wayo); 
  color:#fff; 
  box-shadow:0 14px 28px rgba(244,122,31,.22);
  font-weight: 700;
}



.footer-contact a:hover {
  color: #FC7B30;
  transition: background 0.2s ease, color 0.2s ease;
}



.footer-links ul li::marker {
    color: #ff6600;
}
.site-footer[dir="rtl"] {
  direction: rtl;
}

.site-footer[dir="rtl"] .footer-top {
  justify-content: space-between;
}

.site-footer[dir="rtl"] .footer-nav ul {
  text-align: right;
}

.site-footer[dir="rtl"] .footer-bottom {
  justify-content: space-between;
}

.site-footer[dir="rtl"] .footer-contact p {
  text-align: right;
}

.site-footer[dir="rtl"] .footer-links p {
  text-align: right;
}

.site-footer[dir="rtl"] .footer-newsletter strong {
  text-align: right;
}

.footer-links a {
  color: #000000;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #FC7B30;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border: 1px solid #afafaf;
  border-radius: 14px;
}

.newsletter-form button.btn-subscribe{
  padding: 0.6rem 1.2rem;
  background: #FC7B30;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease;
  font-size: 0.9rem;
}

.newsletter-form button.btn-subscribe:hover {
  filter: brightness(0.9);
}

.footer-credits {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.footer-credits p {
  margin: 0.3rem 0;
  color:var(--muted);
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 124, 31, 0.9), rgba(251, 176, 64, 0.9));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: linear-gradient(135deg, rgba(245, 124, 31, 1), rgba(251, 176, 64, 1));
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px){
  .footer-top{
        flex-direction: column;
  }
  .footer-social {
    padding-bottom: 30px;
  }
}

@media (max-width: 1180px) and (min-width: 480px) {
    .footer-contact {
    width: 27%;
    }
    .footer-links{
    width: 27%;
    }
    .footer-newsletter {
    width: 27%;
    }
    .newsletter-form {
    flex-direction: column;
      }
}
@media (max-width: 480px) {
      nav.footer-nav ul {
        padding-left: 0;
    }
      .newsletter-form {
        flex-direction: row;
    }
    .footer-contact {
    width: 100%;
    }
    .footer-contact p{
      padding-block: 0;
      margin-block: 0;
    }
    .footer-links{
    width: 100%;
    }
    .footer-links p{
      padding-block: 0;
      margin-block: 0;
    }
    .footer-newsletter {
    width: 100%;
    }
    .footer-newsletter p{
      padding-block: 0;
      margin-block: 0;
    }

}
/* Social Buttons Styles */
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  color: white !important;
}

