/* ================================================
   floating-btns.css — Mobile floating buttons
   Source: elementor-overrides.css lines 1742-1857
   ================================================ */

/* Mobile floating contact buttons (reference: daheloan) */
.mobile-floating-buttons {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-floating-buttons {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    background: transparent;
  }

  .mobile-floating-buttons .floating-btn {
    display: flex;
    flex: 1 1 50%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 10px;
    text-decoration: none;
    font-size: 16.9px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-floating-buttons .floating-btn-icon,
  .mobile-floating-buttons .floating-btn-icon-img {
    display: inline-block;
    width: 21px;
    height: 21px;
    object-fit: contain;
    border-radius: 50%;
    flex: 0 0 21px;
  }

  .mobile-floating-buttons .floating-btn-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-floating-buttons .floating-btn-text {
    font-size: 16.9px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-floating-buttons .line-btn .floating-btn-text {
    color: #ffffff !important;
  }

  .mobile-floating-buttons .phone-btn .floating-btn-text {
    color: #ffffff !important;
  }

  .mobile-floating-buttons .line-btn {
    background: #3f8643 !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-floating-buttons .line-btn:hover {
    background: #37763b !important;
  }

  .mobile-floating-buttons .phone-btn {
    background: #325899 !important;
  }

  .mobile-floating-buttons .phone-btn:hover {
    background: #2b4d86 !important;
  }

  /* Keep content/footer above fixed mobile buttons */
  .elementor-location-footer {
    margin-bottom: 0 !important;
    padding-bottom: 42px !important;
    background: #3f4257 !important;
  }
}

@media (max-width: 430px) {
  .mobile-floating-buttons .floating-btn {
    height: 39px;
    padding: 0 8px;
    gap: 6px;
    font-size: 13.5px;
  }

  .mobile-floating-buttons .floating-btn-text {
    font-size: 13.5px;
  }

  .mobile-floating-buttons .floating-btn-icon,
  .mobile-floating-buttons .floating-btn-icon-img {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .elementor-location-footer {
    margin-bottom: 0 !important;
    padding-bottom: 39px !important;
    background: #3f4257 !important;
  }
}



