/* ===== Milano Future Footer (Dark + Glass + Responsive) ===== */
:root{
  --fx-ink:#0b1220;
  --fx-card: rgba(255,255,255,.06);
  --fx-line: rgba(255,255,255,.12);
  --fx-muted: rgba(255,255,255,.72);
  --fx-muted2: rgba(255,255,255,.55);
  --fx-primary:#0ea5e9;
  --fx-primary2:#22c55e;
}

.fx-footer{
  position: relative;
  margin-top: 32px;
  color: #fff;
  background:
    radial-gradient(1100px 520px at 15% 10%, rgba(14,165,233,.20), transparent 60%),
    radial-gradient(1000px 520px at 85% 30%, rgba(34,197,94,.14), transparent 55%),
    linear-gradient(135deg, #0b1220, #0b2a52);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}

.fx-footer-top{
  padding: 44px 0 26px;
}

.fx-footer-card{
  background: var(--fx-card);
  border: 1px solid var(--fx-line);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 54px rgba(0,0,0,.25);
  height: 100%;
}

.fx-footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.fx-footer-brand img{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.25));
}
.fx-footer-brand-name{
  font-weight: 950;
  letter-spacing: .3px;
  font-size: 1.05rem;
}
.fx-footer-brand-tag{
  color: var(--fx-muted2);
  font-weight: 700;
  font-size: .95rem;
  margin-top: 2px;
}

.fx-footer-title{
  font-weight: 950;
  letter-spacing: .2px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.fx-footer-desc{
  color: var(--fx-muted);
  font-weight: 650;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 12px;
}

.fx-footer-link{
  display:block;
  text-decoration:none;
  color: var(--fx-muted);
  font-weight: 750;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.fx-footer-link:hover{
  color: #fff;
  border-color: rgba(14,165,233,.28);
  background: rgba(14,165,233,.10);
}

.fx-footer-contacts{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.fx-footer-contact{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  text-decoration:none;
  color: rgba(255,255,255,.80);
  font-weight: 800;
}
.fx-footer-contact i{ opacity: .95; }

.fx-socials{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.fx-social{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.fx-social:hover{
  background: rgba(14,165,233,.14);
  border-color: rgba(14,165,233,.22);
}
.fx-social i{ font-size: 1.2rem; }

.fx-social-whatsapp:hover{
  background: rgba(34,197,94,.16);
  border-color: rgba(34,197,94,.26);
}

.fx-footer-cta{
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.fx-footer-cta-text{
  color: rgba(255,255,255,.78);
  font-weight: 750;
  margin-bottom: 10px;
}
.fx-footer-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 950;
  color: #06101f;
  background: linear-gradient(135deg, var(--fx-primary), var(--fx-primary2));
  border: 0;
}

.fx-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.fx-footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.fx-footer-bottom-links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fx-footer-bottom-links a{
  text-decoration:none;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.fx-footer-bottom-links a:hover{
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.fx-footer-copy{
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

/* RTL */
[dir="rtl"] .fx-footer-desc,
[dir="rtl"] .fx-footer-link,
[dir="rtl"] .fx-footer-contact,
[dir="rtl"] .fx-footer-bottom-links a{
  text-align: right;
}

/* Responsive */
@media (max-width: 576px){
  .fx-footer-top{ padding: 32px 0 18px; }
  .fx-footer-card{ border-radius: 18px; }
  .fx-footer-bottom-inner{ padding: 12px 0; }
}