   /****************************** footer **************************
    /************************* footer **************
/* استايل‌هاي سفارشي */
.modern-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  color: white;
  position: relative;
  padding-top: 80px;
  margin-top: 100px;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-wave path {
  fill: #f8f9fa;
}

.footer-content {
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-about {
  max-width: 300px;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 20px;
}

.footer-description {
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-seal {
  margin-top: 20px;
}

.seal-img {
  max-width: 120px;
  background: white;
  border-radius: 10px;
  padding: 8px;
  transition: transform 0.3s;
}

.seal-img:hover {
  transform: scale(1.05);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: white;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.footer-link::before {
 /* content: '•';*/
  color: #00d2ff;
  margin-left: 8px;
  font-size: 1.2rem;
}

.footer-link:hover {
  color: white;
  padding-right: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: #00d2ff;
  margin-left: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-item a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.copyright a:hover {
  color: white;
  text-decoration: underline;
}

.copyright-year {
  margin-right: 5px;
}

/* رسپانسيو */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-title::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}