/* =============================================================
   Footer, CTA Closer, Social row
   ============================================================= */

/* ---------- CTA finale ---------- */
.cta-closer {
  position: relative;
  background-image: linear-gradient(135deg, rgba(0,0,0,.88), rgba(0,115,119,.85)), url("../img/hero/hero.jpg");
  background-size: cover; background-position: center;
  color: #fff; text-align: center; padding: 120px 0;
}
.cta-closer .eyebrow { color: #fff; opacity: 0.8; }
.cta-closer h2 { color: #fff; margin-bottom: 24px; font-size: clamp(1.375rem, 3vw, 2.25rem); letter-spacing: 1px; }
.cta-closer p { font-size: 1.0625rem; max-width: 720px; margin: 0 auto 40px; color: rgba(255,255,255,.95); }
.cta-closer .hero-ctas { justify-content: center; }
.cta-closer .btn-primary { background: #fff; color: var(--color-primary-dark); }
.cta-closer .btn-primary:hover { background: var(--color-black); color: #fff; }

/* ---------- Footer ---------- */
footer {
  background: var(--color-black); color: rgba(255,255,255,.85);
  padding: 64px 0 0; font-size: 0.875rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  color: #fff; font-family: var(--font-family); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; font-weight: 800;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-col a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-brand-link { display: inline-block; margin-bottom: 16px; }
.footer-brand-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-col .footer-lang-select {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color .15s ease;
}
.footer-col .footer-lang-select:hover,
.footer-col .footer-lang-select:focus {
  border-color: rgba(255,255,255,.8);
  outline: none;
}
.footer-col .footer-lang-select option { background: #1a1a1a; color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0;
  background: rgba(255,255,255,.03); font-size: 0.75rem; text-align: center;
  color: rgba(255,255,255,.65);
}
.footer-legal a { color: rgba(255,255,255,.75); margin: 0 8px; }

/* ---------- Social row ---------- */
.social-row {
  display: flex; gap: 14px; margin-top: 16px;
}
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; transition: background .2s ease, color .2s ease;
}
.social-row a:hover { background: var(--color-primary); color: #fff; }
.social-row i { font-size: 0.9375rem; }
