.site-footer {
  background: linear-gradient(135deg, #2c85df, #0d398a);
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  padding: 60px 20px 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 30px;
}

/* شعار المدرسة */
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f9d342;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.footer-logo h3, .footer-logo p {
  color: #ffffff;
}
.footer-logo h3 { font-size: 1.5rem; font-weight: 600; margin: 5px 0; }
.footer-logo p { font-size: 1rem; font-weight: 700; }

/* روابط سريعة */
.footer-links, .footer-contact {
  flex: 1;
  min-width: 220px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: #f9d342; }

/* تواصل معنا */
.footer-contact p { margin: 5px 0; font-size: 1rem; }

/* أيقونات التواصل الاجتماعي */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: #f9d342;
  color: #1305d4;
  transform: translateY(-3px);
}

/* الاشتراك بالبريد الإلكتروني */
.footer-newsletter { margin-top: 20px; }
.footer-newsletter p { margin-bottom: 10px; }
.footer-newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-newsletter input[type="email"] {
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  flex: 1;
  min-width: 180px;
}
.footer-newsletter button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: #f9d342;
  color: #1305d4;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.footer-newsletter button:hover {
  background: #ffffff;
  color: #1305d4;
  transform: translateY(-2px);
}

/* حقوق النشر */
.footer-bottom {
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  margin-top: 20px;
  text-align: center;
}

/* تجاوب */
@media (max-width: 1024px) {
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-links, .footer-contact { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-newsletter form { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-logo img { width: 60px; height: 60px; }
  .footer-logo h3 { font-size: 1.2rem; }
  .footer-logo p { font-size: 0.9rem; }
  .footer-links ul li, .footer-contact p { font-size: 0.9rem; }
  .footer-newsletter input[type="email"] { min-width: 140px; }
  .footer-newsletter button { padding: 8px 15px; font-size: 0.9rem; }
}
