.footer{
  background-color: var(--helperColor);
  color: var(--white);
  text-align: center;
}
.footer-row{
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  gap: 20px;
 
}
.footer-col1{
  width: 30%;
}
.footer-col2, .footer-col3, .footer-col4{
  width: 20%;
}
.footer-col h3{
  margin-bottom: 20px;
  color: var(--primaryColor) ;
}
.footer-col ul li{
  margin-bottom: 10px;
}
.footer-col4 ul li{
  display: flex;
  align-items: center;
  gap: 10px;  
}
.social-icons{
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-bottom{
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.footer-bottom-container{
  border-top: 0.2px solid var(--white);
  
}
@media (max-width: 768px) {
  .footer{
    margin-bottom: 0px;
  }
  .footer-row{
    flex-direction: column;
    align-items: start;
    text-align: start;
      margin-bottom: 0px;
  }
  .footer-col1, .footer-col2, .footer-col3, .footer-col4{
    width: 100%;
  }
  
}

.floating-icons {
  position: fixed;
  bottom: 22px; 
  left: 20px; 
  display: flex;
  flex-direction: column;
  gap: 10px; 
  z-index: 1000; 
}

.floating-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primaryColor); 
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  overflow: hidden;
  /* border: 3px solid var(--white); */

}

.floating-icons .fa-whatsapp{
 font-size: 35px;
}
.floating-icons .phone-icon {
 font-size: 25px;
}
.floating-icons .phone-icon {
  background-color: var(--primaryColor); 
  color: var(--white);
  /* border: 3px solid var(--white); */
}

.floating-icons a:hover {
  transform: scale(1.1);
}
/* موبايل */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .upper-footer-container {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .footer-logo img {
        margin:auto ;
    }

    .logo-and-intro {
        display: flex;
        flex-direction: column;
    }

    .footer-none {
        display: none;
    }
}

.footer-right {
  display: flex;
  margin-block: 40px;
  justify-content: start;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  margin-left: 10px;
  color: var(--lightHelper);
  background-color: var(--white);
  padding: 3px 10px;
  border-radius: 50%;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--white);
  background-color: var(--lightHelper);
}