/* ===== Footer Style ===== */
.site-footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 40px 20px 10px;
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.footer-col h3 {
  font-size: 18px;
  color: #f5c542;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.footer-links, .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .contact-list li {
  margin-bottom: 8px;
}

.footer-links a, .contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover, .contact-list a:hover {
  color: #f5c542;
}

.social-icons {
  display: flex;
  gap: 12px;
  font-size: 22px;
}

.social-icons a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f5c542;
}

/* ===== الجزء السفلي ===== */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #333;
}

/* ===== زر واتساب عائم ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ===== استجابة ===== */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
    gap: 20px;
  }
}
