@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Story+Script&display=swap');




.brand-footer {
  margin-top: 50px;
  background: #f1f1f1;
  padding: 50px 100px;
  font-family: Arial, sans-serif;
  color: #000000;
  direction: rtl;
  border-radius: 30px 30px 0 0;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* الكورة الأولى */

.brand-footer::before{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #3ab3a3;
  filter: blur(150px);
  opacity: 0.6;
  border-radius: 50%;
  top: -100px;
  right: -120px;
  z-index: -1;
}

/* الكورة الثانية */

.brand-footer::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #c56d24;
  filter: blur(150px);
  opacity: 0.7;
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
  z-index: -1;
}

.logo-ic-fo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo-ic-fo-ri{
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  fill: #181818;
}



.logo-ic-fo p{
  font-size: 14px;
  font-weight: bold;
  color: #424242;
  margin-bottom: 15px;
}

.logo-fo{
  display: block;
  width: 30px;
  margin-bottom: 20px;
}

.footer-note {
  font-size: 12px;
  color: #8d8d8d;
  margin-bottom: 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

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

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

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: #272727;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col .more {
  font-size: 13px;
  color: #5f5f5f;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
}

.footer-links a {
  margin-left: 15px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-list i {
  font-size: 15px;
  color: #555;
  transition: 0.3s;
}

.contact-list a:hover i {
  color: #9e9e9e;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .brand-footer{
    padding: 20px 30px;
    margin: 10px 0 0 0;
  }
}