
  /* Floating Action Buttons */
  .floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
  }

  .float-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }

  .float-btn svg {
    flex-shrink: 0;
  }

  .float-btn-call {
    background: linear-gradient(135deg, #FF8A50 0%, #ff6f2c 100%);
    color: white;
    animation: pulse 2s infinite;
  }

  .float-btn-call:hover {
    background: linear-gradient(135deg, #ff6f2c 0%, #ff5a1f 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4);
  }

  .float-btn-quote {
    background: linear-gradient(135deg, #0a7373 0%, #085a5a 100%);
    color: white;
  }

  .float-btn-quote:hover {
    background: linear-gradient(135deg, #085a5a 0%, #064545 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4);
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    }
    50% {
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 138, 80, 0.2);
    }
  }

  @media (max-width: 768px) {
    .floating-buttons {
      bottom: 1.5rem;
      right: 1.5rem;
    }

    .float-btn {
      padding: 0.875rem 1.25rem;
      font-size: 0.875rem;
    }

    .float-btn-text {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .floating-buttons {
      bottom: 1rem;
      right: 1rem;
    }

    .float-btn {
      padding: 0.75rem;
    }
  }

  @media print {
    .floating-buttons {
      display: none;
    }
  }
