.elementor-3740 .elementor-element.elementor-element-5b49a37{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */.footer {
  background: #D2E5F7;
  padding: 50px 0 0 0;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  width: 100%;
  margin: 0;
}

.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* logo più vicino al menù */
  align-items: start;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box;
}

/* Titoli */
.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #003366;
  font-weight: 600;
  text-transform: uppercase;
}

/* Liste */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}
.footer ul li a:hover {
  color: #0073e6;
  font-weight: 600;
}

/* Logo */
.footer-logo img {
  max-width: 380px;
  transition: transform 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.05);
}

/* Social */
.footer .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.footer .social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}
.footer .social-icons a:hover {
  transform: scale(1.15);
  background: #0073e6;
}
.footer .social-icons img {
  width: 22px;
  height: 22px;
}

/* Copyright */
.footer-bottom {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  margin-top: 30px;
  font-size: 14px;
  width: 100%;
  font-weight: 400;
}
.footer-bottom strong {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap:
/* 🔹 Effetto ombra morbida sul footer */
.footer {
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

/* 🔹 Titoli con linea animata sotto */
.footer h4 {
  position: relative;
  display: inline-block;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0073e6;
  transition: width 0.4s ease;
}
.footer h4:hover::after {
  width: 100%;
}

/* 🔹 Link con effetto underline "slide in" */
.footer ul li a {
  position: relative;
}
.footer ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: #0073e6;
  transition: width 0.3s ease;
}
.footer ul li a:hover::after {
  width: 100%;
}

/* 🔹 Social icone rotonde con effetto hover brillante */
.footer .social-icons a {
  background: #fff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.footer .social-icons a:hover {
  background: #0073e6;
  border-color: #005bb5;
  transform: translateY(-3px) scale(1.1);
}
.footer .social-icons a:hover img {
  filter: brightness(0) invert(1); /* icona diventa bianca */
}

/* 🔹 Logo con animazione al passaggio */
.footer-logo img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.footer-logo img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* 🔹 Copyright con effetto gradiente animato */
.footer-bottom {
  background: linear-gradient(90deg, #003366, #0055aa, #003366);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}/* End custom CSS */