.site-footer {
     background-color: #333;
     padding: 40px 20px;
     color: white;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}

.footer-col {
  flex: 1 1 220px; /* تنظیم عرض ستون‌ها */
  margin: 10px;
}

.contact-col { order: 1; } /* سمت راست */
.links-col   { order: 2; }
.services-col{ order: 3; }
.social-col  { order: 4; } /* سمت چپ */

.footer-col h3 {
  margin-bottom: 15px;
  color: #9e9e9e;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
 color: #fffcfc;
 text-decoration: none;
 transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ebb360;
}

.footer-col p {
  margin: 8px 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
    width: 100%;
    padding: 18px 26px;
    background: #333;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Shabnam", Tahoma, sans-serif;
    font-size: 14px;
    color: #fffafa;
}

/* راست */
.footer-right {
    flex: 1;
    text-align: right;
}

/* وسط (آیکون‌ها) */
.footer-center {
    
    text-align: center;
}

.footer-center .social {
    margin: 0 10px;
    color: #ffffff;                          /* رنگ اصلی سایت */
    font-size: 20px;
    transition: .2s ease;
}

.footer-center .social:hover {
    color: #ebb360;
}

/* چپ (لینک‌ها) */
.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left a {
    margin-left: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: .2s ease;
}

.footer-left a:hover {
    color: #ebb360;
}
.footer-right .powered {
    margin-right: 10px;
    font-size: 13px;
    color: #ffffff;
}

.tripsky-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.tripsky-link:hover {
    color: #5d2d71;
}
/* حالت موبایل */
@media (max-width: 700px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-right,
    .footer-center,
    .footer-left {
        text-align: center;
    }

    .footer-left a {
        margin: 0 8px;
    }
}


/* ریسپانسیو */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
  }
  .footer-col {
    flex: 1 1 45%;
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}