/* ✅ نیا فوٹر بیس اسٹائل */
.footer {
  background: #064420;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  border-top: 6px solid rgb(133, 133, 133);
}

.footer-container {
  display: grid;
  gap: 10px;
  text-align: center;

  /* ✅ Default چھوٹی سکرین (Mobile) */
  grid-template-columns: 1fr;
}

/* ✅ فوٹر باکس */
.footer-box {
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-box ul {
  list-style-type: none;
  /* ✅ bullets ختم */
  padding: 0;
  /* ✅ extra space ختم */
  margin: 0;
  /* ✅ extra margin ختم */
}

.footer-box li {
  margin-bottom: 6px;
  /* ✅ ہر نمبر کے بیچ تھوڑا gap */
}

.footer-box:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

/* ✅ شہر کا ٹائٹل */
.footer-box h3 {
  font-family: var(--font-Bombay);
  margin: 0 0 8px 0;
  font-size: var(--font-subheading);
  color: #ffdd57;
  font-weight: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

/* ✅ فون نمبر */
.footer-box a {
  display: block;
  font-size: var(--font-normal);
  margin: 5px 0;
  color: #d5d5d5;
  text-decoration: none;
  direction: ltr;
  transition: color 0.2s ease;
}

.footer-box a:hover {
  color: #ffdd57;
}

/* ✅ سب سے نیچے چھوٹا بار */
.amtkn p {
  padding: 4px 0;
  background-color: rgb(0, 37, 14);
  margin: 0;
  text-align: center;
  font-size: var(--font-normal);
  font-family: var(--font-arabic);
  color: rgba(234, 234, 234, 0.7);
}



/* ✅ Medium screen (Tablet) */
@media (min-width: 600px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ✅ Large screen (Laptop) */
@media (min-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ✅ Extra Large screen (Desktop / Wide) */
@media (min-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(8, 1fr);
    /* پورے 8 ڈبے ایک لائن میں */
  }
}