/* ===== FOOTER.CSS — site footer + newsletter footer + whatsapp float button ===== */

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.75); padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-col h3{ color:var(--white); font-size:16px; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a:hover{ color:var(--red); }
.footer-brand p{ font-size:13.5px; line-height:1.8; margin:18px 0 22px; max-width:340px; }
.footer-brand .brand-logo{ background:var(--white); }
.footer-social{ display:flex; gap:16px; flex-wrap:wrap; }
.footer-social a{ font-size:12.5px; border:1px solid rgba(255,255,255,.2); padding:6px 12px; border-radius:20px; }
.footer-social a:hover{ background:var(--red); border-color:var(--red); color:var(--white); }
address{ font-style:normal; font-size:13.5px; line-height:1.9; }
address p{ margin-bottom:8px; }
address a:hover{ color:var(--red); }

.footer-bottom-inner{ display:flex; justify-content:space-between; gap:24px; padding:24px 0; font-size:12.5px; flex-wrap:wrap; }
.disclaimer{ max-width:640px; opacity:.6; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; width:56px; height:56px; background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 25px rgba(0,0,0,.25); z-index:50; color:var(--white);
}
.whatsapp-float svg{ width:28px; height:28px; }
.whatsapp-float:hover{ transform:scale(1.06); }



/*=========================
    MAIN FOOTER
=========================*/
.main-footer{
    
    background-image:
        linear-gradient(180deg, rgba(10,22,40,.94) 0%, rgba(18,45,78,.90) 55%, rgba(9,20,36,.96) 100%),
        url('footer-bg.jpg');
    background-color: #122d4e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* parallax feel on desktop; auto-disabled on mobile below */
    color:#d9e4f3;
    padding:80px 0 0;
    position:relative;
    overflow:hidden;
}


@media (max-width:991px){
  .main-footer{ background-attachment: scroll; }
}

/* Background Pattern */
.main-footer::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    left:-180px;
    bottom:-180px;
    background:
    repeating-linear-gradient(45deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 2px,
    transparent 2px,
    transparent 35px);
    transform:rotate(45deg);
    opacity:.4;
    z-index:0;
    pointer-events:none;
}

/* Make sure all real footer content paints above the pattern + bg image */
.main-footer > .container{
    position:relative;
    z-index:1;
}

/*---------------- Header ----------------*/

.footer-header{
    padding-bottom:45px;
    margin-bottom:60px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.about-footer{
    display:flex;
    align-items:center;
}

.footer-logo{
    width:170px;
    padding-right:40px;
    margin-right:40px;
    border-right:1px solid rgba(255,255,255,.12);
}

.footer-logo img{
    width:120px;
    height:auto;
}

.about-footer-content{
    max-width:650px;
}

.about-footer-content p{
    color:#fff;
    line-height:1.9;
}

/*---------------- Social ----------------*/

.footer-social-links{
    display:flex;
    justify-content:flex-end;
}

.footer-social-links ul{
    display:flex;
    gap:15px;
}

.footer-social-links li a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
}

.footer-social-links li a:hover{
    background:#c53629;
    border-color:#c53629;
}

/*---------------- Newsletter ----------------*/

.footer-newsletter-box h3{
    font-size: 26px;
    line-height: 1.5;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.footer-newsletter-box p{
    margin-bottom:35px;
    line-height:1.8;
}

.footer-newsletter-form .form-group{
    position:relative;
}

.footer-newsletter-form input{
    width:100%;
    height:60px;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,.18);
    color:#fff;
    padding-right:70px;
    font-size:18px;
}

.footer-newsletter-form input::placeholder{
    color:#b7c7de;
}

.footer-newsletter-form input:focus{
    outline:none;
}

.newsletter-btn{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#3d629d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.newsletter-btn::before{
    content:"\F138";
    font-family:"bootstrap-icons";
    font-size:22px;
}

/*---------------- Links ----------------*/

.footer-links-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-links h3{
    color:#fff;
    margin-bottom:28px;
    font-family:'Playfair Display', serif;
    font-size: 21px !important;
    font-weight: 700;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#fff;
    display:flex;
    align-items:center;
    transition:.3s;
}

.footer-links ul li a::before{
    /* content:"?"; */
    color:#cda34b;
    margin-right:12px;
}

.footer-links ul li a:hover{
    padding-left: 2px;
    color: #e61e24;
}

/*---------------- Contact ----------------*/

.footer-contact-item{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.footer-contact-item .icon-box{
    width:56px;
    height:56px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#fff;
}

.footer-contact-content h3{
    color:#fff;
    margin-bottom:5px;
}

.footer-contact-content p{
    margin:0;
}

.footer-contact-item:first-child .icon-box::before{
    content:"\F32F";
    font-family:"bootstrap-icons";
}

.footer-contact-item:last-child .icon-box::before{
    content:"\F5C1";
    font-family:"bootstrap-icons";
}

/*---------------- Copyright ----------------*/

.footer-copyright{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.12);
    padding:30px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-copyright-text p{
    margin:0;
    color:#fff;
}

.footer-privacy-policy ul{
    display:flex;
    gap:30px;
}

.footer-privacy-policy a{
    color:#fff;
}

/*=====================
Responsive
======================*/

@media(max-width:991px){

.about-footer{
flex-direction:column;
align-items:flex-start;
}

.footer-logo{
margin:0 0 30px;
padding:0;
border:none;
}

.footer-social-links{
justify-content:flex-start;
margin-top:30px;
}

.footer-links-box{
grid-template-columns:1fr;
gap:40px;
margin-top:50px;
}

.footer-newsletter-box{
margin-bottom:50px;
}

.footer-newsletter-box h3{
font-size:36px;
}

.footer-copyright{
flex-direction:column;
text-align:center;
gap:15px;
}

.footer-privacy-policy ul{
justify-content:center;
}

}


.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  z-index:9999;
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float i{
  font-size:28px;
  color:#fff;
}

.whatsapp-float:hover{
  transform:scale(1.08);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}

@media (max-width:480px){
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .whatsapp-float i{ font-size:24px; }
}
.footer-links i {
    margin-right: 11px;
}