/* ============================== FOOTER STYLING ============================== */
.footer-widgets-wrapper {
  padding-block: 96px 32px;
  background-color: var(--blue);
}
.footer-inner-col{
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.footer-col-1 .menu-item{
  color: var(--white) !important;
}
.footer-col-1 .widgettitle{
  color: var(--white);
  margin-bottom: 24px;
  font-size: var(--font-22px);
  line-height: var(--line-height-22px);
  font-weight: var(--font-weight-22px);
}
.footer-col-1 .title-footer{
  margin-bottom: 24px;
}
.footer-col-1 nav ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-1 nav ul li{
  margin: 0;
}
.footer-col-1 nav ul li a{
  color: var(--white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
  transition: all 0.3s ease;
}
.footer-col-1 hr{
  border-top: 1px;
  margin-block: 10px;
}
.footer-col-1 .wp-block-column:first-child,
.footer-col-1 .wp-block-column:nth-child(2){
  max-width: 230px;
}
.footer-col-1 .wp-block-column:last-child{
  max-width: 338px;
}
.footer-col-1 .wp-block-columns{
  justify-content: space-between;
}
.footer-col-1 p{
  margin: 0px;
}
.footer-col-1 h4{
  margin: 0px;
}

.footer-col-1 nav ul li a:hover{
  color: var(--hover-grey);
}
.num-footer a{
  color: var(--white);
}
.num-footer a:hover{
  color: var(--hover-grey);
}
.footer-col-2 .wp-block-group{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright{
  background-color: var(--blue);
  padding-block: 24px;
  border: 1px solid #FFFFFF33;
}
.copyright p{
  text-align: center;
}
.copyright .footer-col-3{
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
  margin: 0 auto;
}
.num a{
  transition: all 0.3s ease;
}
.num a:hover{
  color: var(--hover-grey);
}
.footer-before{
  padding-block: var(--container-padding-block);
  padding-inline: var(--container-padding);
}
/* ==================== FOOTER RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .footer-col-2 .wp-block-group{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 880px){
  .footer-widgets-wrapper{
    padding-block: 50px 20px;
  }
  .footer-col-2 figure{
    text-align: center;
  }
  .footer-col-2 img{
    max-width: 75%;
  }
}
@media (max-width: 620px) {
  .footer-col-1 .wp-block-columns{
    flex-direction: column;
    gap: 30px;
  }
  .footer-col-1 .wp-block-column{
    max-width: 100% !important;
  }
  .footer-col-1 nav ul{
    align-items: center;
  }
  .footer-col-1 .widgettitle,
  .footer-col-1 p,
  .footer-col-1 figure,
  .footer-col-1 .num-footer,
  .footer-col-1 h4{
    text-align: center;
  }
  .footer-col-2 .wp-block-group{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}




/* FLOATING CONTACT BUTTON */
.floating-contact-button-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.floating-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 20px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus {
  box-shadow: 0 22px 45px rgba(11, 31, 59, 0.25);
  transform: scale(1.02);
  color: var(--white);
}

@media (max-width: 780px) {
  .floating-contact-button-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact-button {
    min-width: 140px;
    padding: 14px 18px;
    font-size: 15px;
  }
}