/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   GREY FOOTER — MKTECHSUPPORT STYLE
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

.users-footer {
  background: #2f2f2f;
  color: #f3f6fa;
  padding: 3rem 1.5rem 1.5rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  width: 100%;
  position: relative;
  backdrop-filter: saturate(180%) blur(8px);
}

/* ===== FOOTER CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* ===== SECTION TITLES ===== */
.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  border-bottom: 2px solid #2196f3;
  display: inline-block;
  padding-bottom: 4px;
}

/* ===== LINKS ===== */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 0.6rem;
}
.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: #2196f3;
  outline: none;
}

/* ===== SOCIAL MEDIA LINKS ===== */
.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d4d8df;
  text-decoration: none;
  background: #3a3a3a;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-icon:hover,
.social-icon:focus {
  background: #2196f3;
  color: #fff;
  transform: scale(1.03);
}

/* ===== MAP AREA ===== */
.map-wrapper {
  grid-column: span 2;
}
.repair-map h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}
.repair-map {
  background: #3a3a3a;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #555;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-bottom a {
  color: #2196f3;
  text-decoration: none;
}
.footer-bottom a:hover,
.footer-bottom a:focus {
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .map-wrapper {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-media-links {
    align-items: center;
  }
  .repair-map {
    margin-top: 1rem;
  }
}
