/* ========================================== */
/* Footer */
/* ========================================== */
* {
  font-family: "Amazon Ember", Arial, sans-serif;

}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================== */
/* Footer Columns */
/* ========================================== */

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-barcode {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
}

.footer-barcode img {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.footer-barcode p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ========================================== */
/* Footer Titles */
/* ========================================== */

.footer-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 50px;
  height: 3px;
  background: #b42f4c;
  border-radius: 2px;
}

/* ========================================== */
/* Footer Links */
/* ========================================== */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-inline-start: 18px;
}

.footer-links a::before {
  content: "◀";
  position: absolute;
  inset-inline-start: 0;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 10px;
}

[dir="ltr"] .footer-links a::before {
  content: "▶";
}

.footer-links a:hover {
  color: #b42f4c;
  padding-inline-start: 22px;
}

.footer-links a:hover::before {
  opacity: 1;
  inset-inline-start: 0;
}

/* ========================================== */
/* App Download */
/* ========================================== */

.app-download {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.app-store-badge {
  position: relative;
  display: inline-block;
  cursor: not-allowed;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.app-store-badge:hover {
  opacity: 1;
}

.app-store-badge img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.coming-soon {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(180, 47, 76, 0.95);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================== */
/* Social Media */
/* ========================================== */

.social-media {
  margin-top: 10px;
}

.social-media h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #b42f4c;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(180, 47, 76, 0.4);
}

/* ========================================== */
/* Footer Bottom */
/* ========================================== */

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #b42f4c;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ========================================== */
/* Responsive - التابلت */
/* ========================================== */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer {
    padding: 50px 0 0;
  }
}

/* ========================================== */
/* Responsive - الموبايل */
/* ========================================== */

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-title {
    font-size: 18px;
  }

  .app-store-badge img {
    max-width: 160px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}