/* ======================
   FOOTER GLOBAL
====================== */

.site-footer{
  background: #0d3b66;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer a{
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.site-footer a:hover{
  opacity: .88;
}

/* ======================
   CTA
====================== */

.footer-cta{
  background: #184a79;
  padding: 42px 20px;
}

.footer-cta-inner{
  max-width: 1220px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
}

.cta-box{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-box span{
  display: block;
  font-size: 16px;
  opacity: .82;
  margin-bottom: 10px;
}

.cta-box a{
  display: inline-block;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.12;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.cta-box a:hover{
  transform: translateY(-1px);
}

.cta-divider{
  width: 1px;
  min-height: 72px;
  background: rgba(255,255,255,.28);
  flex: 0 0 1px;
}

/* ======================
   SKYLINE
====================== */

.footer-skyline{
  height: 76px;
  background: #1d4f80;
  background-image: url("/assets/images/skyline-serris.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 76px;
  border-top: 6px solid rgba(255,255,255,0.06);
}

/* ======================
   MAIN FOOTER
====================== */

.footer-main{
  padding: 36px 20px 32px;
  background: #245888;
}

.footer-container{
  max-width: 1220px;
  margin: auto;
  display: flex;
  gap: 42px;
  align-items: flex-start;
}

/* ======================
   LOGO
====================== */

.footer-left{
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-left a{
  display: inline-block;
}

.footer-logo{
  width: 230px;
  max-width: 100%;
  display: block;
}

/* ======================
   RIGHT CONTENT
====================== */

.footer-right{
  flex: 1 1 auto;
  min-width: 0;
}

/* ======================
   SOCIAL + LINKS
====================== */

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-social{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social a{
  color: white;
  font-size: 21px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a{
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: .96;
}

/* ======================
   TEXT
====================== */

.footer-text{
  opacity: .96;
  line-height: 1.55;
  margin: 0 0 34px;
  font-size: 15px;
  max-width: 900px;
}

/* ======================
   PARTNERS
====================== */

.footer-partners{
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.footer-partners img{
  height: 38px;
  max-width: 100%;
  opacity: .94;
  object-fit: contain;
}

/* Si ce sont du texte ou liens à la place d’images */
.footer-partners a,
.footer-partners span{
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  opacity: .95;
}

/* ======================
   COPYRIGHT
====================== */

.footer-bottom{
  background: #072d50;
  text-align: center;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.5;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1100px){

  .footer-container{
    flex-direction: column;
    gap: 34px;
  }

  .footer-left{
    flex: 0 0 auto;
  }

  .footer-logo{
    width: 240px;
  }

  .footer-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links{
    justify-content: flex-start;
  }
}

@media (max-width: 700px){

  .footer-cta{
    padding: 40px 20px;
  }

  .footer-cta-inner{
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    gap: 20px;
  }

  .cta-box{
    width: 100%;
  }

  .cta-divider{
    display: none;
  }

  .cta-box a{
    font-size: 24px;
  }

  .footer-skyline{
    height: 76px;
    background-size: auto 76px;
  }

  .footer-main{
    padding: 38px 20px 34px;
  }

  .footer-logo{
    width: 190px;
  }

  .footer-social{
    gap: 16px;
  }

  .footer-social a{
    font-size: 20px;
  }

  .footer-text{
    font-size: 15px;
    margin-bottom: 24px;
  }

  .footer-partners img{
    height: 32px;
  }
}

@media (max-width: 480px){

  .footer-cta{
    padding: 32px 16px;
  }

  .footer-main{
    padding: 32px 16px;
  }

  .footer-bottom{
    padding: 16px;
    font-size: 13px;
  }

  .cta-box a{
    font-size: 21px;
  }

  .footer-links{
    gap: 10px 14px;
  }

  .footer-links a{
    font-size: 14px;
  }

  .footer-partners{
    gap: 14px 18px;
  }
}