/* ===========================
   NAVBAR
=========================== */
.site-header {
  background: #fff !important;
  border-bottom: 3px solid #1DADA0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.site-header .navbar {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Logo: proporzionale, mai stirato */
.navbar-logo {
  height: 52px !important;
  width: auto !important;       /* mantiene proporzioni originali */
  display: block !important;
}

.site-header .nav-link {
  color: #0d2c3e !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.2s !important;
  
}

.site-header .nav-link:hover {
  color: #1DADA0 !important;
}

/* Voce attiva: sottolineatura arancione come nello screenshot */
.site-header .nav-link.active {
  color: #0d2c3e !important;
  font-weight: 700 !important;
  border-bottom: 2.5px solid #F5A623 !important;
  padding-bottom: 0.4rem !important;
}

/* Toggler mobile */
.site-header .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}






/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0D2C3E;
  padding: 48px 40px 24px;
}

/* Wrapper interno */
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Brand */
.footer__brand {
  flex: 1;
  min-width: 220px;
}

.footer__logo {
  height: 52px;
  width: auto;      /* proporzionale */
  margin-bottom: 16px;
  display: block;
}

.footer__description {
  color: #B2E8E2;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Colonne link */
.footer__col {
  min-width: 140px;
}

.footer__col-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  color: #B2E8E2;
  font-size: 14px;
}

.footer__links a {
  color: #B2E8E2;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

/* CTA buttons nel footer */
.footer__cta {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.footer__btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.footer__btn:hover {
  opacity: 0.85;
}

.footer__btn--primary {
  background: #1DADA0;
  color: #fff;
}

.footer__btn--green {
  background: #4CAF50;
  color: #fff;
}

.footer__btn--secondary {
  background: #F5A623;
  color: #fff;
}

/* Bottom bar */
.footer__bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  color: #4A5568;
  font-size: 13px;
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: #4A5568;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: #B2E8E2;
}