@charset "utf-8";
/* Footer generale */
.page-footer {
  background-color: #0D1B2A; /* blu scuro istituzionale */
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-footer p,
.page-footer a {
  color: #e0e0e0;
  margin-bottom: 0.3rem;
}

.page-footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-footer a:hover {
  color: #0D6EFD;
}

/* Divider */
.page-footer hr {
  border-color: rgba(255,255,255,0.15);
  margin: 1rem 0;
}

/* Pulsantini quota */
.page-footer .btn-quote {
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
  min-width: 120px;
  margin: 2px auto;
}

/* Linee verticali tra colonne */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;  /* forza tutto in alto */
  text-align: center;
}

.footer-columns .footer-col {
  flex: 1 1 25%;            /* 4 colonne uguali */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* contenuto sempre dall’alto */
  align-items: center;         /* centrato orizzontalmente */
  border-right: 1px solid rgba(255,255,255,0.15);
  padding: 0 15px;
  min-height: 100%;
}

.footer-columns .footer-col:last-child {
  border-right: none;
}

/* Social */
.page-footer .fa-brands {
  font-size: 1.2rem;
  margin: 0 6px;
  transition: transform 0.2s ease, color 0.3s ease;
}
.page-footer .fa-brands:hover {
  color: #0D6EFD;
  transform: scale(1.15);
}

.footer-columns {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important; /* sempre in alto */
}

.footer-columns .footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;     /* centrato orizzontalmente */
  justify-content: flex-start !important; /* contenuto dall’alto */
  height: 100% !important;
}


/* Mobile: colonne in verticale, senza linee */
@media (max-width: 767.98px) {
  .footer-columns {
    flex-direction: column;
  }
  .footer-columns .footer-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .footer-columns .footer-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

