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

.footer-cta{
    background:#f6f7fb;
    padding:110px 0 80px;
  }
  
  .footer-cta-inner{
    width:90%;
    max-width:850px;
    margin:0 auto;
    text-align:center;
  }
  
  .footer-cta-tag{
    display:inline-block;
    color:#0f3fae;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
  }
  
  .footer-cta h2{
    color:#111827;
    font-size:clamp(2.5rem,5vw,4.6rem);
    line-height:1;
    letter-spacing:-2px;
    margin-bottom:20px;
  }
  
  .footer-cta p{
    color:#555;
    font-size:1.1rem;
    margin-bottom:34px;
  }
  
  .footer-cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
  }
  
  .btn-light,
  .btn-outline-light{
    height:58px;
    padding:0 32px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
  }
  
  .btn-light{
    background:#0f3fae;
    color:white;
  }
  
  .btn-outline-light{
    background:white;
    color:#0f3fae;
    border:2px solid #0f3fae;
  }
  
  .btn-light:hover,
  .btn-outline-light:hover{
    transform:translateY(-3px);
  }
  
  /* ===================================
     LOCATION CAROUSEL
  =================================== */
  
  .footer-locations{
    background:#f6f7fb;
    overflow:hidden;
    padding:20px 0 80px;
  }
  
  .footer-location-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:footerLocationScroll 150s linear infinite;
  }
  
  .footer-locations:hover .footer-location-track{
    animation-play-state:paused;
  }
  
  .footer-location-card{
    position:relative;
    flex:0 0 320px;
    height:210px;
    border-radius:28px;
    overflow:hidden;
    color:white;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
  }
  
  .footer-location-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s ease;
  }
  
  .footer-location-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.68));
  }
  
  .footer-location-card span{
    position:absolute;
    left:22px;
    bottom:20px;
    z-index:2;
    font-size:1.3rem;
    font-weight:900;
  }
  
  .footer-location-card:hover img{
    transform:scale(1.08);
  }
  
  @keyframes footerLocationScroll{
    from{
      transform:translateX(0);
    }
  
    to{
      transform:translateX(-50%);
    }
  }
  
  /* ===================================
     MAIN FOOTER
  =================================== */
  
  .site-footer{
    background:
      linear-gradient(
        135deg,
        #0f3fae 0%,
        #174fcf 45%,
        #0a2c78 100%
      );
    color:white;
    padding-top:90px;
    margin-top:0;
  }
  
  .site-footer .container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
  }
  
  .footer-grid{
    display:grid;
    grid-template-columns:1.45fr .9fr .9fr 1.15fr;
    gap:70px;
    align-items:start;
    padding-bottom:80px;
  }
  
  .footer-company{
    max-width:390px;
  }
  
  .footer-logo{
    width:160px;
    height:auto;
    background:white;
    padding:10px;
    border-radius:4px;
    margin-bottom:26px;
    display:block;
  }
  
  .footer-text{
    color:rgba(255,255,255,.84);
    line-height:1.8;
    font-size:1rem;
    max-width:360px;
  }
  
  .site-footer h4{
    color:white;
    font-size:1.15rem;
    margin-bottom:24px;
  }
  
  .footer-links,
  .footer-contact{
    list-style:none;
    margin:0;
    padding:0;
  }
  
  .footer-links li,
  .footer-contact li{
    margin-bottom:14px;
  }
  
  .footer-links a,
  .footer-contact a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    font-size:1rem;
    transition:.25s ease;
  }
  
  .footer-links a:hover,
  .footer-contact a:hover{
    color:white;
    padding-left:4px;
  }
  
  .footer-contact li{
    color:rgba(255,255,255,.82);
    line-height:1.7;
  }
  
  /* SOCIAL */
  
  .footer-social{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:28px;
    max-width:260px;
  }
  
  .footer-social a{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    padding:11px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    color:white;
    text-decoration:none;
    font-size:.92rem;
    font-weight:800;
    transition:.3s ease;
  }
  
  .footer-social a:hover{
    background:white;
    color:#0f3fae;
    transform:translateX(4px);
  }
  
  /* BOTTOM */
  
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.16);
  }
  
  .footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:28px 0;
  }
  
  .footer-bottom p{
    color:rgba(255,255,255,.72);
    margin:0;
    font-size:.95rem;
  }
  
  .footer-legal{
    display:flex;
    gap:26px;
    flex-wrap:wrap;
  }
  
  .footer-legal a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
    font-size:.95rem;
    transition:.25s ease;
  }
  
  .footer-legal a:hover{
    color:white;
  }
  
  /* ===================================
     RESPONSIVE
  =================================== */
  
  @media(max-width:1050px){
    .footer-grid{
      grid-template-columns:1fr 1fr;
      gap:55px;
    }
  }
  
  @media(max-width:700px){
    .footer-cta{
      padding:85px 0 65px;
    }
  
    .footer-cta-buttons{
      flex-direction:column;
    }
  
    .btn-light,
    .btn-outline-light{
      width:100%;
    }
  
    .footer-location-card{
      flex-basis:240px;
      height:155px;
    }
  
    .site-footer{
      padding-top:70px;
    }
  
    .footer-grid{
      grid-template-columns:1fr;
      gap:42px;
      padding-bottom:60px;
    }
  
    .footer-bottom-inner{
      flex-direction:column;
      text-align:center;
    }
  
    .footer-legal{
      justify-content:center;
    }
  }