.logo-wrapper .logo-img {
    width: 80px;
}
.nav-scroll .logo-wrapper .logo-img {
    width: 80px;
}
.footer .top .item .logo {
    width: 80px;
}
.section-title {
    font-family: "Gilda Display", serif;
    font-size: 25px;
    line-height: 35px;
}
.section-padding {
    padding: 40px 0;
}
.button-3 {
    display: inline-block;
    height: auto;
    padding: 3px 25px;
    border: 1px solid #01590c;
    border-radius: 5px;
    background-color: #01590c;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.text-justify{
    text-align: justify;
}
.footer .top {
    padding: 40px 0 20px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .bottom {
    position: relative;
    display: block;
    padding: 5px 0;
}
.ft_menu, .ft_contact{
    padding: 0px;
}
.ft_menu li{
    margin: 6px 0;
    list-style: none;
}
.ft_contact li {
    margin: 6px 0;
    list-style: none;
    display: flex;
}

.ft_contact li.address::before {
    content: "📍 ";
    margin-right: 6px;
}
.ft_contact li.phone::before {
    content: "📞 ";
    margin-right: 6px;
}
.ft_contact li.email::before {
    content: "✉️ ";
    margin-right: 6px;
}
.ft_contact i {
    margin-right: 13px; 
    margin-top: 8px;
}
.mt--240 {
    margin-top: -130px !important;
}
@media screen and (max-width: 991px) {
    .nav-scroll .logo-wrapper .logo-img {
        width: 50px;
    }
    .nav-scroll .logo-wrapper {
        padding: 5px 15px;
    }
    .nav-scroll {
        background: #fff;
        height: 60px;
    }
    .navbar {
        height: 60px;
    }
    .logo-wrapper .logo-img {
        width: 50px;
    }
    .logo-wrapper {
        padding: 5px 15px;
    }
}
/* wrapper */
.float-wrap {
  position: fixed;
  right: 18px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* button base */
.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}

.float-wrap a:hover {
    display: flex;
    color: #fff;
}
/* WhatsApp */
.float-wa {
  background: #25D366;
}
.float-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.6);
  animation: pulse 1.8s infinite ease-in-out;
  z-index: -1;
}

/* Call */
.float-call {
  background: #0ea5e9;
}
.float-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(14,165,233,.6);
  animation: bounce 1.8s infinite ease-in-out;
  z-index: -1;
}

/* animations */
@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}

/* responsive */
@media(max-width:600px){
  .float-btn{ width:50px; height:50px; font-size:22px; }
}
