

/* ===== Footer Style ===== */
.site-footer {
  background: #001e4d;
  color: #A8E6CF;
  padding: 60px 20px;
  direction: rtl; /* للغة العربية */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  line-height: 2;
}

.footer-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-sub {
  color: #A8E6CF;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.footer-links li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
}

.contact-list i,
.footer-links i {
  color: #fff;
  font-size: 1.1rem;
}

.footer-links a {
  color: #A8E6CF;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* العلامة التجارية */
.brand-name {
  font-family: "Segoe Script", cursive;
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.brand-text {
  color: #A8E6CF;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
}
/* استجابة */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-list li, .footer-links li {
    justify-content: center;
  }
  .social {
    justify-content: center;
  }
}
.footer-divider {
  border: none;
  height: 1px;
  background: #A8E6CF;
  margin: 30px 0 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A8E6CF;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #A8E6CF;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom .dot {
  color: #A8E6CF;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  position: relative;
  padding-inline-start: 1.2rem; /* مسافة لظهور السهم */
  margin-bottom: .5rem;
}

.footer-links li::before {
  content: "›";                 /* السهم */
  position: absolute;
  inset-inline-start: 0;        /* بداية السطر (يدعم RTL و LTR) */
  color: #fff;               /* لون السهم */
  font-weight: bold;
}

