/* Footer Cities Columns Spacing Fix */
/* Ensures proper spacing between city columns to prevent overflow */

footer .f-items .row {
  margin-left: -15px;
  margin-right: -15px;
}

footer .f-items .item {
  padding-left: 20px;
  padding-right: 20px;
}

/* Ensure city links don't overflow */
footer .f-item.link ul li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}

/* Extra spacing for longer city names */
@media (min-width: 992px) {
  footer .f-items .col-lg-2 {
    padding-right: 25px;
  }

  footer .f-items .col-lg-3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Tablet - full width columns with breathing room */
@media (max-width: 991px) and (min-width: 768px) {
  footer .f-items .item {
    margin-bottom: 30px;
  }
}

/* Mobile - remove gaps between city columns */
@media (max-width: 767px) {
  footer .f-items .item {
    margin-bottom: 0;
  }
}
